/* ==========================================================================
   PAGE : PRÉSENTATION BONS CADEAUX (Design Éditorial)
   ========================================================================== */

:root {
  --color-accent: #c49d79;
  --color-plum: #9a1c6a;
  --color-pink: #b82b70;
  --bg-light: #fdfbf7;
  --text-dark: #1a1614;
  --text-muted: #666666;
  --border-light: rgba(0, 0, 0, 0.08);
}

.text-pink {
  color: var(--color-pink);
  font-style: italic;
  font-weight: normal;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- HERO SECTION --- */
.cadeaux-hero {
  padding: 160px 0 80px 0;
  background-color: var(--bg-light);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.cadeaux-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.cadeaux-hero p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- INTRO SECTION (Main Card alternative) --- */
.cadeaux-intro {
  padding: 120px 0;
  background-color: #ffffff;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-content .suptitle {
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 20px;
  display: block;
}
.intro-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 25px;
}
.intro-content p {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price-info {
  background-color: var(--bg-light);
  padding: 25px;
  border-left: 3px solid var(--color-accent);
  margin: 30px 0;
}
.price-info p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  margin: 10px 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-info p::before {
  content: "✓";
  color: var(--color-accent);
  font-weight: bold;
  font-size: 16px;
}

.btn-reserve-intro {
  display: inline-block;
  padding: 16px 45px;
  background-color: var(--text-dark);
  color: #ffffff;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
  margin-top: 10px;
}
.btn-reserve-intro:hover {
  background-color: var(--color-accent);
}

/* Illustration Carte Cadeau */
.voucher-illustration {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  border-radius: 12px;
  padding: 40px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #c95b9f 0%, #9a1c6a 100%);
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}
.voucher-illustration:hover {
  transform: rotate(0deg) translateY(-10px);
}
.voucher-illustration .logo {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  letter-spacing: 2px;
}
.voucher-illustration .amount {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  text-align: right;
}

/* --- FEATURES SECTION --- */
.features-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
}
.section-title {
  text-align: center;
  margin-bottom: 80px;
}
.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--text-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.feature-item {
  text-align: center;
}
.feature-item svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-accent);
  margin-bottom: 20px;
}
.feature-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 15px;
}
.feature-item p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- VALUES SECTION --- */
.values-section {
  padding: 100px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.value-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--color-pink);
  margin-bottom: 15px;
  line-height: 1;
}
.value-item p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dark);
  font-weight: 500;
}

/* --- FAQ SECTION (ACCORDÉON) --- */
.faq-section {
  padding: 100px 0 120px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
}
.accordion-container {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-item {
  border-bottom: 1px solid var(--border-light);
}
.accordion-item:first-child {
  border-top: 1px solid var(--border-light);
}
.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
  transition: color 0.3s;
}
.accordion-header:hover {
  color: var(--color-accent);
}
.accordion-icon {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform 0.4s;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.accordion-item.active .accordion-content {
  max-height: 800px;
}
.faq-answer {
  padding: 0 0 30px 0;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-answer p {
  margin-bottom: 15px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}

/* BOUTON SCROLL TOP */
#myBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  width: 45px;
  height: 45px;
  border: 1px solid var(--border-light);
  background-color: #ffffff;
  color: var(--text-dark);
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
#myBtn:hover {
  background-color: var(--text-dark);
  color: #ffffff;
  border-color: var(--text-dark);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 30px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .voucher-illustration {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
    transform: rotate(0);
  }
  .features-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .cadeaux-hero h1 {
    font-size: 42px;
  }
}
