/* RESET / BASIC STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  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: #fff;
  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;
  }
}











/*  Section */
#hero {
  width: 100%;
  height: 100vh;
  background: url('https://cdn.villapenava.com/img/home_bg-min.png') no-repeat left center/cover;
  display: flex;
  align-items: flex-start; 
  justify-content: center;
  padding-top: 9rem; 
  text-align: center;
  color: #f2f2f2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.hero-logo {
  width: 500px;
}

.btn-reserve {
  background: #f2f2f2;
  color: #0f3f3c;
  padding: 1.3rem 5rem 1rem 5rem;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-family: 'MontserratBold', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.3em;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  animation: vibrate 7s infinite; /* Vibrate every 7 seconds */
}

.btn-reserve:hover {
  background: #0f3f3c;
  color: #f2f2f2;
}


/* Define the vibrate animation for every 7 seconds */
@keyframes vibrate {
  0%, 100% { transform: translateX(0); }
  5%, 15% { transform: translateX(-5px); }
  10%, 20% { transform: translateX(5px); }
}

/* Mobile adjustments */
@media (max-width: 1024px) {
  #hero {
    height: auto; 
    min-height: 100vh; 
    padding-top: 6rem; 
    padding-bottom: 4rem; 
    background-position: left center;
    background-size: cover;
  }

  .hero-content {
    justify-content: center; 
    height: 100%; 
    max-width: 90%; 
    margin: 0 auto; 
  }

  #hero .hero-content .hero-logo {
    width: 100%; 
    max-width: 400px; 
    height: auto; 
  }

  /* Adapt button for mobile, no text wrap, invert colors */
  .btn-reserve {
    padding: 1.3rem 2rem; 
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    white-space: nowrap; 
    width: auto; 
    max-width: 350px; 
    background: #0f3f3c; /* Invert background */
    color: #f2f2f2; /* Invert text color */
    animation: vibrate 7s infinite; /* Keep the vibration effect on mobile */
  }

  /* Override hover effect for touch devices */
  .btn-reserve:hover {
    animation: shake 0.5s; /* Add shake animation on hover */
    background: #0f3f3c; /* A different color for interaction on mobile */
    color: #f2f2f2;
  }
}






  
@font-face {
  font-family: 'MontserratMedium';
  src: url('./fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MontserratBold';
  src: url('./fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


/* Intro Section */
#intro {
  width: 100%;
  min-height: 100vh; /* Ensure full viewport height on smaller screens */
  display: flex;
  align-items: center;          
  justify-content: space-between; 
  background: #032b22;
  padding: 0 10rem;              
}

.intro-image img {
  width: 700px; 
  height: auto; 
  object-fit: cover; 
  margin-left: 3rem; 
}

.intro-content {
  display: flex;
  flex-direction: column;       
  align-items: center;          
  text-align: center;           
  padding: 2rem;
  gap: 2.5rem;                  
  margin-right: 3rem;           
}

.intro-content h2 {
  font-family: 'MontserratMedium', sans-serif;
  color: #17ccc3;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* For better readability */
  font-size: 46.3px;
  line-height: 1.1;             
  width: 637px;                 
  margin: 0;                    
}

.intro-content p {
  font-family: 'MontserratMedium', sans-serif;
  color: #f2f2f2;
  font-size: 20.9px;
  line-height: 1.4;
  width: 637px;                 
  margin: 0;                    
}

.btn-offer {
  background: #f2f2f2;
  color: #0f3f3c;
  padding: 1.3rem 5rem 1rem 5rem; 
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-family: 'MontserratBold', sans-serif;
  display: inline-flex;
  align-items: center;          
  justify-content: center;      
  letter-spacing: 0.3em;        
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-top: 2rem;             
}

.btn-offer:hover {
  background: #f2f2f2;          
  color: #0f3f3c;               
  transform: scale(1.05);       
}

/* Adjustments for smaller screens like small laptops */
@media (max-width: 1280px) {
  #intro {
    padding: 0 5rem; /* Reduce horizontal padding */
  }

  .intro-image img {
    width: 600px; /* Reduce image width */
  }

  .intro-content h2 {
    font-size: 40px; /* Reduce heading size */
    width: 100%; /* Allow full width */
    max-width: 500px; /* But cap it at a reasonable width */
  }

  .intro-content p {
    font-size: 18px; /* Reduce paragraph size */
    width: 100%; /* Allow full width */
    max-width: 500px; /* But cap it at a reasonable width */
  }

  .btn-offer {
    padding: 1rem 4rem 0.8rem 4rem; /* Slightly adjust button size */
  }
}

/* Mobile adjustments */
@media (max-width: 1024px) {
  #intro {
      flex-direction: column-reverse; /* Image first, then content */
      height: auto;           
      padding: 2rem 1rem;     
      justify-content: center; 
      align-items: center;    /* Center everything horizontally */
  }

  .intro-image img {
      width: 100%;            
      max-width: 400px;       
      margin: 0 auto 2rem;    
      height: auto;
  }

  .intro-content {
      width: 100%;            
      margin: 0;              
      padding: 0;             
  }

  .intro-content h2, 
  .intro-content p {
      width: 100%;            
      max-width: 600px;       
      margin: 0 auto;         
  }

  .intro-content h2 {
      font-size: 35px;        
  }

  .intro-content p {
      font-size: 18px;        
  }

  .btn-offer {
      margin-top: 1rem; 
      margin-bottom: 2rem; 
      padding: 1rem 3rem 0.8rem 3rem; 
      font-size: 1rem;
      letter-spacing: 0.1em;  
      width: auto;            
      max-width: 300px;       
  }
}










/* ATTRACTIONS SECTION */
#attractions {
  width: 100%;
  margin: 2rem 0;
  text-align: center;
}

/* Hero Image with Title */
.attractions-hero {
  position: relative;
  width: 100%;
  height: 60vh; /* Adjust based on your design */
  background: url('img/Attraction.png') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

#attractions-title {
  font-family: 'MontserratBold', sans-serif;
  font-size: 5.5rem; /* Responsive size */
  color: #f2f2f2;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* For better readability */
  padding: 0 1rem; /* Prevent text from touching screen edges */
}

/* Content Area for Icons */
.attractions-content {
  padding: 1rem 0;
}

.attractions-icons {
  width: 80%; /* Responsive width */
  margin: 0 auto;
}

.attractions-icons img {
  width: 100%;
  height: auto;
}

/* Adjustments for smaller screens like small laptops */
@media (max-width: 1280px) {
  .attractions-hero {
    height: 50vh; /* Reduce height for smaller laptops */
  }

  #attractions-title {
    font-size: 3rem; /* Slightly smaller for better fit on small laptops */
  }

  .attractions-icons {
    width: 85%; /* Adjust for smaller screens */
  }
}

/* Mobile adjustments */
@media (max-width: 1024px) {
  .attractions-hero {
    height: 40vh; /* Adjust for mobile screen size */
  }

  #attractions-title {
    font-size: 2.5rem; /* Smaller for mobile */
  }

  .attractions-icons {
    width: 95%; /* Wider on mobile for better visibility */
  }

  .attractions-icons img {
    content: url('img/attractions_icons_mobile.png'); /* Use mobile-specific icon */
  }
}








/* Section Title & Divider Styles */
.section-title {
  font-family: 'Arial', sans-serif;
  font-size: 2.5rem; /* Increased font size for better visibility */
  color: #032b22; /* Darker title color */
  margin-bottom: 1rem; /* Space before divider */
  font-weight: bold;
}

.divider-linee {
  width: 100px; /* Wider divider for emphasis */
  height: 3px; /* Thicker line */
  background-color: #032b22; /* Same color as title */
  margin: 0 auto 2rem auto; /* Centered horizontally */
}

/* Accommodations Section Container */
.accommodations-container {
  padding: 4rem 2rem;
  background: #f8f8f8;
  text-align: center;
}

/* Note below the cards - Bigger font */
.accommodation-note {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #777;
}

/* 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;
  }
}













/* LOCATION SECTION */
#location {
  width: 100%;
  height: 100vh; /* Full-HD height */
  background: url('img/bg/location_bg.png') no-repeat center center/cover; /* Background image */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f2f2f2;
  padding: 2rem;
}

.location-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px; /* Increased width */
  width: 100%;
}

.location-text {
  flex: 1;
  max-width: 60%;
  margin-right: 2rem;
}

.location-text h2 {
  font-family: 'MontserratBold', sans-serif;
  font-size: 56px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* For better readability */
  margin-bottom: 1.5rem;
}

.location-text h3 {
  font-family: 'MontserratMedium', sans-serif;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Address Section */
.address {
  display: flex;
  align-items: center;
  gap: 1rem; /* Spacing between icon and text */
  margin-bottom: 1.5rem;
  font-family: 'MontserratMedium', sans-serif;
  font-size: 18px; /* Adjusted font size */
  color: #f2f2f2; /* Light text color */
}

.location-icon img {
  width: 30px; /* Size of the location icon */
  height: 30px;
}

/* Google Maps Button */
.btn-maps {
  display: inline-block;
  background: #f2f2f2;
  color: #0f3f3c;
  font-family: 'MontserratMedium', sans-serif;
  font-size: 16px;
  padding: 0.7rem 2rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.btn-maps:hover {
  background: #0f3f3c; /* Hover color */
  color: #f2f2f2; /* Change text color to the dark green */
  transform: scale(1.05); /* Slightly expand on hover */
}

/* Location Images */
.location-images {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.location-images img {
  width: 100%;
  max-width: 700px; /* Increase maximum width for the map */
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Mobile adjustments */
@media (max-width: 1024px) {
  #location {
    height: auto; /* Adjust height based on content for mobile */
    padding: 1rem; /* Less padding for smaller screens */
  }

  .location-container {
    flex-direction: column; /* Stack elements vertically on mobile */
    max-width: 100%;
  }

  .location-text {
    max-width: 100%; /* Full width */
    margin-right: 0; /* Remove right margin */
    text-align: center; /* Center text */
    margin-bottom: 1rem; /* Add space below text */
    order: 1; /* Text comes first */
  }

  .location-text h2 {
    font-size: 36px; /* Smaller title for mobile */
    margin-bottom: 1rem; /* Reduce spacing */
  }

  .location-text h3 {
    font-size: 18px; /* Smaller sub-title for mobile */
    line-height: 1.5; /* Adjust line height */
    margin-bottom: 1rem; /* Reduce spacing */
  }

  .address {
    font-size: 16px; /* Smaller text */
    justify-content: center; /* Center items */
  }

  .location-icon img {
    width: 24px; /* Smaller icon */
    height: 24px;
  }

  .btn-maps {
    font-size: 14px; /* Smaller button text */
    padding: 0.5rem 1.5rem; /* Adjust padding */
  }

  .location-images {
    width: 100%; /* Full width */
    order: 2; /* Image comes second */
  }

  .location-images img {
    max-width: 100%; /* Full width on mobile */
    margin-bottom: 1rem; /* Add space below image */
  }
}












/* PROMOS SECTION */
#promos {
  width: 100%;
  min-height: 100vh; /* Minimum height for full viewport on smaller screens */
  background: #032b22;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* For better readability */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f2f2f2; 
  padding: 4rem 2rem;
  box-sizing: border-box; /* Ensure padding doesn't affect width */
}

.promos-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%; /* Full width for smaller screens */
}

#promos h2 {
  font-family: 'MontserratBold', sans-serif;
  font-size: 90px;
  color: #f2f2f2;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: -2.5rem;
}

#agency-title {
  font-family: 'MontserratBold', sans-serif;
  font-size: 22px;
  color: #f2f2f2;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: -1.5rem;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.promo-grid a {
  text-decoration: none;
  display: block;
}

.promo-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

.promo-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.promo-item h3 {
  font-family: 'MontserratMedium', sans-serif;
  font-size: 22px;
  color: #f2f2f2;
  margin-bottom: 1rem;
  text-align: center;
}

.promo-item p {
  font-family: 'MontserratRegular', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #f2f2f2;
  text-align: center;
}

.promo-item:nth-child(3) .promo-img {
  position: relative;
  top: -25px;
}

.promo-item:nth-child(3) h3,
.promo-item:nth-child(3) p {
  position: relative;
  top: -40px;
}

.promo-img {
  width: 100%;
  height: auto;
  border-radius: 8px 8px 0 0;
  margin-bottom: 1rem;
}

/* Adjustments for smaller screens like small laptops */
@media (max-width: 1280px) {
  #promos {
    padding: 2rem; /* Reduce padding */
  }

  #promos h2 {
    font-size: 60px; /* Reduce font size for better fit */
    margin-top: 0; /* Adjust for smaller screens */
  }

  .promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust minmax for smaller screens */
  }

  .promo-item h3, .promo-item p {
    font-size: 18px; /* Reduce size if needed */
  }
}

/* Mobile adjustments */
@media (max-width: 1024px) {
  #promos {
    height: auto; 
    padding: 2rem 1rem; 
  }

  #agency-title {
    font-size: 15px;
  }

  #promos h2 {
    font-size: 35px; 
    margin-top: 0; 
  }

  .promo-grid {
    grid-template-columns: 1fr; 
    gap: 1rem; 
    margin: 0.5rem; 
  }

  .promo-item {
    padding: 1rem; 
  }

  .promo-item h3 {
    font-size: 20px; 
  }

  .promo-item p {
    font-size: 16px; 
  }

  .promo-item:nth-child(3) .promo-img,
  .promo-item:nth-child(3) h3,
  .promo-item:nth-child(3) p {
    position: static;
    top: 0; 
  }
}


















/* FAQ Section */
#faq {
  width: 100%;
  min-height: 100vh; /* Minimum height for full-screen effect */
  background: url('img/bg/faq_bg.png') no-repeat center center/cover; 
  display: grid;
  grid-template-columns: 1.5fr 1fr; 
  grid-gap: 3rem; 
  padding: 3rem; 
  color: #f2f2f2; 
  align-items: start; 
  box-sizing: border-box; /* To ensure padding doesn't affect width */
}

/* FAQ Content Box */
.faq-content {
  display: flex;
  flex-direction: column; 
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 90%; 
  height: auto; 
  margin-left: 3rem; 
  margin-top: -2rem; 
}

/* Title (H2) */
.faq-content h2 {
  font-family: 'MontserratMedium', sans-serif;
  font-size: 46px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* For better readability */
  margin-bottom: 2rem; 
  text-align: center;
}

/* FAQ Questions */
.faq-questions {
  display: flex;
  flex-direction: column;
  gap: 1rem; 
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #f2f2f2;
  cursor: pointer;
  font-size: 20px; 
  line-height: 1.4; 
  transition: background 0.3s ease, color 0.3s ease;
  border-radius: 6px; 
}

.faq-question:hover {
  background: #032b22; 
  color: #f2f2f2; 
}

/* Arrow Style */
.faq-arrow {
  font-size: 20px; 
}

/* FAQ Answer */
.faq-answer {
  display: none; 
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-left: 3px solid #032b22; 
  font-size: 20px; 
  line-height: 1.4; 
  border-radius: 6px; 
}

.faq-answer:not(.faq-hidden) {
  display: block; 
}

/* Follow Us Section */
.faq-follow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
  gap: 2rem; 
  text-align: center;
}

.faq-logo {
  width: 250px; 
  height: auto;
  margin-bottom: 1.5rem;
}

.faq-follow h3 {
  font-family: 'MontserratBold', sans-serif;
  font-size: 36px;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* For better readability */
  text-transform: uppercase;
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; 
}

.social-btn {
  display: inline-block;
  background: #0f3f3c; 
  color: #f2f2f2; 
  font-family: 'MontserratMedium', sans-serif;
  font-size: 24px;
  text-align: center;
  padding: 1rem 3rem;
  text-decoration: none; 
  border-radius: 6px; 
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-btn:hover {
  background: #f2f2f2; 
  color: #0f3f3c; 
  transform: scale(1.05); 
  border: 1px solid #0f3f3c;
}

/* Adjustments for smaller screens like small laptops */
@media (max-width: 1280px) {
  #faq {
    grid-template-columns: 1fr 1fr; /* Equal columns for smaller screens */
    padding: 2rem 1rem; /* Reduce padding */
  }

  .faq-content {
    max-width: 100%; /* Full width for smaller screens */
    margin-left: 0; 
    margin-top: 0; 
  }

  .faq-question, .faq-answer {
    font-size: 18px; /* Reduce font size for better fit */
  }
}

/* Mobile adjustments */
@media (max-width: 1024px) {
  #faq {
    height: auto; 
    display: flex;
    flex-direction: column; 
    padding: 2rem 1rem; 
    align-items: center; 
  }

  .faq-content {
    order: 1; 
    padding: 1rem;
    width: 100%; 
    max-width: 600px; 
  }

  .faq-follow {
    order: 2; 
    margin-top: 2rem; 
    width: 100%; 
    max-width: 600px; 
  }

  .faq-content h2 {
    font-size: 32px;
    margin-bottom: 1rem;
  }

  .faq-questions {
    gap: 0.5rem;
  }

  .faq-question {
    padding: 0.7rem;
    font-size: 18px;
  }

  .faq-arrow {
    font-size: 18px;
  }

  .faq-answer {
    padding: 0.7rem;
    font-size: 16px;
    border-left-width: 2px;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
    max-height: 0; 
  }

  .faq-answer:not(.faq-hidden) {
    max-height: 1000px; 
  }

  .faq-answer p {
    word-wrap: break-word;
    margin: 0; 
  }

  .faq-logo {
    width: 80%;
    max-width: 250px;
    margin-bottom: 1rem;
  }

  .faq-follow h3 {
    font-size: 24px;
    margin-bottom: 1rem;
  }

  .social-links {
    gap: 1rem;
    width: 100%;
  }

  .social-btn {
    font-size: 18px;
    padding: 0.7rem 2rem;
    width: 100%; 
  }
}




  
/* 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 */
}

.whatsapp-icon {
  width: 30px; /* Restored to original size */
  height: 30px;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.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;
  }
}


  
  /* RESPONSIVE MEDIA QUERIES */
  @media (max-width: 768px) {
    #hero {
      height: 60vh; /* Adjust if you want a smaller hero on mobile */
    }
    .hero-logo {
      width: 200px; /* Smaller logo on mobile if needed */
    }
    #intro .intro-content, 
    #intro .intro-image {
      flex: 100%;
    }
    .footer-content {
      flex-direction: column;
      gap: 1rem;
    }
  }
  



  