:root {
  --primary: #0077cc;
  --secondary: #032b22;
  --light: #f2f2f2;
  --dark: #333;
  --bg: #f9f9f9;
  --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  --transition: 0.3s ease;
  /* Fixed reservation box width – three times the typical button */
  --res-box-width: 300px;
}
/* Reset and base styles */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }


/* RESET / BASIC STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
}




/* NAVBAR CONTAINER */
header {
position: fixed;
top: 0;
width: 100%;
z-index: 999;
}





#navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Align content to the right */
  background: rgba(3, 43, 34, 0.4); /* Dark green w/ transparency */
  padding: 1rem 2rem;
}

/* Burger Menu Icon - Always Visible on Mobile */
.burger {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #0f3f3c;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Navigation Links - Hidden by Default on Mobile */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none; 
  color: #f2f2f2;               
  font-size: 18px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: #0f3f3c;
}

/* LANGUAGE DROPDOWN */
.language-dropdown {
  position: relative;
}

.language-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: rgba(15, 63, 60, 0.9);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  border-radius: 4px;
  min-width: 120px;
  z-index: 999;
}

.language-dropdown.open .language-menu {
  display: block;
}

.language-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #f2f2f2;
  text-transform: uppercase;
}

.language-menu li a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #0f3f3c;
}

/* SMALLER, READABLE RESERVE BUTTON */
.btn-reserve-nav {
  background: #0f3f3c;       
  color: #f2f2f2;            
  padding: 0.5rem 1rem;      
  font-size: 0.85rem;        
  border-radius: 4px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.3s, transform 0.3s;
}

.btn-reserve-nav:hover {
  background: #f2f2f2;
  color: #032b22;            
}

/* RESPONSIVE CHANGES */
@media (max-width: 1024px) {
  .burger {
    display: block;
  }
  
  #navbar {
    justify-content: flex-start;
    /* When not in the burger menu, hide or make fully transparent */
    background: transparent; /* Remove semi-transparency */
    padding: 0; /* Remove padding */
    height: 0; /* Collapse height */
    overflow: hidden; /* Hide any content that might overflow */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed; 
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0; 
    background: rgba(3, 43, 34, 0.2); 
    width: 100vw; 
    height: 100vh; 
    padding: 1rem;
    z-index: 1000;
    box-shadow: none;
    backdrop-filter: blur(10px);
    overflow-y: auto;
    align-items: center; 
    justify-content: center; 
  }

  /* Open Menu */
  .nav-links.open {
    display: flex;
  }

  /* Menu Items */
  .nav-links li {
    margin: 0.3rem 0;
    width: 100%; 
    text-align: center; 
  }

  .nav-links a {
    display: block;
    padding: 0.6rem 0;
    background: none;
    color: #fff;
    font-size: 1.2rem;
    text-transform: uppercase;
    border-radius: 0;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: #17ccc3;
  }

  /* Reserve Now Button in mobile view */
  .nav-links .btn-reserve-nav {
    background: rgba(15, 63, 60, 0.8);
    color: #f2f2f2;
    padding: 0.6rem 1.2rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    border-radius: 4px;
    margin-top: 0.5rem;
  }

  .nav-links .btn-reserve-nav:hover {
    background: #f2f2f2;
    color: #032b22;
  }

  /* Language Menu Customization for Mobile */
  .language-dropdown {
    order: -1; 
  }

  .language-menu {
    position: static;
    display: none;
    background: rgba(15, 63, 60, 0.3);
    padding: 0.5rem 0;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }

  .language-dropdown.open .language-menu {
    display: block;
  }

  .language-menu li {
    margin: 0.3rem 0;
  }

  .language-menu li a {
    padding: 0.5rem 1rem;
    color: #f2f2f2;
    text-transform: uppercase;
    display: inline-block;
    width: auto;
  }

  .language-menu li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #032b22;
  }
}






/* Common Container Style (used by other sections as well) */
.containerr {
  max-width: 1200px;
  margin: 4rem auto 1rem auto; /* 5rem top margin, auto sides, 1rem bottom */
  padding: 0 20px;
}

/* Hero Info Section */
#hero-info {
  padding: 2rem 0; /* Adjust as needed */
  text-align: left;
}

/* (Keep your existing hero-info styles inside the container) */
#hero-info h2 {
  font-family: 'Arial', sans-serif;
  font-size: 2.5rem;
  color: #032b22;
  margin: 0 0 0.5rem 0;
  font-weight: bold;
}

.divider {
  width: 100px;
  height: 3px;
  background-color: #032b22;
  margin-bottom: 1rem;
}

.location {
  font-size: 1rem;
  color: #032b22;
}

.location i {
  margin-right: 5px;
  color: #0077cc;
  vertical-align: middle;
}

.location a {
  color: #0077cc;
  text-decoration: none;
}

.location a:hover {
  text-decoration: underline;
}

/* Media query for mobile devices */
@media (max-width: 767px) {
  .containerr {
    margin-top: 2rem; /* Reduced top margin for mobile */
  }
}



























/* ===== CUSTOM GALLERY SECTION ===== */
#custom-gallery-section {
  max-width: 1200px; /* Limits the gallery width */
  margin: 0 auto;
  padding: 0 20px 2rem;
}

.custom-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Default to two columns for mobile */
  gap: 10px; /* Gap between images */
}

.custom-gallery-grid a {
  display: block;
  width: 100%; /* Full width within grid cell */
  padding-bottom: 100%; /* Creates a square aspect ratio */
  position: relative; /* Positioning for the image inside */
  overflow: hidden; /* Ensures images stay within their container */
}

.custom-gallery-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the container while maintaining aspect */
  border-radius: 15px; /* Rounded corners */
  box-shadow: none; /* No shadow */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.custom-gallery-img:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

/* For desktop, adjust to 4 columns in two rows */
@media (min-width: 1024px) { /* Assuming 1024px as the breakpoint for desktop */
  .custom-gallery-grid {
    grid-template-columns: repeat(4, 1fr); /* Four columns for desktop */
    grid-template-rows: repeat(2, 1fr); /* Two rows */
  }
}

/* Ensure two columns on very small screens */
@media (max-width: 400px) {
  .custom-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}









/* Container for the Property Highlights Section */
#property-highlights {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
}

/* --------------------------------------------------
   Details Grid (for Capacity, Size, Attractions)
-------------------------------------------------- */
.details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

/* Each detail card styled with 1px gray line, rounded box, and centered content */
.details-grid .detail-card {
  flex: 1 1 calc(33.333% - 20px);
  display: flex;
  align-items: center;
  justify-content: center; /* centers content horizontally */
  padding: 15px;
  border: 1px solid #ccc;  /* 1px gray border */
  border-radius: 8px;
  min-width: 250px;
  background: #fff;
}

/* --------------------------------------------------
   Amenities Grid (each amenity gets its own card)
-------------------------------------------------- */
.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.amenities-grid .detail-card {
  flex: 1 1 calc(25% - 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  min-width: 200px;
  background: #fff;
}

/* --------------------------------------------------
   Common Detail Card Styles
-------------------------------------------------- */
.detail-card i {
  font-size: 24px;
  color: #0077cc;
  margin-right: 10px;
}

.detail-info {
  text-align: center; /* center text inside the box */
}

.detail-info h4 {
  font-size: 16px;
  margin: 0;
  font-weight: bold;
  color: #333;
}

.detail-info p {
  font-size: 14px;
  margin: 2px 0 0;
  color: #666;
}

/* --------------------------------------------------
   Property Description (below the grids)
-------------------------------------------------- */
.property-description {
  max-width: 1200px;
  margin: 2rem auto;  /* Center the container horizontally */
  text-align: left; /* Center the text */
  font-size: 18px;    /* Increase font size */
  line-height: 1.6;
  color: #333;
  padding: 0 20px;    /* Optional: add side padding for smaller screens */
}


/* --------------------------------------------------
   Responsive Adjustments
-------------------------------------------------- */
@media (max-width: 768px) {
  .details-grid .detail-card,
  .amenities-grid .detail-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .details-grid .detail-card,
  .amenities-grid .detail-card {
    flex: 1 1 100%;
  }
}





/* ===== STUDIO FEATURES SECTION ===== */
#studio-features {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 20px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-card {
  flex: 1 1 calc(20% - 10px); /* 5 items per row on larger screens */
  border: 1px solid #ccc;     /* 1px gray border */
  border-radius: 8px;         /* rounded corners */
  padding: 10px;
  text-align: center;         /* centers the content */
  background: #fff;
  font-size: 14px;
  color: #333;
}

/* Icon styling */
.feature-card i {
  margin-right: 5px;
  font-size: 16px;
  color: #0077cc;
  vertical-align: middle;
}
.feature-card span {
  vertical-align: middle;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .feature-card {
    flex: 1 1 calc(25% - 10px); /* 4 items per row */
  }
}

@media (max-width: 768px) {
  .feature-card {
    flex: 1 1 calc(33.333% - 10px); /* 3 items per row */
  }
}

@media (max-width: 480px) {
  .feature-card {
    flex: 1 1 calc(50% - 10px); /* 2 items per row */
  }
}








/* ===== VILLA PENAVA GALLERY SECTION ===== */
#villa-gallery-section {
  width: 100%;
  padding: 2rem 2rem;
  background-color: #fff;
  color: #032b22;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

#villa-gallery-section .container {
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.gallery-layout {
  display: flex;
  justify-content: center; /* Center the children horizontally */
  align-items: center; /* Center the children vertically */
  max-width: 700px; /* Adjust this to ensure layout fits within the container */
  width: 100%; /* Make sure it takes full width of its parent */
  margin: 0 auto; /* Center the .gallery-layout within .container */
}

.gallery-text {
  width: 30%; /* Adjust as needed */
  text-align: left;
  margin-right: 2rem; /* Space between text and galleries */
  /* Center .gallery-text within .gallery-layout */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; /* Center text within .gallery-text */
}

.gallery-images {
  width: 65%; /* Adjust as needed */
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  flex-direction: column;
  gap: 2rem; /* Space between the two galleries */
}

.gallery-title {
  font-family: 'MontserratMedium', sans-serif;
  font-size: 36px;
  color: #032b22;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  margin: 0 0 0.5rem 0;
}

.gallery-divider {
  width: 100px;
  height: 3px;
  background-color: #032b22;
  margin-bottom: 1rem;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.gallery-description {
  font-family: 'MontserratMedium', sans-serif;
  font-size: 18px;
  color: #032b22;
  line-height: 1.6;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  margin-bottom: 2rem;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

/* Gallery Item */
.gallery-item {
  width: 220px; /* Reverted to original width */
  height: 150px; /* Reverted to original height */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

/* Overlay Text */
.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  padding: 5px 0;
  font-size: 14px;
  font-family: 'MontserratMedium', sans-serif;
  z-index: 3;
}

/* Gallery Icon (Optional) */
.gallery-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  background: url('img/offer/gallery-icon.png') no-repeat;
  background-size: contain;
  z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gallery-layout {
    flex-direction: column;
  }
  .gallery-text {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .gallery-images {
    width: 100%;
  }
}














/* Price Section */
#price {
  max-width: 1200px;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin: 0 auto 2rem auto; /* Center horizontally */
  text-align: center; /* Center text inside */
}
#price h2 { font-size: 2rem; margin-bottom: 1rem; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.price-table th, .price-table td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: center;
  font-size: 1rem;
}
.price-table th { background: #f4f4f4; }
.price-table tr:hover { background: #f1f1f1; }
.btn-reserve {
  display: inline-block;
  margin-top: 2rem;
  background: var(--primary);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
}
.btn-reserve:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}


















.section-header {
  text-align: left; /* Aligns all content to the left */
  margin-bottom: 2rem;
}

.section-header h2 {
  font-family: 'Arial', sans-serif;
  font-size: 2.5rem;
  color: #032b22;
  margin: 0 0 0.5rem 0; /* Space below the title */
  font-weight: bold;
}

.section-header .divider {
  width: 100px;             /* Divider width */
  height: 3px;              /* Divider thickness */
  background-color: #032b22;/* Divider color */
  margin: 0;                /* No centering, remains left aligned */
}











/* Similar Apartments Section Container */
#similar-apartments {
  padding: 4rem 2rem;
  background: #f8f8f8;
  text-align: center;
}

/* Grid Layout: Two Cards Per Row */
.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styling */
.accommodation-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accommodation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Slideshow Container & Image Adjustments */
.slideshow-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* Maintains a 16:9 ratio */
  overflow: hidden;
}

.slideshow-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the container */
  display: block;
}

.slideshow-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow-image.active {
  opacity: 1;
}

/* Card Content */
.accommodation-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.5rem;
  color: #0f3f3c;
  font-family: 'MontserratMedium', sans-serif;
}

.accommodation-card h4 {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #555;
  font-family: 'MontserratMedium', sans-serif;
}

.accommodation-card p {
  margin: 0.5rem 0 1rem;
  font-size: 1rem;
  color: #555;
  font-family: 'MontserratMedium', sans-serif;
}

/* Room Info (Icons & Details) */
.room-info {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}

/* Button Styling */
.btn-book {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin-bottom: 1rem;
  background: #0f3f3c;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
  font-family: 'MontserratBold', sans-serif;
}

.btn-book:hover {
  background: #032b22;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .accommodation-grid {
    grid-template-columns: 1fr;
  }
  .slideshow-container {
    aspect-ratio: 16 / 9;
  }
}





















/* ===== ABOUT SECTION ===== */
#about {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 20px;
  text-align: left;
}

#about .section-title {
  font-family: 'Arial', sans-serif;
  font-size: 2.5rem;       /* Title size */
  color: #032b22;         /* Dark title color */
  margin-bottom: 1rem;     /* Space below the title */
  font-weight: bold;
}

#about .divider-linee {
  width: 100px;           /* Width of the divider */
  height: 3px;            /* Thickness of the divider */
  background-color: #032b22; /* Divider color matching the title */
  margin: 0 0 2rem 0;      /* Space below the divider */
}

#about p {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;        /* Body text size */
  line-height: 1.6;       /* Improves readability */
  color: #333;            /* Text color */
  margin-bottom: 2rem;    /* Optional: adds space after the paragraph */
}












/* ===== AMENITIES SECTION ===== */
#amenities {
  background-color: #fff;           /* White background */
  padding: 4rem 2rem;               /* Reduced horizontal padding for a 1200px layout */
  text-align: left;
}

#amenities .container {
  max-width: 1200px;                /* Constrain the container to 1200px */
  margin: 0 auto;                   /* Center the container */
}

/* Section Title */
.section-title {
  font-family: 'Arial', sans-serif;
  font-size: 2.5rem;                /* Increased font size */
  color: #032b22;                 /* Dark title color */
  margin-bottom: 1rem;              /* Space before divider */
  font-weight: bold;
}

/* Divider */
.divider-linee {
  width: 100px;                   /* Wider divider */
  height: 3px;                    /* Thicker line */
  background-color: #032b22;      /* Matching the title color */
  margin: 0 0 2rem 0;
}

/* Grid layout for amenities items */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Exactly 3 items per row */
  gap: 2rem;
}

/* Individual service item styling */
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;                    /* Spacing between icon and text */
  padding: 1rem;                  /* Padding inside each item */
  border-radius: 8px;             /* Rounded corners */
  background-color: rgba(3, 43, 34, 0.05);  /* Very light background */
  transition: background-color 0.3s ease;  /* Hover transition */
}

.service-item:hover {
  background-color: rgba(3, 43, 34, 0.1);   /* Darker on hover */
}

/* Icon styling */
.icon {
  width: 60px;                    /* Larger icons */
  height: 60px;
  flex-shrink: 0;
  filter: invert(25%) sepia(96%) saturate(6498%) hue-rotate(357deg) brightness(90%) contrast(110%);
}

/* Amenity text styling */
.amenity-text h3 {
  font-size: 1.5rem;              /* Larger heading text */
  color: #032b22;                 /* Same color as title */
  margin-bottom: 0.5rem;
}

.amenity-text p {
  font-size: 1rem;                /* Readable text size */
  color: #666;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row on medium screens */
  }
}

@media (max-width: 768px) {
  #amenities {
    padding: 2rem 1rem;           /* Reduce padding for mobile devices */
  }

  .section-title {
    font-size: 2rem;
  }

  .divider-linee {
    width: 80px;
    height: 2px;
  }

  .service-grid {
    grid-template-columns: 1fr;  /* Single column on small screens */
  }

  .service-item {
    padding: 0.5rem;
    gap: 1rem;
  }

  .icon {
    width: 40px;
    height: 40px;
  }

  .amenity-text h3 {
    font-size: 1.2rem;
  }

  .amenity-text p {
    font-size: 0.9rem;
  }
}








/* FAQ Section */
#faq {
  max-width: 1200px;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  margin: 0 auto 2rem auto; /* Center horizontally */
}
#faq h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: left;
  color: var(--secondary);
}
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-item:hover { background: #f9f9f9; }
.faq-question {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 0.5rem;
  font-size: 1rem;
}
.faq-item.active .faq-answer { max-height: 200px; }














/* Fixed Reservation Box on the right */
#reservation-box {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: var(--res-box-width);
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  text-align: center;
  z-index: 1500;
}
#reservation-box .btn-reserve {
  margin: 0;
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  main { margin-right: 0; }
  #reservation-box { display: none; }
}

@media (max-width: 1200px) {
  #reservation-box {
    display: none;
  }
}
















  

/* Footer Section */
#footer {
  background: #032b22; /* Dark green background */
  color: #fff; /* White text color */
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  padding: 2rem 0;
}

.footer-container {
  display: flex;
  justify-content: space-between; /* Spread items across the footer */
  align-items: flex-start;
  max-width: 1400px; /* Increased container width for more spacing */
  margin: 0 auto;
  padding: 2rem 1rem;
  position: relative; /* Needed for absolute positioning of ::after */
}

.footer-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem; /* Match the padding-left */
  right: 1rem; /* Match the padding-right */
  height: 2px; /* Match the border thickness */
  background: #f2f2f2; /* Match the border color */
}

.footer-logo {
  flex: 1;
  text-align: left; /* Align logo to the left */
}

.penava-logo {
  width: 400px; /* Increased logo size */
  height: auto;
}

.footer-center {
  flex: 1;
  text-align: center; /* Center align the content */
}

.footer-right {
  flex: 1;
  text-align: center; /* Align to the right */
}

.footer-center p,
.footer-right p {
  margin: 0.5rem 0; /* Space between lines */
  font-size: 25px; /* Larger font size */
}

.footer-center strong,
.footer-right strong {
  font-family: 'MontserratBold', sans-serif;
  font-size: 25px; /* Larger header font size */
  white-space: nowrap; /* Prevent text wrapping */
}

.footer-center p {
  display: flex;
  align-items: center;
  justify-content: center; /* or left, if you want left alignment */
}

.whatsapp-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  width: 30px;
  height: 30px;
}
.spacer {
  margin: 1rem 0; /* Space between 'OIB: //' and next text */
}

.spacer-small {
  margin: 1rem 0; /* Increased spacing for Office Hours */
}

.footer-bottom {
  font-size: 14px;
  margin-top: 1rem;
}

.footer-bottom p {
  margin: 0.5rem 0;
}

.footer-bottom p:last-child {
  font-style: italic; /* Italicize the "Powered by" text */
}

/* Footer Links */
.footer-link {
  color: #f2f2f2; /* Accent color for links */
  text-decoration: none; /* Remove underline */
  font-weight: bold; /* Make the links stand out */
}

.footer-link:hover {
  text-decoration: underline; /* Add underline on hover */
}

/* Mobile adjustments */
@media (max-width: 1024px) {
  #footer {
    padding: 1rem 0; /* Reduce padding for smaller screens */
  }

  .footer-container {
    flex-direction: column; /* Stack items vertically on mobile */
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem;
    gap: 1rem; /* Reduce gap between sections */
  }

  .footer-container::after {
    content: "";
    position: absolute;
    bottom: 1rem;
    left: 1rem; /* Match the padding-left */
    right: 1rem; /* Match the padding-right */
    height: 1px; /* Match the border thickness */
    background: #f2f2f2; /* Match the border color */
  }

  .footer-logo {
    width: 100%; /* Full width for the logo */
    text-align: center; /* Center align the logo */
    margin-bottom: 1rem; /* Add space below logo */
  }

  .penava-logo {
    width: 80%; /* Responsive width */
    max-width: 400px; /* Maximum width */
    height: auto;
  }

  .footer-center,
  .footer-right {
    width: 100%; /* Full width for better reading on mobile */
    text-align: center;
  }

  .footer-center p,
  .footer-right p {
    margin: 0.5rem 0;
    font-size: 18px; /* Smaller font size for mobile */
  }

  .footer-center strong,
  .footer-right strong {
    font-size: 22px; /* Adjust header font size for mobile */
    white-space: normal; /* Allow text wrapping */
  }

  .whatsapp-icon {
    width: 20px; /* Smaller icon for mobile */
    height: 20px;
    vertical-align: middle;
    margin-right: 0.3rem;
  }

  .spacer,
  .spacer-small {
    margin: 0.5rem 0; /* Reduce spacing for mobile */
  }

  .footer-bottom {
    font-size: 12px; /* Smaller text for mobile */
    margin-top: 0.5rem;
  }

  .footer-bottom p {
    margin: 0.3rem 0;
  }
}