/* =============================================
   SURABHI PALACE - Main Stylesheet
   Premium South Indian Wedding Hall Website
   ============================================= */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&family=Noto+Serif+Tamil:wght@400;600;700&display=swap');

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --gold:        #C89B3C;
  --gold-light:  #E8C76A;
  --gold-dark:   #A07828;
  --maroon:      #6B0F1A;
  --maroon-dark: #4A0A12;
  --maroon-light:#9B1A2A;
  --cream:       #FFF8F1;
  --cream-dark:  #F5EDE0;
  --text-dark:   #3A2A1F;
  --text-mid:    #5A3A2A;
  --text-light:  #8A6A5A;
  --white:       #FFFFFF;
  --shadow-gold: 0 4px 24px rgba(200,155,60,0.25);
  --shadow-dark: 0 8px 32px rgba(58,42,31,0.18);
  --gradient-gold: linear-gradient(135deg, #C89B3C 0%, #E8C76A 50%, #A07828 100%);
  --gradient-maroon: linear-gradient(135deg, #6B0F1A 0%, #9B1A2A 100%);
  --font-heading: 'Cinzel', serif;
  --font-body:    'Poppins', sans-serif;
  --font-tamil:   'Noto Serif Tamil', serif;
  --border-radius: 16px;
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   GLOBAL RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

ul { list-style: none; padding: 0; margin: 0; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 1rem;
}

.gold-text { color: var(--gold); }
.maroon-text { color: var(--maroon); }

/* =============================================
   DECORATIVE DIVIDER
   ============================================= */
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 1rem 0 2.5rem;
}

.divider-ornament::before,
.divider-ornament::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.divider-ornament .ornament-icon {
  color: var(--gold);
  font-size: 1.4rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-gold {
  background: var(--gradient-gold);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #E8C76A 0%, #C89B3C 50%, #E8C76A 100%);
  box-shadow: 0 6px 32px rgba(200,155,60,0.45);
  transform: translateY(-2px);
  color: var(--maroon-dark);
}

.btn-maroon {
  background: var(--gradient-maroon);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 20px rgba(107,15,26,0.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-maroon:hover {
  background: linear-gradient(135deg, #9B1A2A 0%, #6B0F1A 100%);
  box-shadow: 0 6px 28px rgba(107,15,26,0.45);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-outline-gold:hover {
  background: var(--gradient-gold);
  color: var(--maroon-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* =============================================
   NAVBAR
   ============================================= */
#mainNav {
  background: rgba(58, 42, 31, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}

#mainNav.scrolled {
  background: rgba(58, 42, 31, 0.99);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.navbar-brand .brand-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.navbar-brand .brand-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream) !important;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold) !important;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 60%;
}

.navbar-toggler {
  border: 1px solid var(--gold);
  padding: 0.4rem 0.6rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C89B3C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--text-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    url('https://images.unsplash.com/photo-1583037189850-1921ae7c6c22?w=1920&q=80');
  background-size: cover;
  background-position: center;
  animation: slowZoom 20s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes slowZoom {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58,42,31,0.82) 0%,
    rgba(107,15,26,0.65) 40%,
    rgba(200,155,60,0.25) 100%
  );
}

.hero-border-top,
.hero-border-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 6px;
  background: var(--gradient-gold);
  z-index: 2;
}

.hero-border-top  { top: 0; }
.hero-border-bottom { bottom: 0; }

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 2rem 1rem;
}

.hero-tamil-text {
  font-family: var(--font-tamil);
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
}

.hero-title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-location {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: var(--gold-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,248,241,0.9);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-badge {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200,155,60,0.4);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-badge i { color: var(--gold); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   SECTION WRAPPERS & COMMON PATTERNS
   ============================================= */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-header { text-align: center; margin-bottom: 0.5rem; }

.bg-cream      { background-color: var(--cream); }
.bg-cream-dark { background-color: var(--cream-dark); }
.bg-maroon     { background-color: var(--maroon); }
.bg-dark-wood  { background-color: var(--text-dark); }

/* Kolam / temple border decoration */
.kolam-border {
  border-top: 3px solid transparent;
  border-image: var(--gradient-gold) 1;
  padding-top: 1.5rem;
}

/* Gold border card */
.card-luxury {
  background: var(--white);
  border: 1px solid rgba(200,155,60,0.2);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-dark);
  transition: var(--transition);
  overflow: hidden;
}

.card-luxury:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(200,155,60,0.2);
  border-color: var(--gold);
}

/* Glass card */
.card-glass {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(200,155,60,0.25);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-dark);
  transition: var(--transition);
}

.card-glass:hover {
  background: rgba(255,255,255,0.75);
  transform: translateY(-4px);
  border-color: var(--gold);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
#about { background-color: var(--cream-dark); }

.about-img-wrap {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(107,15,26,0.25);
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-wrap:hover img { transform: scale(1.04); }

.about-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-gold);
  color: var(--text-dark);
  border-radius: 12px;
  padding: 12px 18px;
  text-align: center;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-gold);
}

.about-img-badge .num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.about-img-badge .label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-tag {
  display: inline-block;
  background: rgba(200,155,60,0.12);
  color: var(--gold-dark);
  border: 1px solid rgba(200,155,60,0.35);
  border-radius: 50px;
  padding: 0.3rem 1rem;
  font-size: 0.78rem;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
#why-choose { background: var(--cream); }

.why-card {
  background: var(--white);
  border: 1px solid rgba(200,155,60,0.15);
  border-radius: var(--border-radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(200,155,60,0.2);
  border-color: var(--gold);
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(200,155,60,0.12), rgba(200,155,60,0.22));
  border: 2px solid rgba(200,155,60,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gradient-gold);
  color: var(--text-dark);
  border-color: var(--gold);
}

.why-card h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* =============================================
   FACILITIES
   ============================================= */
#facilities { background: var(--cream-dark); }

.facility-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid rgba(200,155,60,0.15);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  transition: var(--transition);
  height: 100%;
}

.facility-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(200,155,60,0.15);
  transform: translateX(4px);
}

.facility-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(200,155,60,0.15), rgba(200,155,60,0.25));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.facility-item:hover .facility-icon {
  background: var(--gradient-gold);
  color: var(--text-dark);
}

.facility-item span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* =============================================
   EVENTS
   ============================================= */
#events { background: var(--maroon); }

.events-section-title { color: var(--gold); }

.event-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,155,60,0.25);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.event-card:hover {
  background: rgba(200,155,60,0.15);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.event-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  display: block;
}

.event-card h6 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0;
  letter-spacing: 0.04em;
}

/* =============================================
   GALLERY PREVIEW
   ============================================= */
#gallery-preview { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 12px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107,15,26,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials { background: var(--cream-dark); }

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(200,155,60,0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(200,155,60,0.15);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200,155,60,0.18);
  border-color: var(--gold);
}

.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--maroon);
}

.author-event {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* =============================================
   FAQ
   ============================================= */
#faq { background: var(--cream); }

.accordion-item {
  background: var(--white) !important;
  border: 1px solid rgba(200,155,60,0.2) !important;
  border-radius: 10px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-button {
  background: var(--white) !important;
  color: var(--text-dark) !important;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1.1rem 1.5rem;
  border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
  color: var(--maroon) !important;
  background: rgba(200,155,60,0.06) !important;
  box-shadow: none !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C89B3C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
  padding: 1rem 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  border-top: 1px solid rgba(200,155,60,0.15);
}

/* =============================================
   MAP SECTION
   ============================================= */
#map-section { background: var(--cream-dark); }

.map-wrap {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  border: 3px solid rgba(200,155,60,0.3);
}

.map-wrap iframe { display: block; width: 100%; }

/* =============================================
   CONTACT CTA STRIP
   ============================================= */
#contact-cta {
  background: var(--gradient-maroon);
  padding: 70px 0;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-title span { color: var(--gold); }

.cta-text {
  color: rgba(255,248,241,0.85);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--text-dark);
  padding: 60px 0 0;
  color: var(--cream);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,248,241,0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
}

.footer-text {
  font-size: 0.88rem;
  color: rgba(255,248,241,0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(200,155,60,0.25);
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,248,241,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-links a i { font-size: 0.7rem; color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  color: rgba(255,248,241,0.75);
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  background: rgba(0,0,0,0.25);
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,248,241,0.5);
  border-top: 1px solid rgba(200,155,60,0.15);
}

.footer-bottom a {
  color: var(--gold);
  opacity: 0.8;
}

.footer-bottom a:hover { opacity: 1; }

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  text-decoration: none;
  border: none;
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

.float-whatsapp {
  background: #25D366;
  color: #fff;
}

.float-call {
  background: var(--gradient-gold);
  color: var(--text-dark);
}

/* =============================================
   SCROLL TO TOP
   ============================================= */
#scrollTop {
  position: fixed;
  bottom: 28px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-maroon);
  color: var(--white);
  border: none;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(107,15,26,0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollTop.visible {
  opacity: 1;
  visibility: visible;
}

#scrollTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(107,15,26,0.4);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible { opacity: 1; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* =============================================
   PAGE HERO (Inner Pages)
   ============================================= */
.page-hero {
  background: var(--gradient-maroon);
  padding: 130px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C89B3C' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-hero-title span { color: var(--gold); }

.page-hero-subtitle {
  font-size: 1rem;
  color: rgba(255,248,241,0.8);
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
}

.page-hero-border {
  height: 4px;
  background: var(--gradient-gold);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/* breadcrumb */
.breadcrumb-item a { color: var(--gold); }
.breadcrumb-item.active { color: rgba(255,248,241,0.7); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(200,155,60,0.5); }

/* =============================================
   GALLERY PAGE
   ============================================= */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: var(--white);
  border: 2px solid rgba(200,155,60,0.3);
  color: var(--text-mid);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-gold);
  border-color: var(--gold);
  color: var(--text-dark);
  box-shadow: var(--shadow-gold);
}

.masonry-grid {
  columns: 3 300px;
  column-gap: 16px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.masonry-item:hover img { transform: scale(1.06); }

.masonry-item .item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107,15,26,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.masonry-item:hover .item-overlay { opacity: 1; }

.item-overlay .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(200,155,60,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.item-overlay .item-label {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(200,155,60,0.9);
  color: var(--text-dark);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover { background: var(--gold); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(200,155,60,0.85);
  color: var(--text-dark);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold); transform: translateY(-50%) scale(1.1); }

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  background: rgba(0,0,0,0.5);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-info-card {
  background: var(--white);
  border: 1px solid rgba(200,155,60,0.2);
  border-radius: var(--border-radius);
  padding: 1.75rem;
  height: 100%;
  transition: var(--transition);
  text-align: center;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(200,155,60,0.18);
  border-color: var(--gold);
}

.contact-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-gold);
}

.contact-info-card h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 0.5rem;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-info-card a:hover { color: var(--gold); }

.hours-table { width: 100%; }

.hours-table td {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.hours-table td:first-child {
  color: var(--text-dark);
  font-weight: 500;
  width: 55%;
}

.hours-open {
  color: #16a34a !important;
  font-weight: 600 !important;
}

/* =============================================
   STATS STRIP
   ============================================= */
#stats-strip {
  background: var(--gradient-maroon);
  padding: 50px 0;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,248,241,0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--maroon);
}

.preloader-logo span { color: var(--gold); }

.preloader-spinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(200,155,60,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================
   UTILITY
   ============================================= */
.text-gold    { color: var(--gold) !important; }
.text-maroon  { color: var(--maroon) !important; }
.bg-gold      { background: var(--gradient-gold) !important; }

.border-gold  { border-color: var(--gold) !important; }

.rounded-xl   { border-radius: var(--border-radius) !important; }

.shadow-gold  { box-shadow: var(--shadow-gold) !important; }

hr.gold-hr {
  border: none;
  height: 2px;
  background: var(--gradient-gold);
  opacity: 1;
  margin: 2rem 0;
}
