/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8f8f8;
  scroll-behavior: smooth;
}

/* ------------------------------
   Navigation Bar
--------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 100px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
  text-decoration: none;
}

.nav-logo img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  margin-right: 10px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: #2c3e50;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 700;
  font-size: 20px;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #c9a34a;
}

/* Reserve Now Button */
.nav-cta {
  margin-left: 20px;
}

.btn-reserve {
  padding: 15px 20px;
  background-color: #c9a34a;
  color: white;
  font-size: 18px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.btn-reserve:hover {
  background-color: #b8933a;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  color: #2c3e50;
}

/* ------------------------------
   Hero Header
--------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  margin-top: 100px;
  background-image: url('../images/savannah_hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 5.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 800px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

.hero button {
  padding: 18px 30px;
  margin: 0 10px;
  font-size: 1.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
}

.hero button:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.btn-book {
  background-color: #c9a34a;
  color: #000;
  font-weight: bold;
}

.btn-explore {
  background-color: navy;
  color: white;
}

/* ------------------------------
   Room Cards Section (Larger Cards)
--------------------------------- */
/* ------------------------------
   Section 2: Room Cards (Fixed Layout)
--------------------------------- */
.section {
  padding: 100px 20px;
  text-align: center;
  background-color: #f9f7f4;
}

.section h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 60px;
}

/* Cards Grid Layout */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Card Styling */
.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Image Link */
.card-img-link {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 220px;
}

.card-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-img-link:hover img {
  transform: scale(1.08);
}

/* Card Content */
.card-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 12px;
}

.card-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 18px;
  font-size: 1.05rem;
  flex-grow: 1;
}

/* Outline Button */
.btn-outline {
  display: inline-block;
  padding: 10px 24px;
  color: #c9a34a;
  border: 2px solid #c9a34a;
  background: transparent;
  text-decoration: none;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-outline:hover {
  background-color: #c9a34a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(201, 163, 74, 0.3);
}

/* ------------------------------
   Moments at Savannah - 8-Image Immersive Gallery
   Larger, bolder, more luxurious
--------------------------------- */
.moments-overlap-bg {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding: 140px 20px 100px;
  display: flex;
  align-items: center;
  text-align: center;
}

/* Background Image */
.moments-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: brightness(0.6) sepia(0.05);
  transition: transform 1.2s cubic-bezier(0.25, 0.45, 0.45, 1);
}

.moments-overlap-bg:hover .moments-bg {
  transform: scale(1.04);
}

/* Warm Golden Overlay */
.moments-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(28, 24, 18, 0.8),
    rgba(201, 163, 74, 0.25)
  );
  z-index: -1;
}

/* Content */
.moments-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  padding: 0 20px;
}

.moments-content .section-title {
  font-size: 2.8rem;
  margin-bottom: 16px;
  font-weight: 300;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.moments-content .section-subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 80px;
  line-height: 1.7;
  color: #e6dccb;
  font-weight: 300;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Gallery Container */
.overlap-gallery {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 580px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Base Gallery Item */
.gallery-item {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  z-index: 3;
}

.gallery-item:hover {
  transform: translateY(-10px) rotate(-1deg);
  z-index: 5;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

/* Caption Overlay */
.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 22px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: white;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.gallery-item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

/* Large Center Image */
.large {
  width: 70%;
  height: 85%;
  z-index: 2;
  transform: rotate(0deg);
}

/* Medium Images */
.medium {
  width: 32%;
  height: 40%;
  border: 3px solid white;
}

/* Small Images */
.small {
  width: 22%;
  height: 30%;
  border: 2px solid white;
  border-radius: 14px;
}

/* Positioning */

.top-left {
  top: -60px;
  left: 6%;
  transform: rotate(-4deg);
}

.bottom-right {
  bottom: -50px;
  right: 8%;
  transform: rotate(3deg);
}

.bottom-left {
  bottom: -40px;
  left: 10%;
  transform: rotate(4deg);
  width: 26%;
  height: 34%;
}

.top-right {
  top: -50px;
  right: 12%;
  transform: rotate(3deg);
}

.middle-right {
  top: 52%;
  right: 5%;
  transform: translateY(-50%) rotate(-2deg);
  width: 24%;
  height: 38%;
}

.far-left {
  top: 40%;
  left: -10%;
  transform: rotate(-3deg);
  width: 28%;
  height: 36%;
  z-index: 1;
}

.middle-bottom {
  bottom: -60px;
  left: 42%;
  transform: rotate(2deg);
  width: 26%;
  height: 32%;
}

/* Responsive */
@media (max-width: 768px) {
  .moments-overlap-bg {
    min-height: auto;
    padding: 100px 20px 60px;
  }

  .moments-content .section-title {
    font-size: 2.4rem;
  }

  .overlap-gallery {
    height: 500px;
  }

  .large {
    width: 80%;
    height: 70%;
  }

  .medium, .small {
    width: 35% !important;
    height: 30% !important;
  }

  .top-left { top: -40px; left: 5%; }
  .bottom-right { bottom: -40px; right: 5%; }
  .bottom-left { bottom: -30px; left: 10%; }
  .top-right { top: -40px; right: 5%; }
  .middle-right { right: 8%; }
  .far-left { left: 5%; top: 30%; width: 30%; height: 28%; }
  .middle-bottom { bottom: -40px; left: 38%; }
}

@media (max-width: 480px) {
  .overlap-gallery {
    height: 450px;
  }

  .large {
    width: 90%;
    height: 65%;
  }

  .medium, .small {
    width: 40% !important;
    height: 28% !important;
  }

  .far-left { left: 5%; width: 36%; }
  .middle-bottom { bottom: -35px; }
}
/* ------------------------------
   Amenities Section
--------------------------------- */

.amenities-grid-section-warm {
  padding: 100px 20px;
  text-align: center;
  background-color: #1c1812; /* Warm charcoal – like savannah at night */
  color: #f8f5f1;
  position: relative;
  overflow: hidden;
}

.amenities-grid-section-warm .section-title {
  font-size: 2.6rem;
  color: #f8f5f1;
  margin-bottom: 15px;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.amenities-grid-section-warm .section-subtitle {
  font-size: 1.2rem;
  color: #c9b8a4; /* Warm gray */
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
  font-weight: 300;
}

/* Grid Layout */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Amenity Card */
.amenity-card {
  position: relative;
  height: 290px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid #3c332a;
  background-color: #2a241c; /* Slightly lighter than bg */
}

.amenity-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 18px 35px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(212, 167, 106, 0.25); /* Warm glow */
  border-color: #4a4035;
}

/* Background Image */
.amenity-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 1;
}

.amenity-card:hover .amenity-bg {
  transform: scale(1.12);
}

/* Overlay Content */
.amenity-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 34px 32px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.3) 50%,
    transparent
  );
  color: white;
  text-align: left;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.amenity-content i {
  font-size: 2.1rem;
  color: #d4a76a; /* Terracotta gold – warm & elegant */
  filter: drop-shadow(0 0 8px rgba(212, 167, 106, 0.4));
  transition: all 0.3s ease;
}

.amenity-card:hover .amenity-content i {
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(212, 167, 106, 0.6);
}

.amenity-content h3 {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 500;
  color: #f8f5f1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
  .amenities-grid-section-warm {
    padding: 80px 20px;
  }

  .amenities-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
  }

  .amenity-card {
    height: 250px;
  }

  .amenity-content {
    padding: 28px 26px;
  }

  .amenity-content i {
    font-size: 1.8rem;
  }

  .amenity-content h3 {
    font-size: 1.35rem;
  }

  .amenities-grid-section-warm .section-title {
    font-size: 2.2rem;
  }
}

/* ------------------------------
   Testimonials Section
--------------------------------- */
/* ------------------------------
   Testimonials - Cinematic with Clear Text
--------------------------------- */
.testimonials-cinematic {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

/* Video Background */
.cinematic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.5; /* Reduced to improve text contrast */
}

/* Overlay - Enhanced for Readability */
.cinematic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 12, 9, 0.94),    /* Deep warm base */
    rgba(30, 25, 18, 0.88),
    rgba(44, 62, 80, 0.7)
  );
  z-index: -1;
}

/* Parallax Container */
.parallax-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Floating Card */
.testimonial-float-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 70px 60px 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 163, 74, 0.4);
  max-width: 700px;
  width: 90%;
  color: white;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.25, 0.45, 0.45, 1);
  text-align: center;
  line-height: 1.1;
}

/* Quote Icon */
.quote-icon {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 6rem;
  color: rgba(201, 163, 74, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Quote Text - Now Highly Visible */
.quote-text {
  font-size: 1.6rem; /* Larger */
  line-height: 1.95;
  color: #fff;
  margin: 80px 0 50px;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6),
               0 2px 8px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.9s cubic-bezier(0.25, 0.45, 0.45, 1);
  font-weight: 300;
  letter-spacing: -0.01em;
}

/* Guest Profile */
.guest-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
}

.guest-profile img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid #d4a76a;
  object-fit: cover;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.guest-profile:hover img {
  transform: scale(1.12) rotate(2deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.guest-info h4 {
  margin: 0;
  font-size: 1.45rem;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.guest-info p {
  margin: 0;
  color: #d4a76a;
  font-size: 1.1rem;
  font-weight: 300;
}

/* Pulse Pagination */
.pagination-pulse {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 15px;
}

.pulse-dot {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.pulse-dot.active {
  background: #d4a76a;
  transform: scale(1.2);
  box-shadow: 0 0 0 0 rgba(212, 167, 106, 0.7);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 167, 106, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(212, 167, 106, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 167, 106, 0);
  }
}

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.7;
  z-index: 3;
}

.scroll-hint span {
  width: 2px;
  height: 35px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  animation: scrollHint 1.8s infinite;
}

@keyframes scrollHint {
  0%, 100% {
    opacity: 0.4;
    transform: translateY(-10px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-float-card {
    padding: 60px 30px 50px;
    max-width: 92%;
  }

  .quote-text {
    font-size: 1.35rem;
    line-height: 1.85;
    margin: 70px 0 45px;
  }

  .quote-icon {
    font-size: 5rem;
    top: 25px;
    right: 35px;
  }

  .guest-profile {
    gap: 16px;
  }

  .guest-profile img {
    width: 64px;
    height: 64px;
  }

  .guest-info h4 {
    font-size: 1.3rem;
  }

  .guest-info p {
    font-size: 1.05rem;
  }

  .pagination-pulse {
    gap: 12px;
  }

  .pulse-dot {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .quote-text {
    font-size: 1.25rem;
  }

  .quote-icon {
    font-size: 4.5rem;
  }

  .scroll-hint {
    bottom: 30px;
  }
}

/* ------------------------------
   Contact Section
--------------------------------- */
/* ------------------------------
   Contact Us Section - Premium Design
--------------------------------- */
.contact-section {
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
  background-color: #fdfbf8;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(201, 163, 74, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(201, 163, 74, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: start;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Left: Contact Info */
.contact-info {
  background: #1c1812;
  color: #f8f5f1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info h2 {
  font-size: 2.4rem;
  margin-bottom: 8px;
  color: #d4a76a;
  font-weight: 400;
}

.contact-info .subtitle {
  color: #bbb;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Info Items */
.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-item i {
  font-size: 1.4rem;
  color: #d4a76a;
  min-width: 28px;
  margin-top: 4px;
}

.info-item h4 {
  margin: 0 0 4px;
  font-size: 1.2rem;
  color: #fff;
}

.info-item p {
  margin: 0;
  color: #aaa;
  font-size: 0.95rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #332b23;
  color: #d4a76a;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #d4a76a;
  color: #1c1812;
  transform: translateY(-3px);
}

/* Right: Contact Form */
.contact-form {
  padding: 60px 50px;
  background: white;
  display: flex;
  flex-direction: column;
}

.contact-form h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 8px;
  font-weight: 400;
}

.contact-form p {
  color: #7f8c8d;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Form Styling */
.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f9f7f4;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c9a34a;
  box-shadow: 0 0 0 3px rgba(201, 163, 74, 0.15);
}

.form-group textarea {
  resize: vertical;
}

/* Submit Button */
.btn-submit {
  background: #c9a34a;
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(201, 163, 74, 0.3);
}

.btn-submit:hover {
  background: #b8933a;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(201, 163, 74, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    box-shadow: none;
    border-radius: 15px;
    overflow: hidden;
  }

  .contact-info,
  .contact-form {
    padding: 40px 30px;
  }

  .contact-info h2 {
    font-size: 2rem;
  }

  .contact-form h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 80px 20px;
  }

  .contact-info,
  .contact-form {
    padding: 30px 20px;
  }

  .btn-submit {
    width: 100%;
    text-align: center;
  }
}

/* ------------------------------
   Reservation Modal (Popup)
--------------------------------- */
.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  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: white;
  padding: 40px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 1.8rem;
  color: #aaa;
  cursor: pointer;
  font-weight: bold;
}

.close:hover {
  color: #000;
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #2c3e50;
  text-align: center;
}

.modal-content form p {
  margin-bottom: 15px;
}

.modal-content label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: 500;
}

.modal-content input,
.modal-content select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.btn-reserve-submit {
  background-color: #c9a34a;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 15px;
  font-weight: bold;
  width: 100%;
}

.btn-reserve-submit:hover {
  background-color: #b8933a;
}

/* ------------------------------
   Footer
--------------------------------- */
/* ------------------------------
   Main Footer - Wide & Professional
--------------------------------- */
.main-footer {
  background: #1a1812;
  color: #c9a34a;
  padding: 80px 20px 40px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 0 20px;
}

/* Footer Column */
.footer-column {
  color: #ddd;
}

.footer-column h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #c9a34a;
}

/* Logo & Brand */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
  font-weight: 500;
}

.footer-about {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #332b23;
  color: #c9a34a;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #c9a34a;
  color: #1a1812;
  transform: translateY(-3px);
}

/* Links */
.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s, transform 0.2s;
}

.footer-column ul li a:hover {
  color: #c9a34a;
  transform: translateX(4px);
}

/* Contact Info */
.footer-contact p {
  color: #aaa;
  margin: 10px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact i {
  color: #c9a34a;
  width: 20px;
  margin-right: 8px;
}

.footer-contact a {
  color: #aaa;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #c9a34a;
  text-decoration: underline;
}

/* ------------------------------
   Bottom Footer - Copyright Bar
--------------------------------- */
.bottom-footer {
  text-align: center;
  padding: 16px 20px;
  background: #12100c;
  border-top: 1px solid #332b23;
  color: #777;
  font-size: 0.9rem;
}

.bottom-footer p {
  margin: 0;
  line-height: 1.6;
}

.bottom-footer a {
  color: #c9a34a;
  text-decoration: none;
}

.bottom-footer a:hover {
  text-decoration: underline;
}

/* ------------------------------
   Responsive
--------------------------------- */
@media (max-width: 768px) {
  .main-footer {
    padding: 60px 20px 30px;
  }

  .footer-container {
    gap: 30px;
  }

  .footer-column h4 {
    font-size: 1.2rem;
  }

  .footer-about,
  .footer-contact p,
  .footer-column ul li a {
    font-size: 0.9rem;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* ------------------------------
   Responsive Design
--------------------------------- */
@media (max-width: 768px) {
  .nav-container {
    height: 60px;
  }

  .nav-logo span {
    font-size: 1.3rem;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
    z-index: 999;
  }

  .nav-menu li a {
    display: block;
    margin: 15px 0;
    font-size: 1.1rem;
  }

  .nav-cta {
    margin-left: 10px;
  }

  .btn-reserve {
    font-size: 0.95rem;
    padding: 8px 16px;
  }

  .nav-toggle-label {
    display: block;
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 1.5rem;
  }

  .nav-toggle:checked + .nav-toggle-label + .nav-menu {
    left: 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h3 {
    font-size: 1.2rem;
  }

  .hero button {
    display: block;
    width: 80%;
    margin: 10px auto;
  }

  .section, .amenities, .testimonials, .cta {
    padding: 60px 20px;
  }

  .modal-content {
    width: 90%;
    margin: 40px auto;
  }
}
/* ------------------------------
   Right Actions: Login & Reserve
--------------------------------- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-login {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-login:hover {
  color: #c9a34a;
}

.nav-login .fa-user {
  font-size: 1.1rem;
  background-color: #f1f1f1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.nav-login:hover .fa-user {
  background-color: #e0e0e0;
  color: #c9a34a;
}

/* ------------------------------
   Responsive: Stack on Mobile
--------------------------------- */
@media (max-width: 768px) {
  .nav-actions {
    flex-direction: column;
    align-items: flex-end;
    position: fixed;
    top: 60px;
    right: 20px;
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 998;
    display: none;
  }

  .nav-toggle:checked ~ .nav-actions {
    display: flex;
  }

  .nav-login {
    font-size: 1rem;
  }

  .btn-reserve {
    font-size: 0.95rem;
    padding: 8px 16px;
  }
}