/* ============================================
   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: 6px;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  animation: float 3s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-script);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
  animation: fadeInUp 0.8s ease 0.3s both;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
}

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

.hero__subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  font-weight: 400;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  animation: fadeInUp 0.8s ease 0.6s both;
  font-style: italic;
}

.hero__message {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  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-lg) 0;
  animation: fadeIn 1s ease 0.5s both;
}

.hero__ornament::before,
.hero__ornament::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}

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

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

/* ============================================
   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;
  padding: 18px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-primary) 0%, #9B5A65 100%);
  color: white;
  animation: glowPulse 3s ease-in-out infinite;
  overflow: hidden;
}

.btn--cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 255, 255, 0.1) 60deg,
    transparent 120deg
  );
  animation: rotateSweep 4s linear infinite;
}

@keyframes rotateSweep {
  to { transform: rotate(360deg); }
}

.btn--cta span {
  position: relative;
  z-index: 1;
}

.btn--gallery-link {
  background: transparent;
  border: 1px solid rgba(183, 110, 121, 0.3);
  color: var(--color-primary-light);
  font-size: 0.95rem;
  padding: 14px 28px;
}

.btn--gallery-link:hover {
  background: rgba(183, 110, 121, 0.1);
  border-color: var(--color-primary);
}

/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  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.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  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;
  }
}
