/* ─── HERO ─────────────────────────────────────── */
.hero {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 4rem 2.5rem 4rem 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(210,238,252,0.97), rgba(192,228,248,0.97));
  border-bottom: 1px solid rgba(42,157,200,0.25);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.iv-deco-float {
  display: none !important;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(70px);
}
.hero-circle-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(42,157,200,0.35), transparent 70%);
  top: -150px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.hero-circle-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(111,200,232,0.28), transparent 70%);
  bottom: -50px; left: 25%;
  animation: float2 10s ease-in-out infinite;
}
.hero-circle-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(200,230,245,0.25), transparent 70%);
  top: 40%; left: -60px;
  animation: float1 12s ease-in-out infinite reverse;
}
/* ligne dorée diagonale décorative */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; right: 20%;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(42,157,200,0.12), transparent);
  transform: rotate(15deg);
  transform-origin: top;
}

@keyframes float1 { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }
@keyframes float2 { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(20px) scale(0.95); } }

.hero-content { position: relative; z-index: 1; animation: slideUp 0.9s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes slideUp { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(42,157,200,0.12);
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(42,157,200,0.30);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats { display: flex; align-items: center; gap: 1.5rem; }
.hero-stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--apricot));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 0.2rem; }
.stat-divider { width: 1px; height: 40px; background: rgba(42,157,200,0.20); }

/* ─── HERO VISUAL ─────────────────────────────── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: fadeIn 1.2s ease both 0.3s;
}
@keyframes fadeIn { from { opacity:0; transform:scale(0.9); } to { opacity:1; transform:scale(1); } }

.cake-showcase { position: relative; width: 340px; height: 340px; }

.cake-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid;
  animation: spin 20s linear infinite;
}
.cake-ring-outer { width: 320px; height: 320px; border-color: rgba(42,157,200,0.15); border-style: dashed; }
.cake-ring-mid   { width: 250px; height: 250px; border-color: rgba(232,135,90,0.15); animation-direction: reverse; animation-duration: 14s; }

@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.cake-emoji-wrap {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 160px; height: 160px;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 1px rgba(42,157,200,0.20),
    0 20px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(42,157,200,0.10);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 1px rgba(42,157,200,0.20), 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(42,157,200,0.10); }
  50%      { box-shadow: 0 0 0 1px rgba(212,168,67,0.4), 0 24px 70px rgba(0,0,0,0.7), 0 0 60px rgba(42,157,200,0.20); }
}
.cake-emoji { font-size: 5rem; line-height: 1; animation: float1 4s ease-in-out infinite; }

.floating-tag {
  position: absolute;
  background: rgba(7,25,41,0.85);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-mid);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 0 1px rgba(42,157,200,0.15);
  white-space: nowrap;
  animation: floatTag 5s ease-in-out infinite;
}
.tag-1 { top: 10%; left: -10%; animation-delay: 0s; }
.tag-2 { bottom: 20%; left: -15%; animation-delay: 1.5s; }
.tag-3 { top: 25%; right: -10%; animation-delay: 0.8s; }

@keyframes floatTag { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }

/* ─── WELCOME SECTION ─────────────────────────── */
.welcome-section {
  background: linear-gradient(135deg, rgba(210,238,252,0.95), rgba(192,228,248,0.95)), ;
  padding: 4rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.welcome-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  z-index: 0;
}
.welcome-inner {
  position: relative;
  z-index: 2;
}
.welcome-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(23,184,160,0.06), transparent);
  z-index: 1;
}
.welcome-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.welcome-deco { font-size: 1.3rem; color: var(--gold); margin-bottom: 1rem; letter-spacing: 0.2em; }
.welcome-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--text-dark) !important;
  margin-bottom: 1.25rem;
}
.welcome-inner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-light) !important;
  line-height: 1.9;
}
.welcome-inner strong { color: var(--gold-light) !important; }

/* ─── SIGNATURE CAKES ─────────────────────────── */
.signature-section {
  padding: 6rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.cakes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cake-card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(42,157,200,0.10);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}
.cake-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s, border-color 0.35s; }
.cake-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(42,157,200,0.10); border-color: rgba(42,157,200,0.25); }
.cake-card.featured { border-color: rgba(42,157,200,0.30); background: linear-gradient(145deg, var(--surface), var(--surface-2)); }

.cake-featured-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--apricot));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.06em;
  z-index: 2;
}

.cake-card-icon {
  font-size: 4rem;
  text-align: center;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  line-height: 1;
}

.cake-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.cake-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.cake-card-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.cake-card-footer { display: flex; align-items: center; justify-content: space-between; }
.cake-price {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--gold-light), var(--apricot));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.section-cta { text-align: center; margin-top: 2.5rem; }

/* ─── WHY SECTION ─────────────────────────────── */
.why-section {
  background: linear-gradient(135deg, rgba(205,235,250,0.95), rgba(190,225,246,0.95));
  padding: 6rem 2.5rem;
  border-top: 1px solid rgba(42,157,200,0.20);
  border-bottom: 1px solid rgba(42,157,200,0.20);
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.4rem); color: var(--text-dark); margin-bottom: 2rem; }
.why-list { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item {
  display: flex; align-items: flex-start; gap: 1rem;
  opacity: 0; transform: translateX(-20px);
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(42,157,200,0.05);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, background 0.3s;
}
.why-item:hover { border-color: rgba(42,157,200,0.15); background: rgba(212,168,67,0.04); }
.why-item.visible { opacity:1; transform:translateX(0); transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, background 0.3s; }
.why-icon { font-size: 1.8rem; flex-shrink: 0; }
.why-item h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 0.3rem; }
.why-item p { font-size: 0.88rem; color: var(--text-dark); line-height: 1.65; }

.why-visual { display: flex; align-items: center; justify-content: center; }
.why-card-stack { position: relative; width: 200px; height: 240px; }
.wcard {
  position: absolute;
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(42,157,200,0.10);
  width: 160px;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.wcard span:first-child { font-size: 2.5rem; }
.wcard-back  { transform: rotate(-8deg) translate(-10px, 10px); z-index:1; opacity:0.6; }
.wcard-mid   { transform: rotate(-2deg) translate(5px, -5px); z-index:2; }
.wcard-front { transform: rotate(6deg) translate(25px, 5px); z-index:3; background: var(--surface-2); border: 1px solid rgba(42,157,200,0.25); box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 20px rgba(42,157,200,0.10); }

/* ─── TESTIMONIALS ────────────────────────────── */
.testimonials-section {
  padding: 6rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(210,238,252,0.95), rgba(195,230,250,0.92));
  border-radius: 30px;
  border: 1px solid rgba(42,157,200,0.15);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(42,157,200,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  opacity: 0; transform: translateY(20px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.testi-card:hover { border-color: rgba(42,157,200,0.20); box-shadow: 0 8px 36px rgba(0,0,0,0.5), 0 0 20px rgba(42,157,200,0.08); }
.testi-card.visible { opacity:1; transform:translateY(0); transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s, box-shadow 0.3s; }
.testi-card.featured-testi {
  border-color: rgba(42,157,200,0.25);
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  box-shadow: 0 4px 24px rgba(0,0,0,0.5), 0 0 30px rgba(42,157,200,0.08);
}
.testi-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testi-card p { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--text-dark); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
  border: 1px solid rgba(42,157,200,0.20);
}
.testi-author strong { font-size: 0.9rem; color: var(--text-dark); }
.testi-author small { color: var(--text-light); font-size: 0.8rem; }

/* ─── CTA BANNER ──────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(205,235,250,0.95), rgba(188,222,244,0.96));
  padding: 5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(42,157,200,0.15);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(42,157,200,0.08), transparent),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(23,184,160,0.06), transparent);
}
.cta-banner::after {
  content: '🎂';
  position: absolute;
  font-size: 20rem;
  opacity: 0.03;
  top: -5rem; right: -3rem;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem,3vw,2.6rem);
  background: linear-gradient(135deg, var(--text-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.cta-inner p { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--text-light); margin-bottom: 2rem; }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; text-align: center; gap: 3rem; }
  .hero-visual { justify-content: center; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .cakes-grid, .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-visual { display: none; }
}
