html, body {
  max-width: 100%;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'alido' !important;
  letter-spacing: 1px;
  color: #3d3931;
}

section {
  /* Reverted overflow-x: hidden to prevent clipping bugs */
}

.container, .container-fluid {
  /* Reverted overflow-y: hidden to prevent clipping dropdowns/shadows */
}

.nav-logo {
  width: 50%;
  height: auto;
}

@media (min-width: 992px) {
  .nav-logo {
    height: 50px;
    width: auto;
  }
}


* {
  box-sizing: border-box;
  /* border: 1px solid black; */
}

:root {
  /* --c1:#3b8346;  */
  --c1: #E9175E;


}

/* html {
  scroll-behavior: smooth;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
} */

/* @font-face {
  font-family: 'Philosopher Regular';
  src: local('Philosopher Regular'), url('Philosopher-Regular.woff') format('woff');
  } */
.c1 {
  color: var(--c1) !important;
}

.c2 {
  color: var(--c2) !important;
}

.c3 {
  color: var(--c3) !important;
}

.c4 {
  color: var(--c4) !important;
}

.bg {
  background-color: var(--bg);
}

/* .c5{
  color: var(--c5) !important;
} */
.w {
  color: #fff !important;
}

.b {
  color: black !important;
}

a {
  text-decoration: none !important;
}

.ls {
  letter-spacing: 1px;
}

.lh {
  line-height: 2rem !important;
}

p {
  color: #3d3931;
  line-height: 1.5rem;
  font-size: 16px;
  letter-spacing: 1px;
}

/* --- Elegant Button Animation --- */
.btn-outline-c1 {
  color: var(--c1);
  border: 1px solid var(--c1);
  background-color: transparent;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 5px;
}

.btn-outline-c1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--c1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.btn-outline-c1:hover {
  color: #fff;
  box-shadow: 0 4px 15px rgba(233, 23, 94, 0.3);
}

.btn-outline-c1:hover::before {
  width: 100%;
}

.btn-fill-c1 {
  color: #fff;
  border: 1px solid var(--c1);
  background-color: transparent;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 5px;
}

.btn-fill-c1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.btn-fill-c1:hover {
  color: var(--c1);
}

.btn-fill-c1:hover::before {
  width: 0%;
}

/* --- Elegant Navbar Link Underline --- */
.navbar-nav .nav-link {
  position: relative;
  transition: color 0.3s ease;
  margin: 0 5px;
}

.navbar-nav .nav-link:hover {
  color: var(--c1) !important;
}

/* Use ::before to avoid conflicting with the Bootstrap dropdown caret (::after) */
.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: var(--c1);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before {
  width: 100%;
}

/* --- Elegant Dropdown Animation --- */
/* Enable hover for desktop instead of click for a premium feel */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInSlideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  }
}

.dropdown-menu {
  border-radius: 8px;
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
  margin-top: 0; /* Removed the margin gap so hover doesn't break */
  border: 1px solid rgba(0,0,0,0.05) !important;
}

/* Remove Bootstrap dropdown caret */
.dropdown-toggle::after {
  display: none !important;
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: 'Philosopher', serif;
}

.dropdown-item:hover {
  background-color: transparent;
  color: var(--c1);
  padding-left: 2rem; /* Slight nudge to the right */
}

.dropdown-item::before {
  content: "→";
  position: absolute;
  left: 0.6rem;
  color: var(--c1);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.dropdown-item:hover::before {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Remove default Bootstrap focus box-shadow on hamburger menu */
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* --- Premium Layout Styles --- */

/* Typography */
.font-philosopher {
  font-family: 'Philosopher', serif;
}

/* Navbar */
.navbar-premium {
  background-color: rgba(10, 10, 10, 0.8);
}
.brand-text {
  letter-spacing: 2px;
}
.nav-link-premium {
  font-size: 15px;
  color: #ffffff !important;
  transition: color 0.3s ease;
}
.nav-link-premium:hover {
  color: #c91c3d !important;
}
.nav-link-premium.active {
  color: #c91c3d !important;
  border-bottom: 2px solid #c91c3d;
  padding-bottom: 4px;
}
.btn-primary-premium {
  background-color: #c91c3d;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary-premium:hover {
  background-color: #a81732;
  color: #fff;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  height: auto;
  overflow: hidden;
  z-index: 1;
  background-color: #fff;
  border-bottom-left-radius: 50% clamp(30px, 5vw, 80px);
  border-bottom-right-radius: 50% clamp(30px, 5vw, 80px);
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 130px;
    justify-content: center;
  }
}
.hero-bg-video {
  top: 0;
  left: 0;
  z-index: -1;
  object-fit: cover;
}
.hero-overlay {
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.65); /* Solid dark overlay for perfect readability */
  z-index: 0;
}
.hero-section h1 {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
}
.hero-subtitle {
  color: #E8C678; /* Changed to Gold for visibility */
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}
.deco-line {
  height: 1px;
  width: 40px;
  background-color: #E8C678;
}
.deco-diamond {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border: 1px solid #E8C678;
}
.hero-tagline {
  color: #E8C678;
  font-family: sans-serif;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}
.hero-desc {
  max-width: 500px;
  font-size: 1rem;
  line-height: 1.8;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}
.btn-outline-glass {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}
.btn-outline-glass:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Curve & Lotus Badge */
.lotus-badge {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lotus-icon {
  width: 45px;
}

/* --- Added Custom Styles --- */

.bg-warm-white {
  background-color: #fbfbf9; /* Warm ivory white */
}

.bg-primary-brand {
  background-color: var(--c1); /* #E9175E */
}

.letter-spacing-1 {
  letter-spacing: 1.5px;
}

.tracking-wide {
  letter-spacing: 2px;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

/* About Section */
.about-section {
  background-color: transparent;
}
.about-bg-split {
  background: linear-gradient(to bottom, #ffffff 42%, #FAF8F2 42%);
}

/* About Section Images */
.about-image-large, .about-image-small {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.about-image-large {
  aspect-ratio: 4 / 5;
  height: auto;
}
.about-image-small {
  aspect-ratio: 1 / 1;
  height: auto;
}

@media (min-width: 992px) {
  .about-image-large {
    aspect-ratio: auto;
    height: 650px;
  }
  .about-image-small {
    aspect-ratio: auto;
    height: 300px;
  }
}

.about-img-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.watch-tour-btn {
  transition: opacity 0.3s ease;
}
.watch-tour-btn:hover {
  opacity: 0.7;
}

.play-icon-circle {
  transition: all 0.3s ease;
}
.watch-tour-btn:hover .play-icon-circle {
  background-color: #000;
  color: #fff;
}

/* Halls Section */
.hall-card {
  transition: transform 0.5s ease;
}

/* Gallery Section */
.gallery-item img {
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.pinterest-gallery .gallery-col {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 100%;
}
@media (max-width: 991px) {
  #navbarCollapse.collapse,
  #navbarCollapse.collapsing {
    position: absolute !important;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 2rem;
    border-radius: 1rem;
    margin: 0.5rem 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
}

.navbar-premium {
  transition: all 0.4s ease;
}

.navbar-scrolled {
  position: fixed !important;
  top: 0;
  background-color: rgba(18, 18, 18, 0.98) !important;
  border-bottom: none !important;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  padding: 1rem 0 !important;
}

/* Amenities Section */
.amenities-section {
  overflow: hidden;
}

.section-label {
  color: #E9175E;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Decorative lines for section label */
.label-deco-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}
.label-deco-line {
  height: 1px;
  width: 60px;
  background-color: rgba(233, 23, 94, 0.3);
}
.label-deco-icon {
  color: #E9175E;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.label-deco-icon i {
  font-size: 0.4rem;
}
.label-deco-icon svg {
  width: 24px;
  height: 24px;
  fill: #E9175E;
}

/* Diamond decoration */
.diamond-deco {
  width: 10px;
  height: 10px;
  border: 1.5px solid #E9175E;
  transform: rotate(45deg);
  margin: 0 auto;
}

.amenity-card {
  background-color: #ffffff;
  border: 1px solid rgba(233, 23, 94, 0.1);
  border-radius: 16px;
  padding: 3rem 2rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(233, 23, 94, 0.03);
  position: relative;
  z-index: 1;
  text-align: center;
}

.amenity-icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px dashed rgba(233, 23, 94, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem auto;
  transition: all 0.4s ease;
  position: relative;
}

/* Subtle glow behind icon */
.amenity-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  border-radius: 50%;
  background-color: rgba(233, 23, 94, 0.04);
  transition: all 0.4s ease;
  z-index: -1;
}

.amenity-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.amenity-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
  transition: color 0.3s ease;
  position: relative;
  font-family: 'Philosopher', serif;
}

.amenity-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 2px;
  background-color: #E9175E;
  transition: width 0.3s ease;
}

.amenity-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (hover: hover) {
  .amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(233, 23, 94, 0.08);
    border-color: rgba(233, 23, 94, 0.3);
  }

  .amenity-card:hover .amenity-icon-wrapper {
    border-style: solid;
    border-color: rgba(233, 23, 94, 0.2);
  }
  
  .amenity-card:hover .amenity-icon-wrapper::before {
    width: 100%;
    height: 100%;
    background-color: rgba(233, 23, 94, 0.08);
  }

  .amenity-card:hover .amenity-icon {
    transform: scale(1.15);
  }

  .amenity-card:hover .amenity-title {
    color: #E9175E;
  }
  
  .amenity-card:hover .amenity-title::after {
    width: 50px;
  }
}

/* Pinterest Style Gallery */
.pinterest-gallery {
  column-count: 2;
  column-gap: 1rem;
}
@media (min-width: 768px) {
  .pinterest-gallery {
    column-count: 3;
    column-gap: 1.5rem;
  }
}
.pinterest-gallery .gallery-col {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 100%;
}

.hero-section-short {
  min-height: 45vh !important;
  border-radius: 0 !important;
}
@media (max-width: 991px) {
  .hero-section-short {
    min-height: 35vh !important;
    padding-top: 100px;
    padding-bottom: 50px;
  }
}

/* --- Elegant Simple Footer with Primary Color Tone --- */
.footer-section {
  background: linear-gradient(180deg, #180912 0%, #0d040a 100%);
  border-top: 1px solid rgba(233, 23, 94, 0.2);
  position: relative;
}

.footer-section .footer-accent-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  max-width: 450px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c1), transparent);
  box-shadow: 0 0 10px rgba(233, 23, 94, 0.5);
}

.footer-text-group {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.75);
}

.footer-separator {
  color: var(--c1);
  opacity: 0.6;
  font-size: 12px;
}

.footer-designed {
  color: rgba(255, 255, 255, 0.75);
}

.craftesmends-link {
  color: var(--c1) !important;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 2px 4px;
  border-radius: 4px;
}

.craftesmends-link:hover {
  color: #ff3377 !important;
  text-shadow: 0 0 10px rgba(233, 23, 94, 0.6);
  text-decoration: underline !important;
}

.footer-social-links {
  margin-top: 8px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(233, 23, 94, 0.08);
  border: 1.5px solid rgba(233, 23, 94, 0.4);
  color: var(--c1) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.footer-social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.footer-social-btn:hover {
  background: var(--c1);
  border-color: var(--c1);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(233, 23, 94, 0.45);
}

.footer-social-btn:hover svg {
  transform: scale(1.12);
}

.footer-social-btn:active {
  transform: translateY(-1px);
}

