/* Tailwind CSS & Custom Design System for Paula & Lucas Wedding */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #2C4A3E;       /* Deep Sage Green */
  --color-primary-dark: #1A2E26;  /* Forest Emerald */
  --color-accent: #C5A059;       /* Rose Gold / Soft Champagne */
  --color-accent-light: #F4EBE1; /* Warm Gold Tint */
  --color-bg-light: #FAF8F5;     /* Warm Ivory */
  --color-bg-card: #FFFFFF;      /* Clean White */
  --color-text-main: #2D3732;    /* Dark Olive Slate */
  --color-text-muted: #6B7C73;   /* Soft Sage Muted */

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
}

h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
}

/* Glassmorphism Card Utility */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px -5px rgba(26, 46, 38, 0.05);
}

.glass-card-dark {
  background: rgba(26, 46, 38, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 160, 89, 0.25);
}

/* Gold Gradient Text */
.text-gold-gradient {
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #C5A059 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #FAF8F5;
}
::-webkit-scrollbar-thumb {
  background: #C5A059;
  border-radius: 4px;
}

/* Countdown Tile Glow */
.countdown-box {
  background: linear-gradient(145deg, #ffffff, #f7f3ed);
  box-shadow:  5px 5px 15px #eae3d9, -5px -5px 15px #ffffff;
}

/* Custom Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Lightbox Modal */
.lightbox-modal {
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.lightbox-modal.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
