html {
  scroll-behavior: smooth;
}
/* ================================
   GOOGLE FONTS
   ================================ */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=v:wght@400;500&family=Montserrat:wght@500;600&family=Luckiest+Guy&display=swap");


/* ================================
   BASE
   ================================ */
html, body {
  margin: 0;
  padding: 0;
  background: #0b0b0b;
  color: #f2f2f2;
  font-family: "Cormorant Garamond", serif;
}

/* ================================
   NAVBAR
   ================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 10;

  background: #000;
  padding: 14px 16px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.logo {
  font-size: 14px;
  opacity: 0.9;
}

/* Menu */
.nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Liens */
.nav a {
  font-family: "Luckiest Guy", cursive;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  position: relative;
}

/* Empêche le violet des liens visités */
.nav a:visited {
  color: #ffffff;
}

/* Soulignement toujours visible */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.8);
  transform: scaleX(1);
}

/* Hover subtil */
.nav a:hover {
  opacity: 0.85;
}

/* ================================
   HERO
   ================================ */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 80px 16px;

  /* fond noir + halo léger */
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(circle, rgba(0,0,0,0.6) 0%, rgba(0,0,0,1) 70%),
    #0b0b0b;
}

.hero-content {
  max-width: 900px;
  display: grid;
  gap: 22px;
  justify-items: center;
}

/* ================================
   TITRE ODIN (H2) — ODIN LEGEND COLORING BOOKS
   ================================ */
.hero .odin-title {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(50px, 7vw, 50px);
  letter-spacing: 0.14em;
  color: #ffffff;
  margin: 0;

}

.hero .odin-title span {
  display: block;
  font-family:'Cinzel',cursive;
  font-size: clamp(26px, 3.8vw, 30px);
  letter-spacing: 0.10em;
  margin-top: 10px;
                                          
}

/* ================================
   BADGES (h3/h4 avec span.badge)
   ================================ */
.badge {
  display: inline-block;
  margin: 0 auto;
  padding: 6px 30px;
  border-radius: 999px;

  background: rgba(255,255,255,0.08);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family:'Cinzel',cursive;
}

/* (Optionnel) si tes h3/h4 ont des styles, on garde sobre */
.hero h3,
.hero h4 {
  margin: 0;
  font-weight: 800;
  line-height: 1.05;
}

/* ================================
   IMAGE HERO (glow + pas de carré)
   ================================ */
.hero-image {
  width: min(260px, 80vw);
  max-width: 100%;
  height: auto;

  display: block;
  margin: 10px auto 20px;

  border-radius: 18px;
  background: transparent;
  outline: none;

  /* l'effet glow sous l'image */
  filter:
    drop-shadow(0 26px 36px rgba(252, 250, 250, 0.30))
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.65));

  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover léger (optionnel) */
.hero-image:hover {
  transform: translateY(-2px);
}

/* ================================
   GRAND TITRE (H1) "Cute Things..."
   ================================ */
.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
  font-family:'Cinzel',cursive;

}


/* ================================
   SOUS-TEXTE
   ================================ */
.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  opacity: 0.85;
  max-width: 650px;
  margin: 0 auto;
  font-family:'Cinzel',cursive;
}

/* ================================
   BOUTONS
   ================================ */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  margin-top: 32px;
  padding: 14px 36px;

  background: #1f1f1f;
  color: #ffffff;

  text-decoration: none;
  font-family: 'Cormorant Garamond', sans-serif;
  font-weight: 600;

  border-radius: 32px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

.btn.primary {
  background: #ffffff;
  color: #000000;
}

.btn.primary:hover {
  background: #eaeaea;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.30);
  color: #ffffff;
}

.btn.ghost:hover {
  background: rgba(14, 13, 13, 0.08);
}

/* ================================
   RESPONSIVE
   ================================ */

   
@media (max-width: 480px) {
  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 14px;
  }

  .hero {
    padding: 70px 14px;
  }

  .hero-image {
    width: min(240px, 86vw);
  }
}

.bring-alive {
  padding: 80px 20px;
  background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.05),
    rgba(0,0,0,0.95)
  );
  display: flex;
  justify-content: center;
}

.bring-alive-box {
  max-width: 900px;
  text-align: center;
  padding: 50px 40px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 20px;
  box-shadow:
    0 0 40px rgba(255,255,255,0.08),
    inset 0 0 25px rgba(255,255,255,0.03);
}

/* Phrase principale */
.bring-alive-title {
  font-family:'Cinzel',cursive;
  font-size: clamp(30px, 5vw, 64px);
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 30px;

}

/* EVERY COLORING PADE SECTION */
.bring-alive-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 750px;
  margin: 0 auto 35px;
  font-family: 'Cinzel', cursive; 
  
}

/* Email mis en valeur */
.bring-alive-text .email {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255,255,255,0.4);
}

/* Bouton */
.bring-alive-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 30px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255,255,255,0.15);
}

.bring-alive-btn:hover {
  background: rgba(255,255,255,0.2);
  box-shadow: 0 0 25px rgba(255,255,255,0.3);
}

/* Image Bring Alive */
.bring-alive-image {
  display: block;
  margin: 35px auto 40px;
  max-width: 175px;      /* ajuste si tu veux plus gros */
  width: 100%;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.35));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.bring-alive-image::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 70%;
  height: 22px;
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,0.45),
    rgba(255,255,255,0.15),
    rgba(255,255,255,0)
  );
  filter: blur(10px);
  pointer-events: none;
}

/* Taille normale (thumbnail) */
.click-zoom {
  display: block;
  width: min(180px, 70vw);   /* PC: max 260px / Mobile: 70vw */
  height: auto;
  margin: 18px auto;
  cursor: pointer;
  border-radius: 10px;
}

/* LIGHTBOX (overlay plein écran) */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}

.lightbox.is-open { display: flex; }

.lightbox-content {
  max-width: min(92vw, 900px);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  background: #111;
}

/* Bouton fermer */
.lightbox-close{
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 10000;
  font-size: 26px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.video-thumb{
  display: block;
  width: min(180px, 70vw);
  height: auto;
  margin: 14px auto 18px;
  cursor: pointer;
  border-radius: 10px;
}

#lightboxVideo{
  max-width: min(92vw, 900px);
  max-height: 86vh;
  width: auto;
  height: auto;
  background: #111;
}

.lightbox{
  touch-action: pan-y;
}

/* Wrapper */
.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 28px 0;   /* ⬅️ ÇA, C’EST LA CLÉ */
}

/* Texte sous le bouton */
.cta-note {
  font-size: 20px;
  opacity: 0.6;
  text-align: center;
  margin: 6px 0 0;
}

/* =========================
   IMAGE PROMO CLIQUABLE
========================= */

.promo-link {
  display: block;
  width: fit-content;
  margin: 14px auto 0;
}

.promo-img {
  display: block;
  width: min(260px, 92vw);
  height: auto;

  border-radius: 18px;

  border: 1px solid rgba(255,255,255,0.15);

  box-shadow:
    0 0 18px rgba(255,255,255,0.35),
    0 0 45px rgba(255,255,255,0.18);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-link:hover .promo-img {
  transform: scale(1.04);
  box-shadow:
    0 0 26px rgba(255,255,255,0.45),
    0 0 70px rgba(255,255,255,0.25);
}

.promo-link:active .promo-img {
  transform: scale(1.03);
}

/* Books */

.books {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;

  /* AUCUN fond, AUCUNE bordure */
  background: transparent;
}

.books-content {
  text-align: center;
  max-width: 900px;
}

/* Titre */
.books-title {
  font-family: 'Cormorant Garamond', cursive;
  font-size: clamp(36px, 6vw, 72px);
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255,255,255,0.4);
  margin-bottom: 40px;
}

/* Image du livre */
.book-cover {
  width: min(320px, 80vw);
  margin-bottom: 30px;
  filter: drop-shadow(0 0 25px rgba(255,255,255,0.15));
   border-radius: 25px;
  background: transparent;
  outline: none;
}

/* Texte */
.books-description {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 35px;
  line-height: 1.6;
  
}

/* Bouton */
.books-button {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  font-family: 'Luckiest Guy', cursive;
  font-size: 18px;
  color: #000;
  background: #ffffff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.books-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255,255,255,0.6);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.03em;
  
}

.title-cinzel {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;  
}

.title-cormorant {
  font-family: 'CINZEL', serif;
  letter-spacing: 0.04em;
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
}

.books-text {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
  font-family:'Cinzel',cursive;
}

/* Into Teen & Adult */

.books-line {
  font-size: 15px;
  line-height: 1.6;
  color: #f2f2f2;
  margin-bottom: 12px;
  font-family:'Cinzel',cursive;
}

.books-line.highlight {
  font-weight: 600;
  color: #ffffff;
}

.underline {
  position: relative;
  font-weight: 600;
}

.underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(255,255,255,0.6);
}

/* Inside the */
.book-features {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: left;
  font-family:'Cinzel',cursive;
  font-size: 15px;
  
}

.book-features p {
  font-weight: 600;
  margin-bottom: 8px;
}

.book-features ul {
  padding-left: 18px;
}

.book-features li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 6px;
  font-family:'Cinzel',cursive;
}

.amazon-discover-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:14px 30px;
  border-radius:999px;

  background:#aaa9a9;
  color:#000000;
  text-decoration:none;

  font-size:15px;
  font-weight:700;
  letter-spacing:0.5px;
  line-height:1;

  transition:transform .2s ease, box-shadow .2s ease;
}

/* =========================
   ODIN LEGEND AMAZON BUTTON
========================= */

.amazon-odin-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  padding:16px 34px;
  border-radius:999px;

  background:linear-gradient(180deg,#0a0a0a,#141414);
  color:#ffffff;
  text-decoration:none;

  font-size:15px;
  font-weight:800;
  letter-spacing:0.8px;
  line-height:1;
  font-family:'Cinzel',cursive;

  border:1px solid rgba(255,255,255,0.25);

  box-shadow:
    0 0 14px rgba(255,255,255,0.25),
    0 0 40px rgba(255,255,255,0.15);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

/* Hover – présence divine */
.amazon-odin-btn:hover{
  transform:scale(1.05);
  background:linear-gradient(180deg,#111,#1c1c1c);

  box-shadow:
    0 0 22px rgba(255,255,255,0.45),
    0 0 80px rgba(255,255,255,0.25);
}

/* Logo Amazon version Odin */
.amazon-odin-icon{
  height:35px;
  width:auto;
  display:block;
  filter:drop-shadow(0 0 6px rgba(255,255,255,0.6));
}

/* Texte */
.amazon-odin-btn span{
  display:block;
  line-height:1;
}

@keyframes odinGlow{
  0%{ box-shadow:0 0 14px rgba(255,255,255,.25),0 0 40px rgba(255,255,255,.15);}
  100%{ box-shadow:0 0 22px rgba(255,255,255,.45),0 0 70px rgba(255,255,255,.25);}
}

.amazon-odin-btn{
  animation:odinGlow 3s ease-in-out infinite alternate;
}

/* =========================
   ODIN LEGEND TIKTOK BUTTON
   (IDENTIQUE AU AMAZON)
========================= */

.tiktok-odin-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  padding: 6px; 28px;
  border-radius:999px;

  background:linear-gradient(180deg,#0a0a0a,#141414);
  color:#ffffff;
  text-decoration:none;

  font-size:15px;
  font-weight:800;
  letter-spacing:0.8px;
  line-height:1;

  border:1px solid rgba(255,255,255,0.25);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

/* Hover — EXACTEMENT pareil */
.tiktok-odin-btn:hover{
  transform:scale(1.05);
  background:linear-gradient(180deg,#111,#1c1c1c);

  box-shadow:
    0 0 22px rgba(255,255,255,0.45),
    0 0 80px rgba(255,255,255,0.25);
}

/* Logo TikTok Odin */
.tiktok-odin-icon{
  height:60px;
  width:auto;
  display:block;
  filter:drop-shadow(0 0 6px rgb(255, 255, 255));
}

/* Texte */
.tiktok-odin-btn span{
  display:block;
  line-height:1;
  font-size:15px;
  font-family:'Cinzel',cursive;
}

.tiktok-odin-btn{
  animation:odinGlow 2s ease-in-out infinite alternate;
}

.book-arrived {
  font-size: clamp(35px, 2.2vw, 24px); /* un peu plus gros */
  font-weight: 600;
  margin-bottom: 6px; /* rapproche de la ligne en dessous */
  color: #ffffff;
  text-align: center;
}

.age-line {
  font-size: clamp(14px, 1.6vw, 18px);
  opacity: 0.85;
  text-align: center;
}

.book-arrived {
  text-shadow: 0 0 6px rgba(255,255,255,0.4);
  font-size:15px;
}

.click-zoom,
.video-thumb{
  touch-action: pan-y;                /* le scroll vertical a priorité */
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-drag: none;
}


/* SECTION TRY */
.section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.section-box {
  max-width: 900px;
  width: 100%;
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 50px 30px;                           
  text-align: center;
  box-shadow:
    0 0 30px rgba(0,0,0,0.9),
    inset 0 0 25px rgba(255,255,255,0.03);
}
.section-title {
  font-family: 'Cinzel', cursive;
  font-size: clamp(32px, 5vw, 56px);
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 0 0 12px rgba(255,255,255,0.35);
}

/* TEXTE DU TRY IT */
.section-text {
  font-size: clamp(20px, 2.5vw, 18px);
  line-height: 1.6;
  color: #ccc;
  max-width: 650px;
  margin: 0 auto 35px;
  font-family:'Cinzel',cursive;
}

.try-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.try-btn {
  padding: 14px 26px;
  background: #111;
  color: #eee;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 30px;
  font-family: 'Cinzel', cursive;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.try-btn:hover {
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 0 14px rgba(255,255,255,0.35);
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .section-box {
    padding: 35px 20px;
  }

  .try-btn {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   BRING ALIVE — BOX + GLOW
   ========================= */

.bring-alive {
  padding: 80px 16px; /* espace autour sur mobile */
}

.bring-alive-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 18px;

  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);

  text-align: center;
  position: relative;
  overflow: hidden; /* évite que le glow déborde weird */
}

/* Glow Odin (extérieur + intérieur) */
.bring-alive-box {
  box-shadow:
    0 0 25px rgba(255, 255, 255, 0.16),
    0 0 70px rgba(255, 255, 255, 0.08),
    inset 0 0 22px rgba(255, 255, 255, 0.05);
}

/* Halo animé subtil (option Odin) */
.bring-alive-box::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 22px;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.22),
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.22)
  );
  filter: blur(18px);
  opacity: 0.35;
  z-index: 0;
  animation: odinGlow 6s ease-in-out infinite;
  pointer-events: none;
}

/* Assure que le contenu est au-dessus du glow */
.bring-alive-box > * {
  position: relative;
  z-index: 1;
}

@keyframes odinGlow {
  0%, 100% { opacity: 0.22; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(1.02); }
}

/* Mobile: padding un peu plus petit */
@media (max-width: 600px) {
  .bring-alive-box {
    padding: 28px 18px;
    border-radius: 16px;
  }
}

/* === TRY: GLOW ODIN derrière la box === */

.section-box{
  position: relative;
  overflow: hidden;
}

/* Glow plus lumineux (extérieur + intérieur) */
.section-box{
  box-shadow:
    0 0 25px rgba(255,255,255,0.16),
    0 0 70px rgba(255,255,255,0.08),
    0 0 30px rgba(0,0,0,0.9),
    inset 0 0 25px rgba(255,255,255,0.03),
    inset 0 0 22px rgba(255,255,255,0.05);
}

/* Halo flou “vivant” derrière la box */
.section-box::before{
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 22px;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.22),
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.22)
  );
  filter: blur(18px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
  animation: odinGlow 6s ease-in-out infinite;
}

/* Tout ton contenu reste au-dessus du glow */
.section-box > *{
  position: relative;
  z-index: 1;
}

/* Animation (si tu ne l’as pas déjà ailleurs) */
@keyframes odinGlow{
  0%, 100% { opacity: 0.22; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(1.02); }
}

/* === TRY – Illustration au-dessus du titre === */

.try-illustration {
  display: block;
  margin: 0 auto 25px;
  max-width: 220px;
  width: 100%;
  filter: drop-shadow(0 0 18px rgba(250, 248, 248, 0.356));
}

/* Mobile : un peu plus petit */
@media (max-width: 600px) {
  .try-illustration {
    max-width: 170px;
    margin-bottom: 20px;
  }
}

.amazon-btn {
  color: #ffffff !important;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-shadow:
    0 0 6px rgba(255,255,255,0.6),
    0 0 12px rgba(255,255,255,0.35);
}

/* FORCE BLANC — Amazon + TikTok (texte + états de lien) */
.amazon-odin-btn,
.amazon-odin-btn span,
.tiktok-odin-btn,
.tiktok-odin-btn span{
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  filter: none !important;
  text-shadow: 0 0 10px rgba(255,255,255,0.35);
}

.amazon-odin-btn:visited,
.amazon-odin-btn:active,
.amazon-odin-btn:focus,
.tiktok-odin-btn:visited,
.tiktok-odin-btn:active,
.tiktok-odin-btn:focus{
  color:#ffffff !important;
  -webkit-text-fill-color:#ffffff !important;
}

.try-illustration {
  filter:
    brightness(1.3)
    contrast(1.4)
    drop-shadow(0 0 20px rgba(255, 255, 255, 0.993))
    drop-shadow(0 0 45px rgba(7, 7, 7, 0.911));
}

.try-btn {
  animation: btnBreath 4s ease-in-out infinite;
}

@keyframes btnBreath {
  0%, 100% { transform: scale(0.80); }
  50%      { transform: scale(1.06); }
}

.try-btn:hover {
  animation: none;
  transform: scale(1.18);
}

/* === TIKTOK BUTTON – GLOW BLANC ODIN === */

.tiktok-odin-btn {
  position: relative;
  overflow: hidden;

  box-shadow:
    0 0 18px rgba(255,255,255,0.35),
    0 0 45px rgba(255,255,255,0.18);
}

/* Halo doux derrière */
.tiktok-odin-btn::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.35)
  );

  filter: blur(16px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

/* Contenu au-dessus du glow */
.tiktok-odin-btn > * {
  position: relative;
  z-index: 1;
}

.tiktok-odin-btn::before {
  animation: odinGlowBtn 5s ease-in-out infinite;
}

@keyframes odinGlowBtn {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 0.6; }
}

/* ==============================
   PART 5 — CONTACT
============================== */
.contact-section .contact-box {
  max-width: 900px;
}

.contact-text {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.95;
  margin: 14px 0;
  font-family:'Cinzel',cursive;
}

.contact-subtitle {
  margin: 18px 0 8px;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  font-family:'Cinzel',cursive;
}

.divider {
  height: 1px;
  width: 100%;
  margin: 22px auto;
  background: rgba(255,255,255,0.12);
}

.contact-btn:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 28px rgba(255,255,255,0.18);
}

.contact-email {
  display: inline-block;
  margin: 10px 0 12px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  font-family:'Cinzel',cursive;
  
}

.contact-email:hover {
  border-bottom-color: rgba(255,255,255,0.9);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  font-family:'Cinzel',cursive;
}

.contact-list li {
  margin: 8px 0;
  opacity: 0.92;
}

.contact-list li::before {
  content: "•";
  display: inline-block;
  margin-right: 10px;
  opacity: 0.75;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.contact-card {
  border-radius: 16px;
  padding: 18px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 0 18px rgba(255,255,255,0.03);
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  
}

.contact-icon {
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.22));
  transition: transform 0.18s ease, filter 0.18s ease;
  
}

.contact-card-link:hover .contact-icon {
  transform: scale(1.06);
  filter: drop-shadow(0 0 26px rgba(255,255,255,0.30));
}

.contact-card-title {
  margin: 16px 0 6px;
  font-size: 1.1rem;
  letter-spacing: 0.4px;
  font-family:'Cinzel',cursive;
}

.contact-card-text {
  margin: 0 0 12px;
  opacity: 0.92;
  line-height: 1.55;
  font-family:'Cinzel',cursive;
}

.contact-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mini-btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.mini-btn:hover {
  transform: translateY(-2px) scale(1.03);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 18px rgba(255,255,255,0.14);
}

.copyright {
  font-size: 0.95rem;
  opacity: 0.82;
  margin-top: 6px;
}

.rights-link {
  margin-left: 6px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
}

.rights-link:hover {
  border-bottom-color: rgba(255,255,255,0.9);
}

/* Mobile */
@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-icon {
    width: 72px;
    height: 72px;
  }
}

/* CONTENEUR DES BOUTONS */
.contact-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap; /* mobile safe */
}

/* BOUTONS */
.mini-btn {
  min-width: 120px;        /* largeur identique */
  padding: 10px 18px;
  text-align: center;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);

  color: #f2f2f2;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.4px;

  transition: all 0.25s ease;
}

.legal-wrapper {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  color: #eaeaea;
  line-height: 1.7;
  
}

.legal-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
  font-family:'Cinzel',cursive;
}

.legal-subtitle {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 40px;
  font-family:'Cinzel',cursive;
}

.legal-section {
  margin-bottom: 40px;
  font-family:'Cinzel',cursive;
}

.legal-section h2 {
  font-size: 20px;
  margin-bottom: 10px;
  border-left: 3px solid #ffffff;
  padding-left: 12px;
  font-family:'Cinzel',cursive;
}

.legal-section ul {
  margin: 15px 0 0 20px;
}

.legal-section li {
  margin-bottom: 8px;
}

.legal-note {
  font-style: italic;
  opacity: 0.8;
  margin-top: 10px;
}

.legal-contact a {
  color: #ffffff;
  text-decoration: underline;
}

.legal-footer {
  margin-top: 60px;
  text-align: center;
}

.legal-footer a {
  color: #f7f4f4;
  text-decoration: none;
  font-size: 32px;
}

.legal-link,
.legal-link:visited {
  color: #faf8f8;        /* gris propre */
  text-decoration: none;
  font-family:'Cinzel',cursive;
}

.legal-link:hover {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255,255,255,0.4);
  font-family:'Cinzel',cursive;
  font-size: 32px;
}

@keyframes btnBreathBig {
  0%, 100% { transform: scale(0.94); }
  50%      { transform: scale(1.12); }
}


.amazon-odin-btn,
.tiktok-odin-btn{
  animation: btnBreathBig 3s ease-in-out infinite;
  will-change: transform;
}

@keyframes miniBreath {
  0%, 100% {
    transform: scale(0.94);
  }
  50% {
    transform: scale(1.06);
  }
}

.mini-btn {
  animation: miniBreath 3.2s ease-in-out infinite;
  will-change: transform;
}

.mini-btn:nth-child(1) {
  animation-delay: 0s;
}

.mini-btn:nth-child(2) {
  animation-delay: .2s;
}

.mini-btn:nth-child(3) {
  animation-delay: .4s;
}

.mini-btn:hover {
  transform: translateY(-2px) scale(1.03);
}

.instructions-btn{
  display: inline-block;
  margin-top: 18px; /* espace sous le titre */
}

/* BOUTON ALL INSTRUCTION HERE */
.share-artwork-block{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px; /* respiration automatique entre titre et bouton */
  font-family:'Cinzel',cursive;
}
.instructions-btn{
  margin-top: 0; /* pas besoin si tu utilises gap */
}

.instructions-btn{
  position: relative;
  box-shadow:
    0 0 12px rgba(255,255,255,0.25),
    0 0 24px rgba(255,255,255,0.18),
    0 0 40px rgba(255,255,255,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Respiration / hover */
.instructions-btn:hover{
  transform: scale(1.08);
  box-shadow:
    0 0 18px rgba(255,255,255,0.45),
    0 0 36px rgba(255,255,255,0.30),
    0 0 60px rgba(255,255,255,0.20);
}

/* ================================
   BRING TO LIFE - HERO
================================ */
.btl-hero{
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.btl-box{
  width: 100%;
  max-width: 980px;
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 44px 26px;
  text-align: center;
  box-shadow:
    0 0 30px rgba(0,0,0,0.9),
    inset 0 0 25px rgba(255,255,255,0.03);
}

.btl-title{
  margin: 0 0 12px;
  letter-spacing: 1px;
}

.btl-text{
  margin: 0 auto 26px;
  max-width: 820px;
  line-height: 1.7;
  opacity: 0.95;
}

.btl-mail{
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}
.btl-mail:hover{
  border-bottom-color: rgba(255,255,255,0.85);
}

/* Conteneur image + glow */
.btl-media{
  margin: 0;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 0 26px rgba(255,255,255,0.22),
    0 0 60px rgba(255,255,255,0.10),
    0 0 120px rgba(255,255,255,0.06);
  overflow: hidden; /* important: garde le glow clean + coupe ce qui dépasse */
}

/* IMPORTANT: empêche l’image d’être géante */
.btl-image{
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  border-radius: 14px;
  object-fit: cover;
}

/* BRING TO LIFE - image présentée comme le reste du site */
.btl-image-wrap{
  margin-top: 22px;
  border-radius: 18px;
  padding: 10px;

  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);

  box-shadow:
    0 0 26px rgba(255,255,255,0.22),
    0 0 60px rgba(255,255,255,0.10),
    0 0 120px rgba(255,255,255,0.06);

  overflow: hidden; /* empêche l'image de dépasser */
}

.btl-image{
  display: block;
  width: 100%;
  max-width: 900px;   /* empêche l'image d'être géante */
  height: auto;
  margin: 0 auto;
  border-radius: 14px;
}

/* =========================
   BRING TO LIFE (PAGE STYLES)
   Ajoute ça À LA FIN de ton CSS principal
========================= */

.bring-life-page {
  padding: 90px 20px;
}

.bring-life-box {
  max-width: 980px;
  padding: 54px 34px;
}

.bring-life-header {
  text-align: center;
  margin-bottom: 26px;
}

.bring-life-title {
  font-family: "Cinzel", serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  margin: 0 0 10px;
  text-transform: none;
}

.bring-life-byline {
  margin: 0;
  opacity: 0.85;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.bring-life-intro {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
  line-height: 1.7;
  opacity: 0.92;
}

.bring-life-content {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.rule-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.55);
}

.rule-title {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
}

.rule-list {
  margin: 10px 0 0;
  padding-left: 18px;
  line-height: 1.75;
  opacity: 0.95;
}

.rule-list li {
  margin: 6px 0;
}

.rule-highlight {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.rule-warning {
  margin-top: 12px;
  opacity: 0.95;
  font-weight: 600;
}

.rule-note {
  margin-top: 12px;
  opacity: 0.9;
}

.rule-subtitle {
  margin: 14px 0 0;
  font-weight: 600;
  opacity: 0.92;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.email-link {
  display: inline-flex;
  margin: 10px 0 0;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: inherit;
  font-family: "Montserrat", sans-serif;
}

.email-link:hover {
  transform: translateY(-1px);
}

.callout {
  margin-top: 14px;
  padding: 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.callout-title {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.final-card {
  text-align: center;
  padding: 26px 22px;
}

.final-line {
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.final-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==============================
   BRING TO LIFE – IMAGE GRID
   ============================== */
.image-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 620px;
  margin: 22px auto 0;
}

.image-slot{
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;

  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.18);

  display: flex;
  align-items: center;
  justify-content: center;
}

.image-slot img{
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  display: block;
}

/* Mobile refinements */
@media (max-width: 520px) {
  .bring-life-box {
    padding: 42px 18px;
  }
  .rule-card {
    padding: 18px 16px;
  }
}

/* ================================
   BRING ALIVE – CTA BUTTON
================================ */

@keyframes ol-breathe {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 18px rgba(255,255,255,0.08),
      inset 0 0 12px rgba(255,255,255,0.04);
  }
  50% {
    transform: scale(1.06);
    box-shadow:
      0 0 30px rgba(255,255,255,0.22),
      inset 0 0 18px rgba(255,255,255,0.10);
  }
  100% {
    transform: scale(1);
    box-shadow:
      0 0 18px rgba(255,255,255,0.08),
      inset 0 0 12px rgba(255,255,255,0.04);
  }
}

.bring-alive-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 14px 26px;
  border-radius: 999px;

  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.85rem;

  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);

  animation: ol-breathe 5.5s ease-in-out infinite;
  will-change: transform;

  transition: background 0.25s ease, border-color 0.25s ease;
}

.book-video {
  width: 100%;
  max-width: 300px;
  border-radius: 25px;
  display: block;
  margin: 0 auto;

  box-shadow:
    0 0 30px rgba(255, 255, 255, 0.15),
    0 0 80px rgba(255, 255, 255, 0.08);
}

/* ==============================
   HERO ALIGNMENT FIX
   ============================== */

.hero{
  display: flex;
  flex-direction: column;
  align-items: center;      /* 👈 CENTRE TOUT */
  text-align: center;
}

.hero .intro{
  max-width: 700px;
  margin: 0 auto 24px;
}

/* Grille bien centrée */
.image-grid{
  margin-left: auto;
  margin-right: auto;
}

/* ================================
   ODIN LEGEND IMAGE GALLERY
================================ */

.odin-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;

  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
}

/* Cadre principal */
.odin-frame {
  position: relative;
  padding: 18px;
  border-radius: 20px;

  background:
    linear-gradient(145deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.01)
    );

  border: 1px solid rgba(255,255,255,0.18);

  box-shadow:
    0 0 35px rgba(0,0,0,0.85),
    inset 0 0 25px rgba(255,255,255,0.05);

  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Effet hover subtil */
.odin-frame:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow:
    0 0 45px rgba(0,0,0,0.95),
    0 0 30px rgba(180,180,180,0.15),
    inset 0 0 30px rgba(255,255,255,0.08);
}

/* Image */
.odin-frame img {
  width: 100%;
  height: auto;
  display: block;

  border-radius: 14px;
  object-fit: cover;
}

/* Lueur discrète externe */
.odin-frame::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;

  background: radial-gradient(
    circle at top,
    rgba(255,255,255,0.18),
    transparent 65%
  );

  pointer-events: none;
  opacity: 0.45;
}

.return-portal-wrap{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 35px;   /* ✅ descend le bouton */
}

.return-portal-btn{
  display: inline-block;
}
