/* ============================================================
   DANDIYA IN VADODARA – ROYAL COURTYARD DESIGN SYSTEM
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --maroon: #6B1D2A;
  --maroon-deep: #4A0E1A;
  --royal-blue: #1A2A6C;
  --royal-blue-light: #2A3A8C;
  --deep-green: #1B4332;
  --gold: #D4A843;
  --gold-light: #E8C96A;
  --gold-dark: #B8892E;
  --ivory: #FAF3E0;
  --ivory-muted: #F0E6CC;
  --dark-bg: #0D0A1A;
  --dark-surface: #1A1528;
  --dark-card: #221C30;
  --text-primary: #FAF3E0;
  --text-secondary: rgba(250, 243, 224, 0.7);
  --text-muted: rgba(250, 243, 224, 0.45);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-arch: 50% 50% 0 0;

  --shadow-soft: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-gold: 0 0 30px rgba(212,168,67,0.15);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ivory);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }

p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 72ch;
}

.gold-text { color: var(--gold); }
.maroon-text { color: var(--maroon); }

/* ── TOP NAVIGATION ── */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(13,10,26,0.97) 0%, rgba(13,10,26,0.85) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,168,67,0.15);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-logo span {
  color: var(--ivory);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
  letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(212,168,67,0.08);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── ARCH HEADER (Section Titles) ── */
.arch-header {
  text-align: center;
  padding: 3rem 1rem 2rem;
  position: relative;
}

.arch-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 60px;
  border: 2px solid var(--gold);
  border-bottom: none;
  border-radius: var(--radius-arch);
  opacity: 0.5;
}

.arch-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.arch-header .arch-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.arch-header .arch-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem auto 0;
}

/* ── COURTYARD SECTION (Main Content Sections) ── */
.courtyard-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
}

.courtyard-section--wide {
  max-width: 1400px;
}

.courtyard-section--full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* ── PALACE CARD ── */
.palace-card {
  background: var(--dark-card);
  border: 1px solid rgba(212,168,67,0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.palace-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon));
}

.palace-card:hover {
  border-color: rgba(212,168,67,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.palace-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.palace-card__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.palace-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1.2rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark-bg);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,168,67,0.35);
  color: var(--dark-bg);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(212,168,67,0.1);
  transform: translateY(-2px);
  color: var(--gold-light);
}

.btn-maroon {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: var(--ivory);
  border: 1px solid rgba(212,168,67,0.2);
}

.btn-maroon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107,29,42,0.4);
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,10,26,0.5) 0%,
    rgba(13,10,26,0.3) 40%,
    rgba(13,10,26,0.7) 80%,
    rgba(13,10,26,1) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 800px;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,168,67,0.3);
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--ivory);
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  line-height: 1.1;
}

.hero__title .gold-accent {
  color: var(--gold);
  display: block;
  font-style: italic;
  font-weight: 600;
  font-size: 0.65em;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── COUNTDOWN TIMER ── */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.countdown__block {
  background: rgba(26,20,40,0.7);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  min-width: 90px;
  backdrop-filter: blur(10px);
}

.countdown__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.countdown__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.3rem;
  display: block;
}

/* ── PASSWORD GATE ── */
.gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gate__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.gate__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(13,10,26,0.6) 0%, rgba(13,10,26,0.92) 100%);
}

.gate__card {
  position: relative;
  z-index: 2;
  background: rgba(26,20,40,0.85);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 440px;
  width: 90%;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), 0 0 60px rgba(212,168,67,0.08);
}

.gate__arch {
  width: 80px;
  height: 50px;
  border: 2px solid var(--gold);
  border-bottom: none;
  border-radius: var(--radius-arch);
  margin: 0 auto 1.5rem;
  opacity: 0.6;
  position: relative;
}

.gate__arch::after {
  content: '✦';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 0.8rem;
}

.gate__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.gate__subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.gate__input-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.gate__input {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: rgba(13,10,26,0.6);
  border: 1.5px solid rgba(212,168,67,0.2);
  border-radius: var(--radius-sm);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 2px;
  transition: var(--transition-fast);
  outline: none;
}

.gate__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212,168,67,0.12);
}

.gate__input::placeholder {
  color: var(--text-muted);
  letter-spacing: 1px;
}

.gate__error {
  font-size: 0.85rem;
  color: #E74C3C;
  margin-bottom: 1rem;
  min-height: 1.2rem;
  opacity: 0;
  transition: var(--transition-fast);
}

.gate__error.visible {
  opacity: 1;
}

.gate__btn {
  width: 100%;
  padding: 1rem;
}

/* ── GRID LAYOUTS ── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 1px solid rgba(212,168,67,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,10,26,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item__caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: var(--ivory);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 2;
}

.gallery-item:hover .gallery-item__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13,10,26,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox__close:hover {
  background: rgba(212,168,67,0.3);
}

/* ── PRICING TABLE ── */
.pricing-card {
  background: var(--dark-card);
  border: 1px solid rgba(212,168,67,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--royal-blue));
}

.pricing-card.featured {
  border-color: rgba(212,168,67,0.3);
  transform: scale(1.03);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured::before {
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-bg);
  background: var(--gold);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.pricing-card__image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-sm);
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.pricing-card__price small {
  font-size: 0.45em;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card__features {
  list-style: none;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(212,168,67,0.1);
  border-bottom: 1px solid rgba(212,168,67,0.1);
  margin: 1rem 0 1.5rem;
}

.pricing-card__features li {
  padding: 0.45rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pricing-card__features li::before {
  content: '✦ ';
  color: var(--gold);
  font-size: 0.7rem;
}

/* ── CONTACT FORM ── */
.contact-form {
  display: grid;
  gap: 1.2rem;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form label {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(13,10,26,0.5);
  border: 1.5px solid rgba(212,168,67,0.15);
  border-radius: var(--radius-sm);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212,168,67,0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* ── SCHEDULE TABLE ── */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.schedule-table thead {
  background: rgba(212,168,67,0.08);
}

.schedule-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  text-align: left;
  padding: 1rem 1.2rem;
  border-bottom: 2px solid rgba(212,168,67,0.15);
  letter-spacing: 0.5px;
}

.schedule-table td {
  padding: 1rem 1.2rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(212,168,67,0.06);
}

.schedule-table tbody tr {
  transition: var(--transition-fast);
}

.schedule-table tbody tr:hover {
  background: rgba(212,168,67,0.04);
}

/* ── FOOTER ── */
.site-footer {
  background: linear-gradient(180deg, var(--dark-bg), #080614);
  border-top: 1px solid rgba(212,168,67,0.1);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.7rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-col p,
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 2;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.3rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  background: rgba(212,168,67,0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212,168,67,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--gold);
}

/* ── SECTION BACKGROUNDS ── */
.section-bg-maroon {
  background: linear-gradient(180deg, rgba(107,29,42,0.15) 0%, transparent 100%);
}

.section-bg-blue {
  background: linear-gradient(180deg, rgba(26,42,108,0.12) 0%, transparent 100%);
}

.section-bg-green {
  background: linear-gradient(180deg, rgba(27,67,50,0.12) 0%, transparent 100%);
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.15), transparent);
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212,168,67,0.1); }
  50% { box-shadow: 0 0 40px rgba(212,168,67,0.25); }
}

/* ── PAGE BANNER (Inner Pages) ── */
.page-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 70px;
  overflow: hidden;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,10,26,0.6), rgba(13,10,26,0.95));
}

.page-banner__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.page-banner__content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.5rem;
}

.page-banner__content p {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── CONTENT BLOCK (Image + Text side by side) ── */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-block--reverse {
  direction: rtl;
}

.content-block--reverse > * {
  direction: ltr;
}

.content-block__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(212,168,67,0.1);
}

.content-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.content-block__image:hover img {
  transform: scale(1.03);
}

.content-block__text h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.content-block__text p {
  margin-bottom: 1rem;
}

/* ── MEDIA / NEWS CARD ── */
.news-card {
  background: var(--dark-card);
  border: 1px solid rgba(212,168,67,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.news-card:hover {
  border-color: rgba(212,168,67,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.news-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card__body {
  padding: 1.5rem;
}

.news-card__date {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.news-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--ivory);
  margin-bottom: 0.6rem;
}

.news-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── CONTACT INFO BLOCK ── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 46px;
  height: 46px;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info__text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--ivory);
  margin-bottom: 0.2rem;
}

.contact-info__text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ── DRESS CODE CARD ── */
.dress-card {
  background: var(--dark-card);
  border: 1px solid rgba(212,168,67,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  padding-bottom: 2rem;
  transition: var(--transition-smooth);
}

.dress-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212,168,67,0.25);
}

.dress-card__visual {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--maroon-deep), var(--royal-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.dress-card__body {
  padding: 1.5rem 1.5rem 0;
}

.dress-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.dress-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── GATE TRANSITION ── */
.gate-exit {
  animation: gateReveal 0.8s ease forwards;
}

@keyframes gateReveal {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.1); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-block--reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .top-nav {
    padding: 0 1rem;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(13,10,26,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.4rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(212,168,67,0.1);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    width: 100%;
    padding: 0.7rem 1rem;
    text-align: center;
  }

  .nav-hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .courtyard-section {
    padding: 3rem 1.2rem;
  }

  .countdown {
    gap: 0.8rem;
  }

  .countdown__block {
    min-width: 70px;
    padding: 0.8rem 1rem;
  }

  .countdown__number {
    font-size: 1.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }

  .gate__card {
    padding: 2rem 1.5rem;
  }

  .page-banner {
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .hero {
    min-height: 90vh;
  }

  .gate__card {
    padding: 1.8rem 1.2rem;
  }
}
