body {
      margin: 0;
      font-family: 'Nunito', sans-serif;
      background-color: #fff;
      color: #1D3B2A;
    }

    header {
      background-color: #1D3B2A;
      padding: 20px;
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    header img {
      height: 50px;
    }

    nav a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
      font-weight: bold;
    }

    .hero {
      background-color: #F47A00;
      color: white;
      padding: 60px 20px;
      text-align: center;
    }

    .hero h1 {
      font-size: 48px;
      margin-bottom: 10px;
    }

    .hero p {
      font-size: 20px;
    }

    .section {
      padding: 40px 20px;
      max-width: 1000px;
      margin: auto;
    }

    footer {
      background-color: #1D3B2A;
      color: white;
      text-align: center;
      padding: 20px;
    }
    .booking-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 80px;
}

.booking-form input,
.booking-form button {
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
}

.booking-form input {
  min-width: 150px;
}

.booking-form button {
  background-color: #1D3B2A;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.booking-form button:hover {
  background-color: #218C4C;
}
.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.room-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.room-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.room-info {
  padding: 20px;
  text-align: center;
}
.room-info h3 {
  color: #F47A00; 
  font-size: 20px;
  margin-bottom: 8px;
}

.room-count {
  color: #1D3B2A;
  font-size: 14px;
  margin: 0;
}
.modal-body {
  max-height: 80vh;
  overflow-y: auto;
}

.carousel-item img {
  max-height: 500px;
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
}
.modal {
  display: none;
}
.hotel-main-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
  object-fit: cover;
  max-height: 500px;
}

.hotel-gallery {
  margin-top: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 200px;
  transition: transform 0.3s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.hotel-video iframe {
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-top: 30px;
}

.hotel-video video {
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  margin-top: 20px;
}

.hotel-features {
  text-align: center;
  margin-top: 40px;
}

.features-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1D3B2A;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  color: #1D3B2A;
}

.feature i {
  font-size: 28px;
  margin-bottom: 8px;
  color: #F47A00;
}
.food-gallery, .explore-gallery {
  margin: 30px 0;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.food-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.food-features {
  margin-top: 30px;
  text-align: center;
}

.food-features .features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.food-features .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  color: #1D3B2A;
}

.food-features .feature i {
  font-size: 28px;
  margin-bottom: 8px;
  color: #F47A00;
}

.custom-header {
  height: 80px;
  background-color: #1f3d2b; /* dark green */
  position: relative;
  z-index: 10;
}

.logo-wrapper {
  position: absolute;
  top: 120px;               /* center vertically */
  left: 20px;
  transform: translateY(-50%); /* perfect vertical centering */
  z-index: 20;
  pointer-events: none;  /* so it doesn't block nav clicks */
}

.overlap-logo {
  width: 300px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
/* Nav floated right */
.main-nav {
  margin-left: auto;
  display: flex;
  gap: 24px;
}

.main-nav a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 0;
}

.main-nav a:hover {
  color: #f90; /* hover orange */
}

.explore-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.5rem;
}

.explore-item {
  text-align: center;
}

.explore-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.explore-item h4 {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: #333;
}
.lang-flags {
  display: flex;
  gap: 6px; /* Closer spacing between flags */
  align-items: center;
}

.lang-flags a {
  font-size: 1.5rem;
  margin-left: 10px;
  display: inline-block;
}
.fi {
  display: inline-block;
  width: 1.5em;
  height: 1em;
  background-size: cover;
}
.lang-flags .fi {
  font-size: 20px;    /* Default is 24px; reduce as needed */
  margin: 0 6px;
  line-height: 1;
  vertical-align: middle;
}
.menu-btn {
  background-color: #1D3B2A;
  color: white;
  padding: 6px 10px;
  font-weight: bold;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

/* Show/hide on screen size */
.desktop-nav {
  display: flex;
  gap: 1rem;
}

.mobile-nav {
  display: none;
}
.room-card {
  cursor: pointer;
}
.contact-social-section {
  gap: 40px;
}

.social-follow .social-icons a {
  color: #1D3B2A;
  margin-right: 15px;
  transition: color 0.3s;
  font-size: 32px;
}

.social-follow .social-icons a:hover {
  color: #F47A00;
}



/* Mobile adjustments */
@media (max-width: 768px) {
  .custom-header {
    flex-direction: column;
    padding: 1rem 0.5rem;
    align-items: center;
    text-align: center;
  }
.desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

   .main-nav {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .menu-toggle {
    position: relative;
  }

  .logo-wrapper {
  position: absolute;
  top: 85px;        
  left: 10px;
 
}

  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #1D3B2A;
    padding: 10px;
    z-index: 1000;
    border-radius: 5px;
  }

  .dropdown-content a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 5px 0;
  }

  .dropdown-content a:hover {
    color: #F47A00;
  }

  .dropdown-content.show {
    display: block;
  }

  .menu-btn {
    background-color: #1D3B2A;
    color: white;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    cursor: pointer;
  }

  .lang-flags {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 4px;
  }

  .fi {
    font-size: 20px;
  }

  .logo-wrapper img.overlap-logo {
    width: 140px;
    max-width: 90%;
    margin-bottom: 10px;
  }
  

  .hero h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .hero p {
    font-size: 1rem;
    text-align: center;
  }

  .booking-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    padding: 0 10px;
  }

  .room-grid,
  .gallery-grid,
  .food-grid,
  .explore-grid {
    grid-template-columns: 1fr !important;
  }
 
.contact-social-section {
    flex-direction: column;
    text-align: center;
  }

  .social-follow,
  .contact-info {
    width: 100%;
  }

  .social-follow .social-icons a {
    margin: 0 10px;
  }
 
}


