/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fdfdfd;
    color: #333;
    line-height: 1.6;
  }
  
/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 10px;
}

/* Header Styling */
header {
  background-color: #0077b6;
  color: white;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Navbar Layout */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 35px;
  font-weight: 800;
  color: white;
}

/* Navigation */
.navigation ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-shrink: 1;
}

.navigation li {
  display: inline-block;
}

.navigation a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background-color 0.4s ease, transform 0.3s ease;
}

.navigation a:hover,
.navigation a.active {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Responsive Adjustment */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 8px;
  }

  .logo-section {
    justify-content: center;
    margin-bottom: 5px;
  }

  .navigation ul {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .navigation li {
    margin: 0;
  }
  .navigation a{
    font-size: 16px;
    padding:5px 8px;
  }

  .logo-text {
    font-size: 28px;
  }

  .logo-img {
    width: 80px;
  }
}



  /* Hero Section */
  .hero {
    background: url('../images/3.jpeg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  }
  
  .hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .btn {
    padding: 10px 24px;
    background-color: #ffb703;
    color: #000;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #ff8800;
  }
  
  .btn.secondary {
    background-color: #219ebc;
    color: white;
  }
  
  .btn.secondary:hover {
    background-color: #126782;
  }
  
  /* Overview Section */
  .overview {
    padding: 50px 0;
    background-color: #e0f7fa;
  }
  
  .overview h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #0077b6;
  }
  
  /* Features Section */
  .features ul li {
    margin: 12px 0;
    padding: 10px 15px;
    background-color: #eaf6ff;
    border-left: 5px solid #0077b6;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .features ul li:hover {
    background-color: #d0f0fd;
    transform: translateX(5px);
    cursor: pointer;
  }
  

  /* food and dining section */
  .food-dining {
    background-color: #fefefe;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-top: 30px;
  }
  
  .food-dining h2, .food-dining h3 {
    color: #0077b6;
    margin-bottom: 12px;
  }
  
  .food-dining ul li {
    font-size: 18px;
    margin: 8px 0;
    padding: 8px 12px;
    background-color: #e7f9f8;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .food-dining ul li:hover {
    background-color: #d2f0ed;
    transform: scale(1.02);
    cursor: pointer;
  }
  
  .special-experiences {
    background-color: #fff;
    padding: 25px;
    border-left: 5px solid #008891;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }
  
  .special-experiences h2 {
    color: #0077b6;
    margin-bottom: 15px;
  }
  
  .special-experiences ul.icon-list {
    list-style: none;
    padding-left: 0;
  }
  
  .special-experiences ul.icon-list li {
    font-size: 18px;
    margin: 10px 0;
    padding: 8px 12px;
    background-color: #f0fdfa;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .special-experiences ul.icon-list li:hover {
    background-color: #c6f7ef;
    transform: translateX(5px);
    cursor: pointer;
  }
  
  /* tarrif section */
  .tariff-section {
    background-color: #f4faff;
    padding: 40px 20px;
    text-align: center;
    margin-top: 30px;
    border-top: 2px solid #0099cc;
  }
  
  .tariff-section h2 {
    font-size: 2rem;
    color: #005b99;
    margin-bottom: 10px;
  }
  
  .tariff-subheading {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
  }
  
  .tariff-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .tariff-box {
    background: #ffffff;
    border: 2px solid #0077b6;
    padding: 25px;
    width: 280px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }
  
  .tariff-box h3 {
    color: #0077b6;
    margin-bottom: 15px;
  }
  
  .tariff-box ul {
    list-style: none;
    padding: 0;
  }
  
  .tariff-box ul li {
    font-size: 1rem;
    color: #222;
    margin-bottom: 10px;
  }
  
  .tariff-note {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #555;
  }
  .tariff-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .tariff-buttons .btn {
    padding: 12px 24px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
  }
  
  .tariff-buttons .btn.primary {
    background-color: #0077b6;
    color: white;
  }
  
  .tariff-buttons .btn.primary:hover {
    background-color: #005f8e;
  }
  
  .tariff-buttons .btn.secondary {
    background-color: #ffc107;
    color: #222;
  }
  
  .tariff-buttons .btn.secondary:hover {
    background-color: #e0a800;
  }
  
  
  /* Footer */
  footer {
    background-color: #040505;
    color: white;
    padding: 20px;
    margin-top: 30px;
    border-top: 2px solid #00796b;
    text-align: center
  }
  
  .card.footer-contact {
    text-align: center;
  }
  
  footer .social-section {
    margin-top: 20px;
  }
  
  footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;

  }
  
  footer .footer-copyright {
    margin-top: 30px;
    font-size: 14px;
    text-align: center;
    color: white;
  }
  
  .social-icons img:hover {
    transform: scale(1.1);
  }

  /* rooms page  */
  .floor {
    margin-bottom: 30px; 
    padding: 10px;
    background-color: #f9f9f9; 
    border-radius: 8px;
  }
  
  .floor p {
    margin: 5px 0;
  }
  
  .book-now {
    display: inline-block;
    margin-top: 15px; 
    padding: 10px 20px;
    background-color: #007bff; 
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .book-now:hover {
    background-color: #0056b3;
  }
  
  .room-img {
    width: 100%;
    max-width: 400px;
    height: 220px;
    object-fit: cover;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  .gallery-section {
    padding: 50px 0;
    background-color: #ffffff;
  }
  
  .gallery-section h2 {
    font-size: 2rem;
    color: #0077b6;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .gallery-img:hover {
    transform: scale(1.05);
  }
  
  .filter-buttons {
    margin: 20px 0;
    text-align: center;
  }
  
  .filter-btn {
    margin: 5px;
    padding: 10px 16px;
    background-color: #0077b6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .filter-btn:hover {
    background-color: #005f87;
  }
  .book-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #25d366;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .book-btn:hover {
    background-color: #1ebea5;
  }

  .gallery-item {
    text-align: center;
  }
  
  .caption {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #555;
  }
  .highlighted-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a75bc;
    background-color: #eaf6ff;
    padding: 15px 20px;
    margin: 20px auto 40px auto;
    border-left: 5px solid #1a75bc;
    border-radius: 8px;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .interactive-heading{
    color: #0077b6;
    font-size: 30px;
    /* background: gainsboro; */
    width: 323px;
    padding: 10px;
    border-radius: 10px;
  }
  
  /* Fade-in animation for sections */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.lightbox-close {
  top: 30px;
  right: 40px;
}

.lightbox-prev {
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}

.lightbox-next {
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.policy-summary {
  background-color: #eaf6ff;
  padding: 50px 20px;
  margin-top: 50px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.policy-summary h2 {
  font-size: 24px;
  color: #0077b6;
  margin-bottom: 15px;
}

.policy-summary p {
  font-size: 1.05rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto 20px auto;
}

/* Policy Section Enhancements */
.policy-summary {
  background: linear-gradient(135deg, #0077b6 0%, #eaf6ff 100%);
  padding: 60px 30px;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.policy-summary h2 {
  font-size: 2.5rem;
  color: #023047;
  margin-bottom: 20px;
  font-weight: 600;
}

.policy-summary p {
  font-size: 1.15rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
}

/* Accordion Style for Policy Items */
.policy-item {
  background-color: white;
  margin: 15px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.policy-item h3 {
  background-color: #0077b6;
  color: white;
  padding: 15px;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
  text-align: left;
  padding-left: 20px;
  transition: background-color 0.3s ease;
}

.policy-item h3:hover {
  background-color: #023047;
  color: #ffb703;
}

.policy-item p {
  padding: 20px;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  display: none; 
  padding-left: 40px;
  border-top: 1px solid #ddd;
}

/* Show the paragraph when the item is clicked */
.policy-item.open p {
  display: block;
}

.policy-item .icon {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #ffb703;
}
.logo{
  font-size: 28px;
  color: white;
  font-weight: 700;
}

/* Back to Top Button */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ffb703;
  color: #023047;
  padding: 10px 15px;
  font-size: 1.2rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.back-to-top:hover {
  background-color: #023047;
  color: #ffb703;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.features, .food-dining, .special-experiences {
  animation: fadeInUp 0.8s ease-in-out;
}

.footer-contact {
  text-align: center;
  font-size: 14px;
  background: #080808;
  padding: 20px;
  
  margin: 30px auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  max-width: auto;
}
.footer-contact h2{
  color: #dadfe2;
  font-size: 25px;
}

.footer-contact p {
  margin: 5px 0;
  color: #fbfbfb
}

.social-section h2 {
  margin-top: 20px;
  color: #dadfe2;
  font-size: 25px;
}


.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px;
  flex-wrap: wrap;
}

.social-icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  
  transform: scale(1.2);
}


/* Gallery sectcion */
.image-carousel{
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px 0;
  height: 300px;
}
#gallery h2{
  color: #005b99;
  text-align: center;
  font-size: 35px;
}

html, body {
  overflow-x: hidden;
}

* {
  max-width: 100vw;
}


  @media (max-width: 600px) {
    .toggle {
      font-size: 1rem;
    }
  
    .overview h2,
    .features h2,
    .gallery-section h2 {
      font-size: 1.5rem;
    }
  }
  

  #location {
    width: 90%; 
    max-width: 800px; 
    height: auto; 
    margin: 40px auto; 
    text-align: center;
    padding: 20px; 
}
#location h2{
  color: #005b99;
  padding: 15px;
  font-size: 35px;
}
#location iframe {
    width: 100%; 
    height: 400px; 
    border-radius: 10px; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
}

img {
  max-width: 100%;
  height: auto;
}
.container, .image-carousel {
  width: 100%;
  overflow-x: auto;
}

@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 24px;
  }
  .tariff-box {
    width: 90%;
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}