/* ==========================================================================
   KANDONAM 2K26 - Luxury Onam Landing Page Styling
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,500;0,700;0,800;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #041810;
  --bg-card: rgba(8, 38, 27, 0.65);
  --bg-card-hover: rgba(14, 52, 38, 0.85);
  --gold-primary: #D4AF37;
  --gold-light: #F6E6AC;
  --gold-dark: #997A15;
  --gold-gradient: linear-gradient(135deg, #FFF1B0 0%, #D4AF37 50%, #997A15 100%);
  --gold-metallic: linear-gradient(90deg, #D4AF37 0%, #FFF4BD 25%, #E6C200 50%, #FFF4BD 75%, #D4AF37 100%);
  --maroon-accent: #58111A;
  --maroon-gradient: linear-gradient(135deg, #7A1826 0%, #3D080F 100%);
  --emerald-accent: #0E4F39;
  --cream-light: #FDFBF7;
  --cream-muted: #E6DFD3;
  --text-muted: #A3B8B0;
  --border-gold: rgba(212, 175, 55, 0.25);
  --border-gold-glow: rgba(212, 175, 55, 0.6);

  /* Fonts */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--cream-light);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  background: radial-gradient(circle at 50% 0%, #0a3324 0%, #041810 70%);
  min-height: 100vh;
  position: relative;
}

/* Canvas Layer */
#petal-canvas, #particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 10;
}

#particle-canvas {
  z-index: 1;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
  font-weight: 700;
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-shimmer {
  background: var(--gold-metallic);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
}

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

/* Glassmorphism Components */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-gold-glow);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.15);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 2rem;
  z-index: 100;
  transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background: rgba(4, 24, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.8rem 2rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream-light);
}

.brand-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--gold-primary);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.brand-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}

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

.nav-links a {
  color: var(--cream-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-btn {
  background: var(--gold-gradient);
  color: var(--bg-dark) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.nav-btn::after {
  display: none !important;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 5rem;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/hero_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  filter: brightness(0.7) contrast(1.1);
  transform: scale(1.05);
  transition: transform 0.8s ease-out;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(4, 24, 16, 0.3) 0%, rgba(4, 24, 16, 0.95) 100%),
              linear-gradient(to bottom, transparent 60%, var(--bg-dark) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.date-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  background: rgba(8, 38, 27, 0.8);
  border: 1px solid var(--gold-primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
  animation: pulseGlow 3s infinite ease-in-out;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: blink 1.5s infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); border-color: rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.5); border-color: rgba(212, 175, 55, 0.8); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-family: var(--font-serif);
  color: var(--cream-muted);
  font-weight: 400;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.hero-community-tag {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-community-tag svg {
  width: 20px;
  height: 20px;
  fill: #25D366;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.25rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(212, 175, 55, 0.45);
}

.btn-secondary {
  background: rgba(8, 38, 27, 0.7);
  color: var(--cream-light);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(14, 52, 38, 0.9);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Hero 11 Members Showcase */
.hero-members-wrapper {
  margin-top: 2.5rem;
  width: 100%;
  max-width: 900px;
  background: rgba(8, 38, 27, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.members-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.members-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.members-count-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--gold-gradient);
  color: var(--bg-dark);
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
}

.hero-members-grid {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 0.75rem;
  align-items: center;
}

@media (max-width: 850px) {
  .hero-members-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 500px) {
  .hero-members-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-member-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform var(--transition-spring);
}

.hero-member-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  padding: 2px;
  background: var(--gold-gradient);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hero-member-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  background: var(--bg-dark);
}

.hero-member-name {
  font-size: 0.72rem;
  color: var(--cream-muted);
  margin-top: 0.4rem;
  font-weight: 500;
  width: 100%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.hero-member-item:hover {
  transform: translateY(-6px) scale(1.1);
  z-index: 10;
}

.hero-member-item:hover .hero-member-avatar {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.hero-member-item:hover .hero-member-name {
  color: var(--gold-light);
}


/* Sections Common */
section {
  padding: 6rem 1.5rem;
  position: relative;
  z-index: 2;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-card {
  padding: 3rem;
  position: relative;
}

.about-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--cream-muted);
  margin-bottom: 1.5rem;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--cream-light);
}

.about-feature-item svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-primary);
  flex-shrink: 0;
}

.about-illustration {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-gold);
}

.about-illustration img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.about-illustration:hover img {
  transform: scale(1.04);
}

/* Event Details Section */
.event-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.detail-card {
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--gold-gradient);
}

.detail-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-spring), background var(--transition-smooth);
}

.detail-card:hover .detail-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: rgba(212, 175, 55, 0.2);
}

.detail-icon-wrapper svg {
  width: 32px;
  height: 32px;
  fill: var(--gold-primary);
}

.detail-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.detail-value {
  font-size: 1.6rem;
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-weight: 700;
}

/* Celebration Highlights Section */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.highlight-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.highlight-img-wrapper {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.highlight-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.highlight-card:hover .highlight-img-wrapper img {
  transform: scale(1.08);
}

.highlight-title {
  font-size: 1.5rem;
  color: var(--cream-light);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.highlight-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Coordinator Section */
.coordinator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.coordinator-card {
  padding: 2.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  padding: 4px;
  background: var(--gold-gradient);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  background: var(--bg-dark);
}

.coordinator-name {
  font-size: 1.35rem;
  color: var(--cream-light);
  margin-bottom: 0.3rem;
}

.coordinator-role {
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.wa-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.wa-contact-btn svg {
  width: 18px;
  height: 18px;
  fill: #25D366;
}

.wa-contact-btn:hover {
  background: #25D366;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.wa-contact-btn:hover svg {
  fill: #000;
}

/* Gallery Section */
.gallery-grid {
  columns: 3 300px;
  column-gap: 1.5rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border-gold);
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 20px;
  transition: transform var(--transition-smooth), filter var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(4, 24, 16, 0.9) 0%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

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

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

.gallery-title {
  font-size: 1.2rem;
  color: var(--gold-light);
}

.gallery-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 24, 16, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 16px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.lightbox-caption {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--gold-light);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--cream-light);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--gold-primary);
}

/* Payment Section */
.payment-wrapper {
  max-width: 650px;
  margin: 0 auto;
}

.payment-card {
  padding: 3.5rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.payment-amount-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.75rem 2.25rem;
  background: rgba(4, 24, 16, 0.75);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.amount-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.amount-val {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.qr-frame {
  position: relative;
  width: 220px;
  height: 220px;
  padding: 12px;
  background: #ffffff;
  border-radius: 24px;
  margin-bottom: 2rem;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.qr-frame::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  border: 2px solid var(--gold-primary);
  animation: qrPulse 2.5s infinite ease-in-out;
  pointer-events: none;
}

@keyframes qrPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.04); opacity: 0.9; }
}

.qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.upi-details {
  width: 100%;
  margin-bottom: 2rem;
}

.upi-id-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(4, 24, 16, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 0.8rem 1.25rem;
  margin-top: 0.75rem;
}

.upi-id-text {
  font-family: monospace;
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.copy-btn {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.copy-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
}

.amount-presets {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.preset-chip {
  padding: 0.5rem 1.25rem;
  background: rgba(8, 38, 27, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  color: var(--cream-muted);
  cursor: pointer;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.preset-chip:hover, .preset-chip.active {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  font-weight: 600;
}

.payment-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gold-gradient);
  color: var(--bg-dark);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-spring);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Footer Section */
.footer {
  background: rgba(2, 14, 9, 0.95);
  border-top: 1px solid var(--border-gold);
  padding: 4rem 1.5rem 2rem;
  text-align: center;
  position: relative;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-credit {
  font-size: 0.9rem;
  color: var(--gold-light);
  margin-top: 2rem;
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none; /* Can add mobile drawer if needed */
  }
  .gallery-grid {
    columns: 2 200px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    columns: 1 100%;
  }
  .about-card {
    padding: 1.75rem;
  }
  .about-features-list {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
}
