/* ============================================================
   AMOURETTE PAPER — Landing Page Styles (Light Theme)
   ============================================================ */

/* ── CONTAINER & GLOBAL OVERLAYS ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER NAVIGATION ── */
.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 100;
  background: rgba(252, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.landing-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.logo-sub {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rose-gold-dark);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

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

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

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

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  z-index: 110;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE NAV DRAWER ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 105;
  display: flex;
  flex-direction: column;
  padding: 120px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid var(--border-color);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: auto;
}

.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-primary);
  text-decoration: none;
}

/* ── HERO SECTION ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #FCFAF6 0%, #F5EDE4 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(200, 138, 148, 0.05) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 5;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rose-gold-dark);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
}

.hero-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero image mockup */
.hero-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-phone-mockup {
  width: 270px;
  height: 550px;
  border-radius: 40px;
  background: var(--text-primary);
  border: 10px solid #E5DFDA;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.mock-qr {
  width: 130px;
  height: 130px;
  padding: 10px;
  background: #FFF;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-secondary), transparent);
}

/* ── CUM FUNCȚIONEAZĂ ── */
.how-section {
  padding: 120px 0;
  background: var(--bg-card);
}

.section-title-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-title-box h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title-box p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--rose-gold-light);
  color: var(--rose-gold-dark);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}

.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ── PACHETE ── */
.pricing-section {
  padding: 120px 0;
  background: var(--bg-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 138, 148, 0.25);
}

.pricing-card.featured {
  border: 2px solid var(--rose-gold);
  box-shadow: var(--shadow-md);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose-gold);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 1.40rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.price-box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price-box .val {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--text-primary);
}

.price-box .cur {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--rose-gold-dark);
}

.pricing-guests {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  text-align: left;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 20px;
}

.pricing-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--rose-gold);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ── CONTACT ── */
.contact-section {
  padding: 120px 0;
  background: var(--bg-card);
}

.contact-box {
  background: linear-gradient(135deg, #FBF8F5 0%, #F5EAE4 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.contact-box h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.contact-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .hero-content {
    align-items: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .steps-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ── PETAL ANIMATION EFFECT ── */
.petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.petal {
  position: absolute;
  background: radial-gradient(ellipse at center, rgba(232, 186, 194, 0.45) 0%, rgba(200, 138, 148, 0.15) 100%);
  border-radius: 50% 0 50% 50%;
  opacity: 0.65;
  animation: fall 12s linear infinite;
}

.petal:nth-child(1) { left: 10%; width: 14px; height: 10px; animation-delay: 0s; animation-duration: 10s; }
.petal:nth-child(2) { left: 30%; width: 18px; height: 14px; animation-delay: 2s; animation-duration: 14s; }
.petal:nth-child(3) { left: 50%; width: 15px; height: 12px; animation-delay: 4s; animation-duration: 12s; }
.petal:nth-child(4) { left: 70%; width: 22px; height: 16px; animation-delay: 1s; animation-duration: 16s; }
.petal:nth-child(5) { left: 85%; width: 14px; height: 10px; animation-delay: 6s; animation-duration: 11s; }
.petal:nth-child(6) { left: 20%; width: 16px; height: 12px; animation-delay: 8s; animation-duration: 13s; }
.petal:nth-child(7) { left: 60%; width: 20px; height: 15px; animation-delay: 3s; animation-duration: 15s; }

@keyframes fall {
  0% { transform: translateY(-50px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.65; }
  90% { opacity: 0.65; }
  100% { transform: translateY(105vh) rotate(360deg); opacity: 0; }
}
