/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    
    color: white;
  }
  
  /* Navbar */
  .hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #03053f;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  .nav-links li a {
    text-decoration: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: background 0.3s;
  }
  .nav-links li a.active,
  .nav-links li a:hover {
    background-color: white;
    color: #03053f;
  }
  .book-btn {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 100vh;
    background-color: #03053f;
  }
  
  .hero-text {
    flex: 1;
    max-width: 600px;
    padding: 2rem;
  }
  .hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  .hero-text p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
  }
  .hero-button {
    background-color: #1d1f5a;
    color: white;
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease-in-out;
  }
  
  .hero-button:hover {
    background-color: #000118;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  }
  
  .arrow {
    background: white;
    color: black;
    border-radius: 80%;
    padding: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    transition: background 0.3s, transform 0.3s;
  }
  
  .hero-button:hover .arrow {
    background: #f1f1f1;
  }
  
  
  /* Image side */
  .hero-image {
    flex: 1;
    padding: 1rem;
    text-align: center;
  }
  .hero-image img {
    width: 80%;
    max-height: 90vh;
    object-fit: cover;
    border-radius: 20px;
  }
  
  /* Responsive Design */
  
 /* Tablet & Mobile Navbar Fix */
@media screen and (max-width: 1024px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #03053f;
    padding: 1rem;
    border-radius: 10px;
    gap: 1rem;
    width: 200px;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li a {
    padding: 0.7rem 1rem;
    display: block;
    border-radius: 30px;
    transition: all 0.3s ease;
  }

  .nav-links li a.active,
  .nav-links li a:hover {
    background-color: white;
    color: #03053f;
  }


  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 2rem;
    position: relative;
    z-index: 100;
  }

  .hamburger span {
    background: white;
    display: block;
    height: 2px;
    width: 100%;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    background: url('WhatsApp Image 2025-04-15 at 1.02.50 PM (1).jpeg') no-repeat center center/cover;
    position: relative;
    padding: 4rem 2rem;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* dark overlay */
    z-index: 0;
  }

  .hero-text {
    z-index: 2;
    color: white;
    padding: 8rem;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text p {
    font-size: 1.2rem;
  }

  .hero-button {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }

  .hero-image {
    display: none; /* hide image box since background image is used */
  }
}

/* Mobile tweaks */
@media screen and (max-width: 400px) {
  .nav-links {
    display: none;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    background: url('WhatsApp Image 2025-04-15 at 1.02.50 PM (1).jpeg') no-repeat center center/cover;
    position: relative;
    padding: 1rem 0rem;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* dark overlay */
    z-index: 0;
  }

  .hero-text {
    z-index: 2;
    color: white;
    padding: 8rem;
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text p {
    font-size: 1.2rem;
  }

  .hero-button {
    font-size: 0.9rem;
    padding: 0.6rem 1.1rem;
  }
}

/* About Section */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .about-section {
    padding: 2rem 1rem;
    background-color: #fff;
    font-family: 'Segoe UI', sans-serif;
    color: #03053f;
  }

  .about-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    flex-wrap: wrap;
  }

  .about-text {
    flex: 1 1 0px;
  }

  .about-badge {
    background-color: #03053f;
    color: #fff;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 1rem;
  }

  .about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    text-align: justify;
  }

  .about-image {
    flex: 1 1 0px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
    max-width: 600px;
  }

  /* Responsive styles */
  @media (max-width: 900px) {
    .about-wrapper {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
    }

    .about-text h2 {
      font-size: 2rem;
    }

    .about-text p {
      font-size: 1rem;
    }

    .about-image img {
      max-width: 100%;
    }
  }

/* features Section */
.features-section {
  padding: 2rem 1rem;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.image-slider {
  display: flex;
  gap: 1rem;
  overflow-x: hidden; /* Removes scrollbar */
  animation: slideScroll 20s linear infinite;
  padding-bottom: 1rem;
}

.slide {
  flex: 0 0 auto;
  width: 300px;
  height: 200px;
  border-radius: 1rem;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #03053f;
}

.stat-label {
  font-size: 1rem;
  color: #333;
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
  }

  .slide {
    width: 80%;
  }
}

/* dining section */
.dining-section {
    background-color: #fff;
    color: #03053f;
    font-family: 'Segoe UI', sans-serif;
    padding: 4rem 1rem;
  }

  .text-centered {
    text-align: center;
    margin-bottom: 2rem;
  }

  .dining-wrapper {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .dining-image {
    flex: 1;
    text-align: center;
  }
  .dining-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 1rem;
  }

  .dining-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .badge {
    background-color: #03053f;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    display: inline-block;
  }

  .dining-header h2 {
    font-size: 2rem;
    margin-top: 0.5rem;
  }

  .subtitle {
    font-size: 1.125rem;
    color: #ffffff;
    margin-top: 0.5rem;
  }

  .accordion {
    margin-top: 1.5rem;
    border-top: 1px solid #ccc;
  }

  .accordion-item {
    border-bottom: 1px solid #ccc;
  }

  .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 500;
  }

  .accordion-header img {
    height: 26px;
    margin-right: 0.5rem;
  }

  .accordion-body {
    padding: 0 0 1rem 0;
    animation: dropdown 0.4s ease forwards;
  }

  .accordion-body p {
    font-size: 1rem;
    color: #03053f;
    text-align: justify;
  }

  .know-more {
    background-color: #03053f;
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    margin-top: 1rem;
    cursor: pointer;
  }

  .toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #03053f;
  }

  @keyframes dropdown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .dining-wrapper {
      flex-direction: column;
    }
    .accordion-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
      cursor: pointer;
      gap: 2rem;
    }
  }

/* rooms section */
.rooms-section {
      background-color: #fff;
      color: #03053f;
      padding: 4rem 1rem;
      font-family: 'Segoe UI', sans-serif;
      overflow-x: hidden;
    }
    .rooms-section h2 {
      text-align: center;
      font-size: 2.5rem;
    }
    .rooms-section p.subtitle {
      text-align: center;
      font-size: 1.2rem;
      color: #666;
      margin-bottom: 2rem;
    }

    .room-card-link {
      text-decoration: none;
      color: inherit;
      display: block;
    }
    
    .room-card {
      width: 80%;
      min-height: 350px;
      margin: 2rem auto;
      background-color: #eaeff8;
      display: flex;
      flex-wrap: center;
      align-items: center;
      border-radius: 10px;
      padding: 2rem;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      gap: 2.5rem;
    }
    .room-card img {
      width: 360px;
      height: 300px;
      border-radius: 10px;
      object-fit: cover;
      max-width: 100%
    }
    .room-info h3 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }
    .room-info p {
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }
    .tags {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
      flex-wrap: wrap;
    }
    .tag {
      background-color: #111;
      color: white;
      border-radius: 20px;
      padding: 0.3rem 1rem;
      font-size: 0.8rem;
    }
    .testimonial {
      font-style: normal;
      color: #333;
      font-size: 0.95rem;
    }
    .room-card.dark .testimonial {
      color: white;
    }

    .room-card.dark .tag {
      background-color: #ffffff;
      color: #111;
      border-radius: 20px;
      padding: 0.3rem 1rem;
      font-size: 0.8rem;
    }
    
    .testimonial span {
      font-weight: bold;
      display: block;
      margin-top: 0.5rem;
    }
    @media (max-width: 768px) {
      .rooms-section {
        background-color: #fff;
        color: #03053f;
        padding: 4rem 1rem;
        font-family: 'Segoe UI', sans-serif;
        overflow-x: hidden;
      }
      .rooms-section h2 {
        text-align: center;
        font-size: 2rem;
      }
      .rooms-section p.subtitle {
        text-align: center;
        font-size: 1rem;
        color: #666;
        margin-bottom: 2rem;
      }

      .room-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        flex-wrap: wrap;
      }
      .room-card img {
        margin: 0 auto 1rem auto;
      }

      .room-info h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
      }

      .room-info p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
      }
    }

/* testimonials section */
.testimonials-section {
  background-color: #f9f9f9;
  color: #03053f;
  padding: 4rem 1rem;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

.testimonial-header h2 {
  font-size: 2.5rem;
  margin-top: 0.5rem;
}

.testimonial-header .subtitle {
  color: #555;
  margin-top: 0.5rem;
}

.testimonial-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0 1rem;
  scroll-behavior: smooth;
  margin: 0 auto;
  scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.testimonial-card {
  background-color: #ecf4ff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  min-width: 300px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  line-height: 1.6;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p:first-child {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.testimonial-card p:last-child {
  margin-top: 1rem;
  font-style: italic;
}

@media (max-width: 768px){
  .testimonial-header h2 {
    font-size: 1.8rem;
    margin-top: 0.5rem;
  }
}

/* House Rules Section */
.rules-section {
  background-color: #fff;
  color: #03053f;
  font-family: 'Segoe UI', sans-serif;
  padding: 4rem 1rem;
}

.rules-wrapper {
  display: flex;
  max-width: 1200px;
  margin: auto;
  gap: 3rem;
  flex-wrap: wrap;
}

.rules-heading {
  flex: 1;
  display: flex;
  align-items: center; /* vertically center */
  justify-content: center; /* horizontally center */
  text-align: center;
}

.rules-heading h2 {
  font-size: 2.5rem;
  line-height: 1.4;
}

.rules-accordion {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rules-item {
  background-color: #f1f6ff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.rules-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

.rules-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #03053f;
  cursor: pointer;
}

.rules-body {
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .rules-wrapper {
    flex-direction: column;
  }

  .rules-heading {
    text-align: center;
  }
  
  .rules-heading h2 {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

/* Footer Section */
.footer-section {
  background-color: #0d0d11;
  color: #fff;
  padding: 4rem 1.5rem 2rem;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 1rem 1rem 0 0;
  margin-left: 1rem;
  margin-right: 1rem;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-top {
  margin-bottom: 2rem;
}

.footer-top .badge {
  margin-bottom: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 1.5rem;
  column-gap: 4rem;
  color: #eaeaea;
}

.footer-grid div {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-left h2 {
  font-size: 2.5rem;
  margin-top: 0.5rem;
}

.footer-subtext {
  color: #ccc;
  margin: 1rem 0 2rem;
  max-width: wrap;
  line-height: 1.4;
}

.footer-labels p {
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.footer-right {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.footer-right p {
  margin-bottom: 1.5rem;
  color: #eaeaea;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-social {
  max-width: 1200px;
  margin: 2rem auto 0;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-social p {
  font-weight: bold;
}

.social-icon {
  height: 24px;
  width: 24px;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    column-gap: auto;
  }

  .footer-grid div {
    margin-bottom: 0.5rem;
  }

  .footer-wrapper {
    padding: 0 1.5rem;
  }

  .footer-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-social p {
    margin-bottom: 0.5rem;
  }

  .footer-social a {
    margin-left: 0;
  }

  .footer-grid div:nth-child(even) {
    text-align: left; /* Push right-side content fully to the right */
  }
}