/* 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 */
  }
}


/* Accommodations Section */
#accommodations {
  width: 100%;
  padding: 4rem 2rem;
  background-color: #fff;
  color: #032b22;
  text-align: center;
}

#accommodations .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

#accommodations .section-title {
  font-family: 'MontserratMedium', sans-serif;
  font-size: 36px;
  color: #032b22;
  margin-bottom: 1.5rem;
}

#accommodations .divider-line {
  width: 100px;
  height: 3px;
  background-color: #032b22;
  margin: 0 0 2rem 0;
}

/* Split Screen Design */
.split-screen {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split-item {
  display: flex;
  height: 50vh;
  justify-content: space-between;
  align-items: center;
}

.split-left,
.split-right {
  flex: 1;
  height: 100%;
}

.text-split {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  border-radius: 8px;
  background-color: #032b22;
  color: #fff;
}

.split-image {
  width: 100%;
  height: calc(50vh - 2rem);
  object-fit: cover;
  border-radius: 8px;
}

.text-split h3 {
  font-family: 'MontserratBold', sans-serif;
  font-size: 28px;
  margin-bottom: 1rem;
}

.text-split p {
  font-family: 'MontserratMedium', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-accommodation {
  display: inline-block;
  background-color: #f2f2f2;
  color: #032b22;
  font-family: 'MontserratBold', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin: 0 auto;
  display: block;
}

.btn-accommodation:hover {
  background: #bbbbbb;
  color: #032b22; 
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  #accommodations {
    padding: 2rem 1rem;
  }

  #accommodations .section-title {
    font-size: 2rem;
  }

  #accommodations .divider-line {
    width: 80px;
    height: 2px;
  }

  .split-item {
    flex-direction: column;
    height: auto;
  }

  /* Ensure image comes first on mobile */
  .split-left,
  .split-right {
    width: 100%;
    height: auto;
  }

  .split-image {
    order: 1; /* Image always first */
    height: auto;
    max-height: 300px;
    margin-bottom: 1rem;
  }

  .text-split {
    order: 2; /* Text always after image */
    padding: 1rem;
  }

  .text-split h3 {
    font-size: 22px;
  }

  .text-split p {
    font-size: 16px;
    margin-bottom: 1rem;
  }

  .btn-accommodation {
    font-size: 14px;
    padding: 0.5rem 1rem;
  }
}








.card {
  border-radius: 5px;
  background-color: #fff;
  padding-left: 60px;
  padding-right: 60px;
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 30px
}

.rating-box {
  width: 130px;
  height: 130px;
  margin-right: auto;
  margin-left: auto;
  background-color: #003580;
  color: #fff
}

.rating-label {
  font-weight: bold
}

.rating-bar {
  width: 300px;
  padding: 8px;
  border-radius: 5px
}

.bar-container {
  width: 100%;
  background-color: #f1f1f1;
  text-align: center;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  margin-bottom: 5px
}

.bar-5 {
  width: 100%;
  height: 13px;
  background-color: #003580;
  border-radius: 20px
}

.bar-4 {
  width: 70%;
  height: 13px;
  background-color: #003580;
  border-radius: 20px
}

.bar-3 {
  width: 30%;
  height: 13px;
  background-color: #003580;
  border-radius: 20px
}

.bar-2 {
  width: 3%;
  height: 13px;
  background-color: #003580;
  border-radius: 20px
}

.bar-1 {
  width: 3%;
  height: 13px;
  background-color: #003580;
  border-radius: 20px
}

td {
  padding-bottom: 10px
}

.star-active {
  color: #003580;
  margin-top: 10px;
  margin-bottom: 10px
}

.star-active:hover {
  color: #003580;
  cursor: pointer
}

.star-inactive {
  color: #CFD8DC;
  margin-top: 10px;
  margin-bottom: 10px
}

.blue-text {
  color: #0091EA
}

.content {
  font-size: 18px
}

.profile-pic {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  margin-right: 30px
}

.pic {
  width: 80px;
  height: 80px;
  margin-right: 10px
}

.vote {
  cursor: pointer
}














/* 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;
  }
}