/* ============================================
   Landing Page Styles
   ============================================ */

.landing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
}

/* Background Gradient */
.landing-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(183, 110, 121, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(240, 201, 207, 0.1) 0%, transparent 50%),
    var(--color-bg-dark);
  z-index: -2;
}

/* Rose Petals Canvas */
#petals-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  text-align: center;
  max-width: 400px;
  width: 100%;
  animation: fadeInUp 1s ease forwards;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-hover);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero__script-title {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--color-primary-light);
  line-height: 1;
  margin-bottom: 4px;
  animation: fadeIn 0.8s ease 0.3s both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
  animation: fadeInUp 0.8s ease 0.3s both;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 25px rgba(212, 175, 55, 0.25);
}

.hero__ampersand {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--color-primary);
  margin: 2px 0;
  display: block;
  animation: fadeIn 1s ease 0.5s both;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  animation: fadeInUp 0.8s ease 0.6s both;
  letter-spacing: 0.5px;
}

.hero__message {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease 0.7s both;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* Ornamental Divider */
.hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-md) 0;
  animation: fadeIn 1s ease 0.5s both;
}

.hero__ornament-line {
  width: 45px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}

.hero__ornament-line:last-child {
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.hero__ornament-icon {
  color: var(--color-gold);
  font-size: 0.9rem;
}

/* ============================================
   CTA Buttons
   ============================================ */
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  animation: fadeInUp 0.8s ease 0.9s both;
}

.btn--cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gold) 100%);
  color: white;
  box-shadow: 0 8px 30px rgba(183, 110, 121, 0.4);
  overflow: hidden;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn--cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
}

.btn--gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all var(--transition-normal);
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn--gallery-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  animation: fadeInUp 0.8s ease 1.1s both;
}

.stat-item {
  text-align: center;
}

.stat-item__value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold);
  display: block;
}

.stat-item__label {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

/* ============================================
   Footer
   ============================================ */
.landing-footer {
  position: absolute;
  bottom: var(--space-lg);
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  animation: fadeIn 1s ease 1.3s both;
}

.landing-footer a {
  color: var(--color-primary-light);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 360px) {
  .hero__title {
    font-size: 2.2rem;
  }
  
  .hero__badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3.5rem;
  }
  
  .hero__message {
    max-width: 400px;
  }
}
