/* Sticky Header */
/* Import Lato font */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header and Navigation Layout */
.site-header {
  position: sticky;
  background-color: #063970;
  color: #fff;
  padding: 10px 20px;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo img {
  height: 60px;
  margin-left: 30px;
}

/* Nav Styles */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}

.main-nav ul li {
  display: inline-block;
}

.main-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover {
  color: #f9d342; /* Accent hover color */
}

/* Mobile Toggle Button */
.nav-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Responsive Navigation */
/* Mobile nav styles */
@media screen and (max-width: 768px) {
  .nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }

  .logo {
    flex: 1;
  }

  .logo img {
    height: 50px;
  }

  .nav-toggle {
    display: block;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
  }

  .main-nav {
    display: none;
    width: 100%;
    background-color: #3a3a3a;
  }

  .main-nav.show {
    display: block;
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .main-nav ul li {
    border-bottom: 1px solid #444;
    text-align: center;
    padding: 12px 0;
  }

  .main-nav ul li:last-child {
    border-bottom: none;
  }

  .main-nav ul li a {
    display: block;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
  }

  .main-nav ul li a:hover {
    color: #f9d342;
  }
}

/* Hero Banner */
.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('assets/images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('assets/images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* Slightly darkens image for text readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-headline {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero-subtext {
  font-size: 1.3rem;
  margin-bottom: 30px;
  font-family: 'Lato', sans-serif;
  color: #ddd;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-button {
  display: inline-block;
  padding: 12px 28px;
  background-color: #FFD700; /* Yellow button */
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.hero-button:hover {
  background-color: #ffc107;
  transform: translateY(-2px);
}


/* === Scroll Indicator Mouse === */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 14px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 4px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}



/* Responsive */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 2rem;
  }
  
  .hero-subtext {
    font-size: 1rem;
  }
  
  .hero-button {
  display: inline-block;
  padding: 12px 28px;
  background-color: #063970; /* Dark slate for elegance */
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  
  .hero-button:hover {
  background-color: #556b2f; /* Darker on hover */
  transform: translateY(-2px);
}
  
  .nav-menu {
    flex-direction: column;
    background: #111;
    position: absolute;
    right: 0;
    top: 60px;
    display: none;
  }
}


/* === Section 2: About === */
.section-about {
  padding: 60px 20px;
  background-color: #fdfdfd;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1 1 50%;
  font-size: 1.5rem;
  font-family: "Lato", sans-serif;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.about-section {
  padding: 100px 20px;
  background-color: #fdfdfd;
  text-align: center;
}

.about-section h2 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;
  color: #1f1f1f;
}

.about-subtext {
  font-size: 2rem;  /* SIGNIFICANTLY increased */
  color: #333;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.about-description {
  font-size: 1.6rem;  /* SIGNIFICANTLY increased */
  color: #222;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 2.2;
  font-family: 'Open Sans', sans-serif;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-subtext {
    font-size: 1.4rem;
  }
  
  .about-description {
    font-size: 1.2rem;
    padding: 0 10px;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-image img {
    max-width: 90%;
    margin: 0 auto;
  }
}

/* === Section 3: Rooms & Rates === */
.section-rooms {
  padding: 80px 20px;
  background-color: #ffffff;
}

.section-rooms .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-rooms h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.section-rooms .subtext {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  color: #666;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.room-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  background-color: #fdfdfd;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.room-card:hover {
  transform: translateY(-5px);
}

.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-info {
  padding: 20px;
  text-align: center;
}

.room-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}

.room-info p {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #666;
}

/* === Room Modals === */
.room-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
}

.room-modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  border-radius: 8px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
  font-family: 'Lato', sans-serif;
}

.modal-content h3 {
  font-family: 'Playfair Display', serif;
  margin-top: 0;
  font-size: 1.8rem;
}

.modal-content ul {
  padding-left: 20px;
  margin-top: 10px;
}

.modal-content li {
  margin-bottom: 5px;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #444;
}

/* Button Style */
.btn-view-details {
  background-color: #444;
  color: #fff;
  padding: 10px 20px;
  font-size: 0.95rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
  font-family: 'Lato', sans-serif;
}

.btn-view-details:hover {
  background-color: #222;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* === Section 4: Amenities === */
.section-amenities {
  padding: 80px 20px;
  background-color: #f3f3f3;
}

.section-amenities .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-amenities h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.section-amenities .subtext {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  color: #666;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  justify-items: center;
  text-align: center;
}

.amenity-card {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  width: 100%;
  max-width: 200px;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.amenity-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.amenity-card h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #333;
  margin: 0;
}

/* === Section 5: Activities === */
.section-activities {
  padding: 80px 20px;
  background-color: #fff;
}

.section-activities .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-activities h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #222;
}

.section-activities .subtext {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  color: #666;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.activity-card {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.activity-card:hover {
  transform: translateY(-5px);
}

.activity-info {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 12px;
}

.activity-info h3 {
  margin: 0;
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
}

/* Book Event Button */
.event-cta {
  text-align: center;
}

.btn-book-event {
  display: inline-block;
  padding: 12px 30px;
  background-color: #444;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-book-event:hover {
  background-color: #222;
}

/* === Section 6: Gallery === */
.section-gallery {
  padding: 80px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.section-gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 30px;
}

.glide__slide img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* === Section 7: Contact Us === */
.section-contact {
  padding: 80px 20px;
  background-color: #fdfdfd;
}

.section-contact .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #222;
}

.section-contact .container {
  max-width: 60%;
  margin: 0 auto;
}

.section-contact .subtext {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  color: #666;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.contact-info p {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #444;
}

.map-embed iframe {
  border-radius: 8px;
  width: 100%;
  height: 250px;
  margin-top: 15px;
}

/* Form Styling */
.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Lato', sans-serif;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
}

.contact-form textarea {
  resize: vertical;
  height: 120px;
}

.contact-form .consent {
  font-size: 0.85rem;
  margin-bottom: 15px;
  color: #444;
  font-family: "Lato", sans-serif;
}

.contact-form button {
  background-color: #444;
  color: #fff;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #222;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* === Footer === */
.site-footer {
  background-color: #111;
  color: #eee;
  padding: 60px 20px 20px;
  font-family: 'Verdana', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  align-items: start;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
  font-family: 'Lato', sans-serif;
}

.footer-col p,
.footer-col a {
  font-size: 0.95rem;
  color: #ccc;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #bbb;
  margin-top: 5px;
}

.footer-social a {
  font-size: 1.2rem;
  margin-right: 12px;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}

/* Footer Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: #777;
  border-top: 1px solid #222;
  padding-top: 15px;
}

/* Mobile */
@media screen and (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    margin-top: 10px;
  }
}

/* === Success Modal === */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  margin: auto;
  font-family: 'Lato', sans-serif;
}

.modal-content h3 {
  color: #222;
  margin-bottom: 10px;
}

.close-button {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 1.2rem;
  cursor: pointer;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Fullscreen modal */
.booking-modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: none;
}

/* Modal content */
.booking-modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  position: relative;
}

/* Inside modal */
.booking-modal-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.booking-modal-content .form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 👈 Forces labels to align left */
  width: 100%;
  font-family: 'Lato', sans-serif;
}

.booking-modal-content label {
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
  text-align: left; /* 👈 Ensures label text is aligned left */
  width: 100%;
}

.booking-modal-content input,
.booking-modal-content textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.booking-modal-content button.hero-button {
  background-color: #325c4b;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

.booking-modal-content button.hero-button:hover {
  background-color: #063970;
}

.booking-modal-content h2 {
  font-family: 'Lato', sans-serif;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}


.privacy-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: auto;
}

.privacy-modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 70%;
  max-width: 600px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  font-family: 'Open Sans', sans-serif;
}

.close-privacy {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.close-privacy:hover {
  color: #000;
}




