:root {
  --primary-gold: #d4af37;
  --deep-blue: #1a1a2e;
  --elegant-gray: #f5f5f5;
  --text-dark: #2c2c2c;
  --text-light: #666;
  --gradient-primary: linear-gradient(135deg, #d4af37, #f4d03f);
  --gradient-dark: linear-gradient(135deg, #1a1a2e, #16213e);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Loader Animation */
#site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(
    --deep-blue
  ); /* MODIFIED: Changed background for better text visibility */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

#site-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.chandelier-img {
  width: 120px;
  height: 120px;
  margin-bottom: 3rem; /* MODIFIED: Increased margin */
  animation: swingChandelier 2s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(212, 175, 55, 0.3));
}

.welcome-text {
  color: var(--primary-gold);
  font-family: "Playfair Display", serif;
  font-size: 3.5rem; /* MODIFIED: Increased font size */
  margin-bottom: 2rem;
  text-align: center;
  opacity: 0;
  /* MODIFIED: New animation for a more elegant reveal */
  animation: welcomeTextGrow 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s
    forwards;
  text-shadow:
                /* Golden glow */ 0 0 5px #ffd700,
    0 0 10px #ffd700, 0 0 15px #ffd700, 0 0 20px #ffa500, 0 0 30px #ffa500;
}

/* REMOVED: Door styles are no longer needed */

@keyframes swingChandelier {
  0%,
  100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}

/* MODIFIED: New animation for welcome text to replace fadeInUp and door animations */
@keyframes welcomeTextGrow {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  70% {
    opacity: 1;
    transform: scale(1.1) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* REMOVED: Door keyframes are no longer needed */

/* Enhanced Navbar */
.navbar-custom {
  background: transparent; /* MODIFIED: Transparent by default */
  backdrop-filter: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-custom.scrolled {
  background: rgba(26, 26, 46, 0.98); /* MODIFIED: Background on scroll */
  backdrop-filter: blur(10px); /* MODIFIED: Blur on scroll */
  padding: 0.5rem 0;
}

.navbar-brand {
  color: var(--primary-gold) !important;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: #fff !important;
  margin: 0 1rem;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-gold) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Banner Section with Video */
.banner-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* NEW: Video Background Styling */
.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}

/* NEW: Overlay for Video Readability */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.3),
    rgba(22, 33, 62, 0.4)
  );
  z-index: 2;
}

.container {
  z-index: 999;
}
.banner-content {
  text-align: center;
  color: #fff;
  z-index: 4; /* MODIFIED: Ensure it's on top */
  max-width: 1600px;
  animation: fadeInUp 1s ease 0.5s both;
}

.banner-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
  color: var(--primary-gold);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gold);
  animation: expandLine 2s ease 1s forwards;
  transform: scaleX(0);
}

@keyframes expandLine {
  to {
    transform: scaleX(1);
  }
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.8;
}

.banner-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-luxury {
  background: linear-gradient(45deg, var(--primary-gold), #f4d03f);
  color: var(--deep-blue);
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-luxury:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
  color: var(--deep-blue);
}

.btn-outline-luxury {
  background: transparent;
  color: #fff;
  padding: 1rem 2rem;
  border: 2px solid var(--primary-gold);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-luxury:hover {
  background: var(--primary-gold);
  color: var(--deep-blue);
  transform: translateY(-3px);
}

/* About Section */
.about-section {
  background: #fff;
  padding: 120px 0;
  position: relative;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  min-height: 500px;
}

.about-text {
  flex: 1;
  padding-right: 2rem;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.about-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--primary-gold);
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--primary-gold), #f4d03f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-blue);
  font-size: 1.2rem;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--primary-gold);
  border-radius: 20px;
  z-index: -1;
}

.about-image::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  border: 3px solid var(--primary-gold);
  border-radius: 20px;
  z-index: -1;
}

/* Footer Styles */
.footer-section {
  background: linear-gradient(135deg, var(--deep-blue), #16213e);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-pattern)"/></svg>')
    repeat;
  opacity: 0.3;
}

.newsletter-section {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1),
    rgba(212, 175, 55, 0.05)
  );
  padding: 4rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  z-index: 1;
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.newsletter-text {
  flex: 1;
  min-width: 300px;
}

.newsletter-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.newsletter-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.newsletter-form {
  flex: 1;
  min-width: 300px;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px 0 0 50px;
  border-right: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-gold);
  box-shadow: none;
  color: #fff;
}

.newsletter-btn {
  background: linear-gradient(45deg, var(--primary-gold), #f4d03f);
  color: var(--deep-blue);
  padding: 1rem 2rem;
  border: 2px solid var(--primary-gold);
  border-radius: 0 50px 50px 0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: linear-gradient(45deg, #f4d03f, var(--primary-gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.main-footer {
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.widget-title {
  font-size: 1.2rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
}

.widget-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-gold);
}

.footer-description {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-item i {
  color: var(--primary-gold);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  min-width: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1rem;
}

.footer-links a::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 1.5rem;
}

.footer-links a:hover::before {
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary-gold);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.social-link:hover {
  background: var(--primary-gold);
  color: var(--deep-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.awards-section {
  margin-top: 1.5rem;
}

.awards-title {
  font-size: 1rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.awards-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.award-item i {
  color: var(--primary-gold);
  font-size: 1rem;
}

.bottom-footer {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  z-index: 1;
}

.copyright-text {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer-legal {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-gold);
}

.separator {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2.5rem;
  }

  .banner-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    padding-right: 0;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .banner-section {
    background-attachment: scroll;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .newsletter-text,
  .newsletter-form {
    min-width: 100%;
  }

  .footer-legal {
    text-align: center;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
  }

  .copyright-text {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Swimming Pool Section Styles */
.pool-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 0;
  overflow: hidden;
}

.pool-hero {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.1),
    rgba(212, 175, 55, 0.1)
  );
}

.pool-text {
  padding-right: 2rem;
}

.pool-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.pool-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, var(--primary-gold), #87ceeb);
}

.pool-description {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.pool-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pool-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.pool-feature i {
  color: #4fc3f7;
  font-size: 1.2rem;
  width: 25px;
}

.pool-btn {
  background: linear-gradient(45deg, #4fc3f7, #29b6f6);
  border: none;
  padding: 1rem 2rem;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pool-btn:hover {
  background: linear-gradient(45deg, #29b6f6, #0288d1);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(79, 195, 247, 0.4);
  color: white;
}

.pool-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.pool-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pool-image-container:hover .pool-main-image {
  transform: scale(1.05);
}

.pool-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(79, 195, 247, 0.1),
    rgba(41, 182, 246, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pool-image-container:hover .pool-overlay {
  opacity: 1;
}

.pool-gallery {
  padding: 80px 0;
  background: white;
}

.gallery-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 3rem;
  position: relative;
}

.gallery-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, var(--primary-gold), #4fc3f7);
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.gallery-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-gold);
}

/* Wedding Section Styles */
.wedding-section {
  background: #fff;
  overflow: hidden;
}

.wedding-hero {
  position: relative;
  height: 70vh;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.4),
      rgba(212, 175, 55, 0.3)
    ),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wedding-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3),
    rgba(212, 175, 55, 0.2)
  );
}

.wedding-hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
}

.wedding-title {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease;
}

.wedding-subtitle {
  font-size: 1.4rem;
  opacity: 0.95;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.3s both;
}

.wedding-content {
  padding: 120px 0;
}

.story-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.story-title::after {
  content: "💕";
  position: absolute;
  right: -50px;
  top: 0;
  font-size: 2rem;
}

.story-text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.wedding-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.highlight-item i {
  color: #e91e63;
  font-size: 1.5rem;
  width: 30px;
}

.highlight-item div {
  display: flex;
  flex-direction: column;
}

.highlight-item strong {
  color: var(--text-dark);
  font-size: 1.1rem;
}

.highlight-item span {
  color: var(--text-light);
  font-size: 0.95rem;
}

.wedding-image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 500px;
}

.wedding-grid-item.large {
  grid-row: 1 / -1;
}

.wedding-grid-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.wedding-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.wedding-grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wedding-grid-item:hover .wedding-grid-image {
  transform: scale(1.05);
}

.wedding-packages {
  margin-top: 100px;
}

.packages-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 3rem;
  position: relative;
}

.packages-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, var(--primary-gold), #e91e63);
}

.package-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.package-card.premium {
  border: 3px solid var(--primary-gold);
  transform: scale(1.05);
}

.package-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.package-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-img {
  transform: scale(1.1);
}

.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-gold);
  color: var(--deep-blue);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.package-badge.premium {
  background: linear-gradient(45deg, var(--primary-gold), #f4d03f);
}

.package-badge.royal {
  background: linear-gradient(45deg, #8e24aa, #e91e63);
  color: white;
}

.package-content {
  padding: 2rem;
}

.package-name {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.package-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.package-features {
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.feature i {
  color: #4caf50;
  font-size: 1rem;
}

.package-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-align: center;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
}

.wedding-cta {
  margin-top: 100px;
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1),
    rgba(233, 30, 99, 0.05)
  );
  border-radius: 30px;
  text-align: center;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pool-title,
  .wedding-title {
    font-size: 2.5rem;
  }

  .pool-text {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .pool-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .wedding-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 150px 150px;
  }

  .wedding-grid-item.large {
    grid-row: 1;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .story-title::after {
    position: static;
    display: block;
    text-align: center;
    margin-top: 1rem;
  }
}

/* ================================================== */
/* --- Hotel Showcase Section (3 and 1 Layout) --- */
/* ================================================== */

.hotel-showcase {
  position: relative;
}

/* Experience Grid */
.showcase-grid {
  position: relative;
  padding: 120px 0;
  background-image: url("../images/hs3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 3;
}

/* NEW: Main grid container for the 3-and-1 layout */
.experience-grid {
  display: grid;
  /* Two columns: left is twice as wide as the right */
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  padding: 0 2rem;
  max-width: 1400px; /* Increased max-width for the wider layout */
  margin: 0 auto;
  height: 800px; /* Set a fixed height for the desktop grid */
  align-items: stretch;
}

/* NEW: Container for the three smaller cards */
.small-cards-container {
  display: grid;
  grid-template-rows: repeat(3, 1fr); /* 3 equal rows */
  gap: 2rem;
}

/* MODIFIED: Card styles are now more flexible */
.experience-card {
  position: relative;
  height: 100%; /* Let the grid determine the height */
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.experience-card:hover {
  transform: translateY(-10px) scale(1.01); /* Slightly reduced hover effect */
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

/* For the large card, we want a more pronounced hover */
.large-card:hover {
  transform: scale(1.02);
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.experience-card:hover .main-image {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  transition: all 0.5s ease;
}

.experience-card:hover .image-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

/* Floating Icons on Showcase Cards */
.experience-card .floating-elements {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 5;
}

.float-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: float 3s ease-in-out infinite;
}

.pool-float {
  background: rgba(79, 195, 247, 0.3);
}
.restaurant-float {
  background: rgba(212, 175, 55, 0.3);
}
.banquet-float {
  background: rgba(233, 30, 99, 0.3);
}
.cafe-float {
  background: rgba(139, 69, 19, 0.3);
}

/* Card Content */
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem;
  z-index: 5;
  color: white;
}

.content-inner {
  transform: translateY(20px);
  opacity: 0.8;
  transition: all 0.5s ease;
}

.experience-card:hover .content-inner {
  transform: translateY(0);
  opacity: 1;
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Make title larger on the main card */
.large-card .card-title {
  font-size: 2.8rem;
}

.card-description {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Hide description on smaller cards to avoid clutter */
.small-cards-container .card-description {
  display: none;
}

/* Show description on hover for small cards */
.small-cards-container .experience-card:hover .card-description {
  display: block;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: var(--primary-gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.card-cta:hover {
  gap: 1.2rem;
}
.card-cta i {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}
.card-cta:hover i {
  transform: translateX(5px);
}

/* Background Elements (No changes needed here) */
.bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
/* ... floating-shape styles remain the same ... */

/* Bottom CTA (No changes needed here) */
.showcase-bottom {
  background: var(--gradient-dark);
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}
/* ... bottom-title, bottom-description, etc. remain the same ... */

/* MODIFIED: Responsive Design for the new grid */
@media (max-width: 992px) {
  .experience-grid {
    /* Stack everything in a single column on smaller screens */
    grid-template-columns: 1fr;
    height: auto; /* Let height be determined by content */
    padding: 0 1rem;
  }

  .small-cards-container {
    /* Also use a single column for the small cards container */
    grid-template-columns: 1fr;
    grid-template-rows: auto; /* Let rows size automatically */
  }

  .experience-card {
    height: 500px; /* Give cards a fixed height again on mobile */
  }

  .large-card .card-title {
    font-size: 2.2rem; /* Reset title size on mobile */
  }

  /* Show all descriptions on mobile */
  .small-cards-container .card-description {
    display: block;
  }
}

@media (max-width: 480px) {
  .experience-card {
    height: 450px;
  }
}
.amenities-section {
  padding: 120px 0;
  background-color: var(
    --elegant-gray
  ); /* A light background to separate it from other sections */
  position: relative;
}

/* A reusable class for section titles, which I've created based on your existing design */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-gold);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px; /* Constrains the width for better readability */
  margin: 0 auto;
  line-height: 1.7;
}

.amenity-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%; /* Ensures all cards in a row have the same height */
  border: 1px solid transparent;
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(44, 44, 44, 0.1);
  border-color: rgba(212, 175, 55, 0.4); /* Subtle gold border on hover */
}

.amenity-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1),
    rgba(212, 175, 55, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.amenity-icon i {
  font-size: 2.5rem;
  color: var(--primary-gold);
  transition: all 0.4s ease;
}

.amenity-card:hover .amenity-icon {
  background: var(--primary-gold);
}

.amenity-card:hover .amenity-icon i {
  color: var(--deep-blue);
  transform: scale(1.1);
}

.amenity-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.amenity-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ================================================== */
/* --- Gallery of Splendor Section (REVISED for flexible sizes) --- */
/* ================================================== */

.gallery-section {
  padding: 120px 0;
  position: relative;
  /* Creating the "wall" effect with a subtle texture */
  background-color: #f8f8f8;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><g fill-rule="evenodd"><g fill="%23e9e9e9" fill-opacity="0.4"><path d="M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z"/></g></g></svg>');
  overflow: hidden;
}

.gallery-wall-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* REVISED: Using CSS Columns for a Masonry-style layout */
.gallery-wall {
  column-count: 4; /* Number of columns on desktop */
  column-gap: 2rem;
}

.gallery-item {
  display: inline-block; /* Crucial to prevent items from breaking across columns */
  width: 100%;
  margin-bottom: 2rem; /* The vertical gap between items */
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* For the animation */
  opacity: 0;
  transform: translateY(40px);
}

.photo-frame {
  position: relative;
  padding: 20px; /* The white "matting" around the photo */
  background: #fff;
  /* The 3D frame effect */
  border: 1px solid #ddd;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15),
    /* The inner gold frame effect */ inset 0 0 0 4px var(--primary-gold);
  cursor: pointer;
}

/* The 'nail' holding the picture */
.photo-frame::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #444;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
  width: 100%;
  height: auto; /* This allows the image to maintain its aspect ratio */
  display: block;
  filter: sepia(0.1) contrast(0.95);
  transition: filter 0.4s ease;
}

/* --- The Hover Effect (Unchanged) --- */
.gallery-item:hover {
  z-index: 10;
  transform: translateY(0px) scale(1.05) rotate(0deg) !important; /* Lift and straighten */
}

.gallery-item:hover .photo-frame {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25),
    inset 0 0 0 4px var(--primary-gold);
}

.gallery-item:hover img {
  filter: sepia(0) contrast(1);
}

/* REVISED: Simplified transforms for the "hanging" effect. No grid placement needed. */
.gallery-item:nth-of-type(4n + 1) {
  transform: rotate(-2deg);
}
.gallery-item:nth-of-type(4n + 2) {
  transform: rotate(1.5deg) translateY(15px);
}
.gallery-item:nth-of-type(4n + 3) {
  transform: rotate(2.5deg);
}
.gallery-item:nth-of-type(4n + 4) {
  transform: rotate(-1deg) translateY(10px);
}

/* REVISED: Simplified and more effective responsive design */
@media (max-width: 1200px) {
  .gallery-wall {
    column-count: 3;
  }
}
@media (max-width: 992px) {
  .gallery-wall {
    column-count: 2;
  }
}
@media (max-width: 576px) {
  .gallery-wall {
    column-count: 1;
  }
}

/* ================================================== */
/* --- Premium Booking Modal Styles --- */
/* ================================================== */

/* General styling for our luxury modals */
/* Shared Luxury Styles */
.stay-modal-content {
  background: linear-gradient(145deg, #1a2332 0%, #0f1b2e 100%);
  border: 2px solid var(--primary-gold);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
}

.stay-modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(
    45deg,
    rgba(244, 208, 63, 0.1) 0%,
    rgba(212, 175, 55, 0.15) 100%
  );
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 85%);
  z-index: 1;
}

.stay-modal-content::after {
  content: "🍽️";
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  opacity: 0.3;
  z-index: 1;
}

.stay-modal-header {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding: 2rem;
}

.stay-modal-title {
  font-family: "Playfair Display", serif;
  color: var(--primary-gold);
  font-size: 2rem;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.dining-accent {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(244, 208, 63, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* === EVENT MODAL STYLES === */
.event-modal-content {
  background: linear-gradient(145deg, #2c1810 0%, #1a0f0a 100%);
  border: 2px solid var(--primary-gold);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
}

.event-modal-content::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(232, 180, 184, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.event-modal-content::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: conic-gradient(
    from 0deg,
    rgba(244, 208, 63, 0.1),
    rgba(212, 175, 55, 0.2),
    rgba(244, 208, 63, 0.1)
  );
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.event-modal-header {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  padding: 2rem;
}

.event-modal-title {
  font-family: "Playfair Display", serif;
  color: var(--primary-gold);
  font-size: 2rem;
  font-weight: 600;
  text-shadow: 0 2px 15px rgba(212, 175, 55, 0.4);
}

.banquet-flourish {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  background: linear-gradient(45deg, var(--primary-gold), var(--warm-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.6;
}

/* === SHARED MODAL STYLES === */
.modal-body {
  padding: 2.5rem;
  position: relative;
  z-index: 2;
}

.form-label {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.3);
  /* color: #fff; */
  padding: 1rem 1.2rem;
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25),
    0 8px 25px rgba(212, 175, 55, 0.2);
  color: #333;
  transform: translateY(-2px);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.2);
  cursor: pointer;
}

.modal-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.btn-close-gold {
  filter: invert(75%) sepia(80%) saturate(600%) hue-rotate(10deg)
    brightness(105%) contrast(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
  width: 2rem;
  height: 2rem;
}

.btn-close-gold:hover {
  opacity: 1;
  transform: scale(1.2) rotate(90deg);
}

/* Demo buttons */
.demo-btn {
  background: linear-gradient(
    135deg,
    var(--primary-gold) 0%,
    var(--warm-gold) 100%
  );
  border: none;
  color: var(--deep-blue);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 25px;
  margin: 1rem;
  transition: all 0.3s ease;
}

.demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Animated sparkles */
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-gold);
  border-radius: 50%;
  animation: sparkle 2s infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.sparkle:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}
.sparkle:nth-child(2) {
  top: 40%;
  right: 20%;
  animation-delay: 0.5s;
}
.sparkle:nth-child(3) {
  bottom: 30%;
  left: 25%;
  animation-delay: 1s;
}
.sparkle:nth-child(4) {
  bottom: 15%;
  right: 15%;
  animation-delay: 1.5s;
}

/* Room type icons */
.room-icon {
  display: inline-block;
  margin-right: 0.5rem;
  opacity: 0.7;
}

/* ... Your other page styles ... */

/* ================================================== */
/* --- Thakali Page Styles --- */
/* ================================================== */

/* --- Hero Section --- */
.thakali-hero {
  position: relative;
  height: 80vh;
  background: url("https://images.unsplash.com/photo-1565299585323-15331a3fb3f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1961&q=80")
    no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thakali-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Added a hint of red to the gradient */
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.7),
    rgba(140, 20, 20, 0.4),
    rgba(0, 0, 0, 0.6)
  );
}

.thakali-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.thakali-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 700;
  color: #fff; /* White title stands out against the rich background */
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
}

.thakali-hero-subtitle {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary-gold); /* Gold subtitle for contrast */
  opacity: 0.95;
}

/* --- Intro Section & Unique Divider --- */
.thakali-intro-section {
  padding: 100px 0;
  background: #fff;
}
.mandala-divider {
  height: 50px;
  width: 50px;
  margin: 1.5rem auto;
  background-color: var(--primary-gold);
  /* This creates the unique pattern! */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zm5.536 2.464L19 7.929l-1.464 1.464-1.465-1.464 1.465-1.465zm-11.072 0L5 7.929l-1.464 1.464-1.465-1.464 1.465-1.465zM12 5c.552 0 1 .448 1 1v2c0 .552-.448 1-1 1s-1-.448-1-1V6c0-.552.448-1 1-1zm0 10c-.552 0-1-.448-1-1v-2c0-.552.448-1 1-1s1 .448 1 1v2c0 .552-.448 1-1 1zM7.929 5L6.464 6.464 5 7.929l1.464 1.465 1.465-1.465zm8.143 0L14.607 6.464 13.142 5l1.465-1.464 1.465 1.464zm-9.607 9.607l-1.464 1.464L5 16.071l1.464-1.464 1.465 1.464zm11.072 0l1.464-1.464-1.464-1.465-1.465 1.465 1.465 1.465zM9 12c0-.552-.448-1-1-1H6c-.552 0-1 .448-1 1s.448 1 1 1h2c.552 0 1-.448 1-1zm10 0c0-.552-.448-1-1-1h-2c-.552 0-1 .448-1 1s.448 1 1 1h2c.552 0 1-.448 1-1z'/%3E%3C/svg%3E")
    no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zm5.536 2.464L19 7.929l-1.464 1.464-1.465-1.464 1.465-1.465zm-11.072 0L5 7.929l-1.464 1.464-1.465-1.464 1.465-1.465zM12 5c.552 0 1 .448 1 1v2c0 .552-.448 1-1 1s-1-.448-1-1V6c0-.552.448-1 1-1zm0 10c-.552 0-1-.448-1-1v-2c0-.552.448-1 1-1s1 .448 1 1v2c0 .552-.448 1-1 1zM7.929 5L6.464 6.464 5 7.929l1.464 1.465 1.465-1.465zm8.143 0L14.607 6.464 13.142 5l1.465-1.464 1.465 1.464zm-9.607 9.607l-1.464 1.464L5 16.071l1.464-1.464 1.465 1.464zm11.072 0l1.464-1.464-1.464-1.465-1.465 1.465 1.465 1.465zM9 12c0-.552-.448-1-1-1H6c-.552 0-1 .448-1 1s.448 1 1 1h2c.552 0 1-.448 1-1zm10 0c0-.552-.448-1-1-1h-2c-.552 0-1 .448-1 1s.448 1 1 1h2c.552 0 1-.448 1-1z'/%3E%3C/svg%3E")
    no-repeat center;
}

/* --- Thali Breakdown Section --- */
.thali-breakdown-section {
  padding: 100px 0;
  background: var(--elegant-gray);
}
.thali-main-img {
  max-width: 100%;
  border-radius: 50%;
  border: 10px solid #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.thali-component {
  background: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  height: 100%;
  border-left: 5px solid transparent;
  transition: all 0.3s ease;
}
.thali-component:hover {
  transform: translateY(-5px);
  border-left-color: var(--primary-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.thali-component-icon {
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}
.thali-component h5 {
  font-family: "Playfair Display", serif;
  color: var(--text-dark);
}
.thali-component p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* --- Reservation CTA Section --- */
.reservation-cta-section {
  padding: 100px 0;
  position: relative;
  background-color: var(--deep-blue);
  color: #fff;
}
.reservation-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  /* This creates the Dhaka pattern! */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23D4AF37' fill-opacity='0.4'%3E%3Cpath fill-rule='evenodd' d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 40h2l-2 2V40zm-2-2l2-2v2h-2zm40-40h2l-2 2V0zm0 40h2l-2 2V40zm-2-2l2-2v2h-2zM0 40h2l-2 2V40zm-2-2l2-2v2h-2zM2 0h-2v2l2-2z'/%3E%3C/g%3E%3C/svg%3E");
}
.reservation-cta-section .container {
  position: relative;
  z-index: 2;
}
.reservation-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}
.reservation-text {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cafe-hero {
  position: relative;
  height: 80vh;
  background: url("https://images.unsplash.com/photo-1497935586351-b67a49e012bf?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80")
    no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax Effect */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cafe-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.7),
    rgba(0, 0, 0, 0.5)
  );
}

.cafe-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.cafe-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
}

.cafe-hero-subtitle {
  font-size: 1.5rem;
  font-style: italic;
  opacity: 0.9;
}

/* --- Intro Section --- */
.cafe-intro-section {
  padding: 100px 0;
  background: #fff;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}
.gold-divider::before,
.gold-divider::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: rgba(212, 175, 55, 0.3);
  max-width: 100px;
}
.gold-divider i {
  font-size: 1.5rem;
  color: var(--primary-gold);
  padding: 0 1.5rem;
}

/* --- Menu Section --- */
.cafe-menu-section {
  padding: 100px 0;
  background: var(--elegant-gray);
}
.menu-tabs .nav-link {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--text-light);
  background: transparent;
  border: 2px solid transparent;
  margin: 0 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.menu-tabs .nav-link.active,
.menu-tabs .nav-link:hover {
  color: var(--deep-blue);
  background: var(--primary-gold);
}
.menu-column {
  padding: 0 2rem;
}
.menu-item {
  margin-bottom: 2rem;
}
.menu-item-header {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.5rem;
}
.menu-item-header h5 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--text-dark);
  white-space: nowrap;
  margin-right: 1rem;
}
.menu-dots {
  flex-grow: 1;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.2);
}
.menu-price {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--primary-gold);
  white-space: nowrap;
  margin-left: 1rem;
}
.menu-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* --- Signature Section --- */
.signature-section {
  padding: 100px 0;
  background: #fff;
}
.signature-image {
  position: relative;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.signature-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary-gold);
  transition: all 0.4s ease;
}
.signature-image:hover::before {
  transform: scale(0.95);
}
.signature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.signature-text {
  padding-left: 3rem;
}
.signature-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.signature-tags {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
}
.signature-tags span {
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary-gold);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Ambiance Gallery --- */
.ambiance-gallery-section {
  padding: 100px 0;
  background: var(--elegant-gray);
}
.ambiance-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1.5rem;
}
.ambiance-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.ambiance-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ambiance-item:hover img {
  transform: scale(1.05);
}
/* Creative grid layout */
.item-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.item-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.item-3 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}
.item-4 {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
}

/* --- Location Section --- */
.location-section {
  padding: 0;
  background: var(--deep-blue);
}
.location-info {
  padding: 4rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}
.location-text {
  opacity: 0.9;
  margin-bottom: 2rem;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.info-item i {
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-top: 5px;
}
.info-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.info-item span {
  opacity: 0.8;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  /* This makes the map match your dark theme! */
  filter: grayscale(1) contrast(1.2) invert(1);
}
.hotel-hero {
  position: relative;
  height: 75vh;
  background: url("https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1974&q=80")
    no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hotel-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.6),
    rgba(0, 0, 0, 0.4)
  );
}
.hotel-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.hotel-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
.hotel-hero-subtitle {
  font-size: 1.4rem;
  font-style: italic;
  opacity: 0.9;
}

/* --- Ethos Section --- */
.ethos-section {
  padding: 120px 0;
  background: #fff;
}
.ethos-content {
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 3rem;
  position: relative;
}
.ethos-content::before,
.ethos-content::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-color: var(--primary-gold);
  border-style: solid;
}
.ethos-content::before {
  top: -15px;
  left: -15px;
  border-width: 2px 0 0 2px;
}
.ethos-content::after {
  bottom: -15px;
  right: -15px;
  border-width: 0 2px 2px 0;
}
.ethos-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* --- Interactive Showcase Section --- */
.showcase-interactive-section {
  padding: 0;
  background: var(--deep-blue);
}
.showcase-panels {
  display: flex;
  width: 100%;
  min-height: 60vh;
}
.panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  flex: 0.5;
  margin: 10px;
  position: relative;
  transition: flex 0.7s ease-in-out;
}
.panel h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  opacity: 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  transition: opacity 0.3s ease-in 0.4s;
}
.panel.active {
  flex: 5;
}
.panel.active h3 {
  opacity: 1;
}

/* --- Pillars Section --- */
.pillars-section {
  padding: 120px 0;
  background: var(--elegant-gray);
}
.pillar-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.pillar-icon {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}
.pillar-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--text-dark);
}
.pillar-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* --- Team Section --- */
.team-section {
  padding: 100px 0;
  background: #fff;
}
.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary-gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  margin-bottom: 1.5rem;
}
.team-name {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}
.team-title {
  color: var(--text-light);
  display: block;
  margin-bottom: 1.5rem;
}
.team-quote {
  font-style: italic;
  font-size: 1.1rem;
}

/* --- Hotel CTA Section --- */
.hotel-cta-section {
  padding: 100px 0;
  background: var(--gradient-dark);
  color: #fff;
}

/* ================================================== */
/* --- Contact Us Page Styles --- */
/* ================================================== */

/* --- Hero Section --- */
.contact-hero {
  position: relative;
  height: 60vh;
  background: url("https://images.unsplash.com/photo-1563911302254-52378a5068f6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1932&q=80")
    no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.6),
    rgba(0, 0, 0, 0.4)
  );
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.contact-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
}
.contact-hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* --- Main Contact Section --- */
.contact-main-section {
  padding: 120px 0;
  background-color: var(--elegant-gray);
}
.contact-info-wrapper,
.contact-form-wrapper {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  height: 100%;
}
.contact-section-title {
  font-family: "Playfair Display", serif;
  color: var(--text-dark);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.contact-section-intro {
  color: var(--text-light);
  margin-bottom: 2rem;
}
.info-block {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.info-block i {
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-top: 5px;
}
.info-block h5 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}
.info-block span {
  color: var(--text-light);
}
.contact-divider {
  border-color: rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}
.department-title {
  font-family: "Playfair Display", serif;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.department-link {
  display: block;
  text-decoration: none;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.department-link:hover {
  color: var(--primary-gold);
  transform: translateX(5px);
}
.contact-form-wrapper .form-label {
  font-weight: 500;
  color: var(--text-dark);
}
.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
  background-color: var(--elegant-gray);
  border: 1px solid #ddd;
}
.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
  background-color: #fff;
}

/* --- Map Section --- */
.map-section {
  position: relative;
  height: 500px;
}
.map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.2) invert(1);
}
.map-overlay-box {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  max-width: 400px;
}
.map-overlay-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--primary-gold);
}

.wedding-section {
  background: #fff;
  overflow: hidden;
}

.wedding-hero {
  position: relative;
  height: 70vh;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.4),
      rgba(212, 175, 55, 0.3)
    ),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wedding-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3),
    rgba(212, 175, 55, 0.2)
  );
}

.wedding-hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
}

.wedding-title {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.wedding-subtitle {
  font-size: 1.4rem;
  opacity: 0.95;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.wedding-content {
  padding: 120px 0;
}

.story-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.story-title::after {
  content: "💕";
  position: absolute;
  right: -50px;
  top: 0;
  font-size: 2rem;
}

.story-text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.wedding-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.highlight-item i {
  color: var(--romantic-pink); /* Using theme variable */
  font-size: 1.5rem;
  width: 30px;
}

.highlight-item div {
  display: flex;
  flex-direction: column;
}

.highlight-item strong {
  color: var(--text-dark);
  font-size: 1.1rem;
}

.highlight-item span {
  color: var(--text-light);
  font-size: 0.95rem;
}

.wedding-image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 500px;
}

.wedding-grid-item.large {
  grid-row: 1 / -1;
}

.wedding-grid-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.wedding-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.wedding-grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wedding-grid-item:hover .wedding-grid-image {
  transform: scale(1.05);
}

.wedding-packages {
  margin-top: 100px;
}

.packages-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 3rem;
  position: relative;
}

.packages-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, var(--primary-gold), var(--romantic-pink));
}

.package-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.package-card.premium {
  border: 3px solid var(--primary-gold);
  transform: scale(1.05);
}

.package-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.package-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-img {
  transform: scale(1.1);
}

.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-gold);
  color: var(--deep-blue);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.package-badge.premium {
  background: linear-gradient(45deg, var(--primary-gold), #f4d03f);
}

.package-badge.royal {
  background: linear-gradient(45deg, #8e24aa, var(--romantic-pink));
  color: white;
}

.package-content {
  padding: 2rem;
  flex-grow: 1; /* Makes the footer align */
  display: flex;
  flex-direction: column;
}

.package-name {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.package-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1; /* Pushes the price to the bottom */
}

.package-features {
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.feature i {
  color: #4caf50;
  font-size: 1rem;
}

.package-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-align: center;
  padding: 1rem;
  background: var(--elegant-gray);
  border-radius: 10px;
  margin-top: auto; /* Aligns to the bottom */
}

.wedding-cta {
  margin-top: 100px;
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05),
    rgba(233, 30, 99, 0.05)
  );
  border-radius: 30px;
  text-align: center;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.wedding-gallery-section {
  padding-top: 100px;
  background-color: var(
    --soft-blush
  ); /* Using the romantic blush color from the theme */
  border-radius: 30px;
  margin-top: 100px;
}

@media (max-width: 992px) {
  /* --- Homepage --- */
  .experience-grid {
    grid-template-columns: 1fr;
    height: auto;
    padding: 0 1rem;
  }
  .small-cards-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .experience-card {
    height: 500px;
  }
  .large-card .card-title {
    font-size: 2.2rem;
  }
  .small-cards-container .card-description {
    display: block;
  }
  .gallery-wall {
    column-count: 3;
  }

  /* --- Sub Pages --- */
  .cafe-hero-title,
  .thakali-hero-title,
  .hotel-hero-title,
  .contact-hero-title,
  .banquet-hero-title {
    font-size: 3.5rem;
  }
  .signature-text {
    padding-left: 1rem;
    margin-top: 2rem;
  }
  .ambiance-gallery {
    grid-template-columns: 1fr;
  }
  .ambiance-item {
    grid-column: auto;
    grid-row: auto;
  }
  .thali-main-img {
    margin-bottom: 3rem;
  }
  .map-overlay-box {
    left: 5%;
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  /* --- General --- */
  .section-title {
    font-size: 2.2rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }

  /* --- Homepage --- */
  .banner-content h1 {
    font-size: 2.5rem;
  }
  .banner-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .banner-section,
  .banquet-hero,
  .banquet-cta-section {
    background-attachment: scroll;
  }
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-text {
    padding-right: 0;
  }
  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .pool-title,
  .wedding-title {
    font-size: 2.5rem;
  }
  .pool-text {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .pool-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .wedding-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 150px 150px;
  }
  .wedding-grid-item.large {
    grid-row: 1;
  }
  .story-title::after {
    position: static;
    display: block;
    text-align: center;
    margin-top: 1rem;
  }
  .gallery-wall {
    column-count: 2;
  }
  .newsletter-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .newsletter-text,
  .newsletter-form {
    min-width: 100%;
  }
  .footer-legal {
    text-align: center;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
  }
  .copyright-text {
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .modal-dialog {
    padding: 0 1rem;
  }
  .modal-luxury .modal-title {
    font-size: 1.5rem;
  }
  .modal-luxury .modal-header,
  .modal-luxury .modal-body,
  .modal-luxury .modal-footer {
    padding: 1.25rem;
  }
  .event-modal-content::before,
  .event-modal-content::after {
    display: none;
  }

  /* --- Sub Pages --- */
  .cafe-hero,
  .thakali-hero,
  .hotel-hero,
  .contact-hero,
  .banquet-hero {
    height: 70vh;
  }
  .cafe-hero-title,
  .thakali-hero-title,
  .hotel-hero-title,
  .contact-hero-title,
  .banquet-hero-title {
    font-size: 2.8rem;
  }
  .cafe-hero-subtitle,
  .thakali-hero-subtitle,
  .hotel-hero-subtitle,
  .contact-hero-subtitle,
  .banquet-hero-subtitle {
    font-size: 1.1rem;
  }
  .menu-tabs .nav-link {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }
  .menu-column {
    padding: 0;
  }
  .signature-image-container {
    margin-bottom: 2rem;
  }
  .location-info {
    padding: 2.5rem;
  }

  /* --- Our Hotel Page Responsive --- */
  .ethos-content {
    padding: 2rem;
  }
  .showcase-panels {
    flex-direction: column;
    min-height: auto;
  }
  .panel {
    height: 200px;
    flex: 1;
    margin: 5px 10px;
  }
  .panel.active {
    flex: 3;
  }
  .panel h3 {
    opacity: 1;
    font-size: 1.2rem;
  }

  /* --- Contact Page --- */
  .contact-info-wrapper {
    margin-bottom: 2rem;
  }
  .map-overlay-box {
    left: 50%;
    top: auto;
    bottom: 2rem;
    transform: translateX(-50%);
    width: 90%;
    max-width: 100%;
    text-align: center;
  }

  /* --- Banquet Page --- */
  .venue-card {
    margin-bottom: 2rem;
  }
  .package-card-banquet.featured {
    transform: scale(1);
  } /* Disable zoom on mobile to save space */
}

@media (max-width: 576px) {
  /* --- Homepage --- */
  .experience-card {
    height: 450px;
  }
  .gallery-wall {
    column-count: 1;
  }
}

.whatsapp-chat-icon {
    position: fixed; /* Fixes the icon to the viewport */
    bottom: 25px;    /* 25px from the bottom */
    right: 25px;     /* 25px from the right */
    z-index: 1000;   /* Ensures it stays on top of other content */
    
    /* Styling the button itself */
    background-color: #25D366; /* Official WhatsApp Green */
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Makes it a perfect circle */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    
    /* Centering the icon inside the circle */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* The icon's font size */
    font-size: 32px;
    
    /* Smooth transition for hover effect */
    transition: all 0.3s ease;
}

.whatsapp-chat-icon:hover {
    transform: translateY(-5px) scale(1.1); /* Lifts and enlarges the icon on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #fff; /* Ensures text color doesn't change on hover */
}
.event-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.event-card-image-link {
    display: block;
    position: relative;
}

.event-card-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-card-image {
    transform: scale(1.05);
}

.event-card-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-gold);
    color: var(--deep-blue);
    border-radius: 10px;
    text-align: center;
    padding: 5px 10px;
    line-height: 1.1;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.event-card-date-badge .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.event-card-date-badge .day {
    display: block;
    font-size: 1.8rem;
}

.event-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.event-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-card-title a:hover {
    color: var(--primary-gold);
}

.event-card-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.event-card-excerpt {
    flex-grow: 1;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* ================================================== */
/* --- Event Single Detail Page Styles --- */
/* ================================================== */

.event-detail-hero-date {
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
    color: var(--primary-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
}

.event-sidebar-widget {
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: sticky;
    top: 120px; /* Adjust based on your sticky nav height */
}

.event-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.event-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.event-details-list li:last-child {
    border-bottom: none;
}

.event-details-list i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 5px;
}

.event-details-list strong {
    display: block;
    color: var(--text-dark);
}

.event-details-list span {
    color: var(--text-light);
}

.event-main-content h2, .event-main-content h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 2rem;
    margin-bottom: 1rem;
}


.team-grid-section .team-member-card {
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    border-top: 4px solid transparent;
}

.team-grid-section .team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(44,44,44,0.1);
    border-top-color: var(--primary-gold);
}

.team-photo-wrapper {
    margin-bottom: 1.5rem;
}

.team-member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--elegant-gray);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.4s ease;
}

.team-member-card:hover .team-member-photo {
    transform: scale(1.05);
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text-dark);
}

.team-title {
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}
.welcome-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 46, 0.8); /* Dark blue overlay */
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998; /* Below the main loader */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.welcome-popup-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.welcome-popup-content {
    position: relative;
    background-color: #fff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.welcome-popup-overlay.is-visible .welcome-popup-content {
    transform: scale(1);
}

.welcome-popup-content img {
    max-width: 100%;
    max-height: 80vh; /* Limit image height */
    border-radius: 10px;
    display: block;
}

.welcome-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-gold);
    color: var(--deep-blue);
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.welcome-popup-close:hover {
    transform: scale(1.1) rotate(90deg);
    background-color: #fff;
}

#site-loader {
    background-image: url('../images/loader.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}