/* 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;
  }
}





/* Hero Section */
#hero {
  width: 100%;
  background: #032b22; /* Dark strip in the middle */
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  align-items: center; /* Center items horizontally */
  text-align: center;
  color: #f2f2f2;
  overflow: hidden; /* Prevent white strips from overflowing if they are larger than the viewport */
}

.white-strip {
  width: 100%;
  height: 100px; /* Height of the white strips */
  background-color: #032b22;
}

.top {
  order: 1; /* Ensure the top white strip comes first in the flex container */
}

.hero-content {
  order: 2; /* The content goes in the middle */
  flex-grow: 1; /* Allow the hero content to grow if needed */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0; /* Space around the content for better appearance */
}

.bottom {
  order: 3; /* Bottom white strip comes last */
}

#hero-title {
  font-family: 'MontserratBold', sans-serif;
  font-size: 3.5rem; /* Responsive size */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  padding: 0 1rem; /* Prevent text from touching screen edges */
}

.divider-line {
  width: 46%; /* Adjust the width of the line */
  height: 2px; /* Thickness of the line */
  background-color: #ffffff; /* Color of the line */
  margin: 1rem auto; /* Add space above and below, center the line */
  border: none; /* Remove any default borders */
}

#hero-h3 {
  font-family: 'MontserratBold', sans-serif;
  font-size: 1.5rem; /* Responsive size */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  padding: 0 1rem; /* Prevent text from touching screen edges */
}

/* Mobile adjustments */
@media (max-width: 1024px) {
  #hero {
    min-height: auto;
  }

  .white-strip {
    height: 50px; /* Reduce height for smaller screens */
  }

  .hero-content {
    padding: 1rem 0; /* Reduce padding for smaller screens */
  }

  #hero-title {
    font-size: 2.5rem; /* Smaller font size for mobile */
  }

  #hero-h3 {
    font-size: 1.2rem; /* Smaller font size for mobile */
  }
}


@media (max-width: 768px) {
  #hero {
    min-height: 60vh; /* Adjust for smaller screens */
    padding-top: 4rem; /* Reduce padding top */
    padding-bottom: 2rem; /* Add bottom padding */
  }

  #hero-title {
    font-size: 2.5rem; /* Smaller font size for mobile */
    padding: 0 0.5rem; /* Reduce side padding */
  }

  #hero-h3 {
    font-size: 1.2rem; /* Smaller font size for mobile */
    padding: 0 1rem; /* Reduce side padding */
  }
}

@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;
}







/* Amenities Section */
#amenities {
  background-color: #fff; /* White background for amenities */
  padding: 4rem 15rem;
  text-align: left;
}

.section-title {
  font-family: 'Arial', sans-serif;
  font-size: 2.5rem; /* Increased font size for better visibility */
  color: #032b22; /* Darker title color as requested */
  margin-bottom: 1rem; /* More space before divider */
  font-weight: bold; /* Bold for emphasis */
}

.divider-linee {
  width: 100px; /* Wider divider for more emphasis */
  height: 3px; /* Thicker line */
  background-color: #032b22; /* Match the title color */
  margin: 0 0 2rem 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Exactly 3 items per row */
  gap: 2rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem; /* Increased gap for better spacing */
  padding: 1rem; /* Padding for each item */
  border-radius: 8px; /* Rounded corners for a modern look */
  background-color: rgba(3, 43, 34, 0.05); /* Very light background for each item */
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.service-item:hover {
  background-color: rgba(3, 43, 34, 0.1); /* Slightly darker on hover */
}

.icon {
  width: 60px; /* Larger icons for better visibility */
  height: 60px;
  flex-shrink: 0;
  filter: invert(25%) sepia(96%) saturate(6498%) hue-rotate(357deg) brightness(90%) contrast(110%); /* Red color for icons */
}

.amenity-text h3 {
  font-size: 1.5rem; /* Larger text for better readability */
  color: #032b22; /* Same color as title for consistency */
  margin-bottom: 0.5rem;
}

.amenity-text p {
  font-size: 1rem; /* Slightly larger text */
  color: #666;
  line-height: 1.6; /* Improved readability */
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .service-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 items per row for medium screens */
  }
}

@media (max-width: 768px) {
  #amenities {
    padding: 2rem 1rem; /* Reduce padding for mobile */
  }

  .section-title {
    font-size: 2rem; /* Smaller font size for mobile */
  }

  .divider-linee {
    width: 80px; /* Adjust width for mobile */
    height: 2px; /* Keep the same thickness */
  }

  .service-grid {
    grid-template-columns: 1fr; /* Single column for mobile */
  }

  .service-item {
    padding: 0.5rem; /* Reduce padding for mobile */
    gap: 1rem; /* Reduce gap for mobile */
  }

  .icon {
    width: 40px; /* Smaller icons for mobile */
    height: 40px;
  }

  .amenity-text h3 {
    font-size: 1.2rem; /* Adjust size for mobile */
  }

  .amenity-text p {
    font-size: 0.9rem; /* Smaller text for mobile */
  }
}



/* Gallery Section */
#gallery {
  width: 100%;
  padding: 4rem 2rem;
  background-color: #f2f2f2; /* Light background for the section */
  color: #032b22; /* Main text color */
  text-align: center;
}

#gallery .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

#gallery .section-title {
  font-family: 'MontserratMedium', sans-serif;
  font-size: 36px;
  color: #032b22;
  margin-bottom: 1.5rem;
}

#gallery .divider-line {
  width: 100px; /* Wider divider for more emphasis */
  height: 3px; /* Thicker line */
  background-color: #032b22; /* Match the title color */
  margin: 0 0 2rem 0;
}

#gallery .gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

#gallery .gallery-left,
#gallery .gallery-right {
  flex: 1;
  min-width: 300px;
}

#gallery h3 {
  font-family: 'MontserratBold', sans-serif;
  font-size: 28px;
  color: #032b22;
  margin-bottom: 1rem;
  text-align: left;
}

#gallery p {
  font-family: 'MontserratMedium', sans-serif;
  font-size: 18px;
  min-height: 100px; /* Set a minimum height to ensure both are the same size */
  color: #032b22;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: justify;
  padding-left: 0.2rem; /* Adjust to align with h3 */
}

#gallery .gallery-left p,
#gallery .gallery-right p {
  height: auto; /* Ensure they adapt to content */
  padding: 1rem; /* Add padding for visual balance */
  box-sizing: border-box; /* Include padding in the element's total width and height */
}

#gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem; /* Ensure consistent spacing from the h3 */
}

#gallery .gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative; /* For positioning text and icon */
  cursor: pointer; /* Indicate clickable */
}

#gallery .gallery-item img {
  width: 100%;
  height: 220px; /* Increase height to remove white line */
  object-fit: cover; /* Ensure image covers the area */
  display: block; /* Remove bottom space */
  z-index: 1; /* Ensure image is behind text and icon */
}

/* Centered Text on Image */
#gallery .gallery-item .overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  font-family: 'MontserratMedium', sans-serif;
  z-index: 3; /* Ensure text is on top */
}

/* Gallery Icon */
#gallery .gallery-item .gallery-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px; /* Adjust based on your icon size */
  height: 50px; /* Adjust based on your icon size */
  background: url('img/offer/gallery-icon.png') no-repeat;
  background-size: contain;
  z-index: 2; /* Ensure icon is above image but below text */
}

@media (max-width: 768px) {
  #gallery {
    padding: 2rem 1rem; /* Reduce padding for mobile */
  }

  #gallery .gallery-container {
    flex-direction: column; /* Stack vertically on mobile */
  }

  #gallery .gallery-left,
  #gallery .gallery-right {
    width: 100%; /* Full width on mobile */
    padding: 1rem 0; /* Add padding for better spacing */
  }

  #gallery h3 {
    font-size: 22px; /* Smaller font size for mobile */
  }

  #gallery p {
    font-size: 16px; /* Adjust text size for mobile */
    min-height: auto; /* Remove minimum height constraint */
  }

  #gallery .gallery-grid {
    grid-template-columns: 1fr; /* Single column for mobile */
  }

  #gallery .gallery-item img {
    height: auto; /* Let images adjust naturally */
    max-height: 200px; /* Limit max height for mobile */
  }
}




















/* 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-lineeee {
  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;
  }
}
















/* Section Title & Divider Styles */
.villa-penava-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 */
  align-items: center; /* Center items horizontally */
  text-align: center;
  font-weight: bold;
}

.divider-lineee {
  width: 100px; /* Wider divider for emphasis */
  height: 3px; /* Thicker line */
  background-color: #032b22; /* Same color as title */
  margin: 0 auto 2rem auto; /* Centered horizontally */
}

/* ===== VILLA PENAVA LIST SECTION ===== */
#villa-penava-list {
  width: 100%;
  padding: 3rem 1rem;
  background-color: #fff;
  color: #032b22;
  font-family: 'Arial', sans-serif; /* Adjust as needed */
}

#villa-penava-list .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Category Block (Title + Divider + List Grid) */
.category-block {
  margin-bottom: 3rem;
}

.category-block h2 {
  font-size: 1.8rem;
  color: #032b22;
  margin: 0 0 0.5rem;
}

.divider {
  width: 80px;
  height: 3px;
  background-color: #032b22;
  margin-bottom: 1rem;
}

/* Grid for the Items: half the size of your Accommodations items */
.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); /* Half-size logic */
  gap: 1rem;
}

/* Individual Clickable Boxes */
.list-item {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center; /* Center content inside the box */
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.list-item img {
  width: 100%;
  height: 160px;         /* Fixed height for a square shape */
  object-fit: cover;     /* Crop the image to fill the container */
  object-position: center; /* Center the image */
  border-radius: 8px;    /* Adjust the value to get the desired roundness */
}
/* Title & Description */
.list-item h3 {
  font-size: 1rem;
  color: #032b22;
  margin: 0.5rem 0;
}

.list-item p {
  font-size: 0.9rem;
  color: #555;
  margin: 0.5rem 0 1rem 0;
}

/* "See More" Button */
.btn-see-more {
  display: inline-block;
  background: #0f3f3c;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: background 0.3s;
}

.btn-see-more:hover {
  background: #032b22;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #villa-penava-list {
    padding: 2rem 0.5rem;
  }

  .category-block h2 {
    font-size: 1.5rem;
  }

  .list-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .list-item h3 {
    font-size: 0.9rem;
  }

  .list-item p {
    font-size: 0.8rem;
  }
}


























/* 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;
  }
}