:root {
  --bg:          #0a0a1a;
  --gold:        #f5a623;
  --cream:       #f0ece2;
  --separator:   rgba(245, 230, 200, 0.5);
  --white:       #ffffff;
  --font-splash: 'Splash', cursive;
  --font-nav:    'Montserrat', sans-serif;
  --font-body:   'Cormorant Garamond', Georgia, serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
  background-color: #0a0a1a;
}

body {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(10, 10, 26, 0.85), rgba(10, 10, 26, 0.85)),
    url('../images/bg-texture.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--cream);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}


/* ── Reflets latéraux violet / bleu ── */
body::before,
body::after {
  content: '';
  position: fixed;
  top: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

body::before {
  left: 0;
  background: radial-gradient(
    ellipse at -15% 45%,
    rgba(140, 60, 240, 0.16) 0%,
    rgba(90, 30, 190, 0.07) 45%,
    transparent 70%
  );
}

body::after {
  right: 0;
  background: radial-gradient(
    ellipse at 115% 55%,
    rgba(40, 80, 230, 0.16) 0%,
    rgba(20, 50, 190, 0.07) 45%,
    transparent 70%
  );
}

header, main, footer {
  position: relative;
  z-index: 1;
}

header {
  z-index: 10;
}

/* ── Navigation : espace au-dessus + Montserrat 300 ── */
header {
  flex-shrink: 0;
  padding: 60px 1.5rem 1.2rem;
  background: transparent;
  background-color: transparent;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.nav-btn {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 300;
  font-variant: small-caps;
  letter-spacing: 2px;
  color: #ffffff;
  text-decoration: none;
  background: transparent;
  border: 1.5px solid #ffffff;
  border-radius: 50px;
  padding: 8px 20px;
  white-space: nowrap;
  transform: translateY(0);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.nav-btn:hover {
  border-color: #f5a623;
  background: transparent;
  color: #ffffff;
  transform: translateY(-3px);
}

.nav-btn.active {
  border-color: #f5a623;
  color: #f5a623;
  background: transparent;
  -webkit-text-stroke: 0.4px #f5a623;
}

/* ── Main : centre verticalement le bloc [sep + hero + sep] ── */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Séparateurs beige crème, opacity 0.5 ── */
.separator {
  flex-shrink: 0;
  padding: 0 16vw;
}

.separator hr {
  border: none;
  border-top: 1px solid var(--separator);
}

/* ── Hero : colonne centrée, pas de stretch ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 2rem;
}

/* Photo PNG transparente, 580px, sans cercle ni effet ── */
.hero-photo {
  width: 580px;
  max-width: 85vw;
  max-height: 45vh;
  object-fit: contain;
  display: block;
  margin-bottom: 0.5rem;
  animation: sway 6s ease-in-out infinite alternate;
}

@keyframes sway {
  from { transform: rotate(-2deg); }
  to   { transform: rotate(2deg); }
}

/* ── Titre "Inako" – Splash 65px, doré, aucun effet ── */
.hero-name {
  font-family: var(--font-splash);
  color: #f5a623;
  font-size: 55px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.75rem;
}

/* ── Petit trait 40px entre "Inako" et "Créatrice de contenu" ── */
.divider-short {
  width: 40px;
  height: 1px;
  background-color: #f5e6c8;
  margin: 0 auto 0.75rem;
}

/* ── "Créatrice de contenu" – crème jaune, Montserrat, petites capitales ── */
.tagline {
  font-family: var(--font-nav);
  font-size: 18px;
  font-weight: 500;
  font-variant: small-caps;
  letter-spacing: 4px;
  color: #f0dfa0;
}

/* ── Footer toujours visible en bas ── */
footer {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem 1.2rem;
  background: transparent;
  background-color: transparent;
}

/* ── "Mes réseaux personnels :" doré 14px ── */
.social-label {
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 400;
  color: #f5a623;
}

/* ── Icônes : cercles 50px, border blanc 2px, gap 10px ── */
.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #ffffff;
  color: #ffffff;
  font-size: 1.1rem;
  text-decoration: none;
  flex-shrink: 0;
  transform: translateY(0);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
  border-color: #f5a623;
  background: transparent;
  color: #ffffff;
  transform: translateY(-3px);
}

/* ── Pages internes ── */
.page-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 2rem 2rem;
}

.page-intro {
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--cream);
  text-align: justify;
  max-width: 680px;
  margin-top: 1.5rem;
  opacity: 0.88;
}

.page-intro a {
  color: #b8860b;
  text-decoration: underline;
  text-decoration-color: rgba(184, 134, 11, 0.5);
  transition: color 0.3s ease;
}

.page-intro a:hover {
  color: var(--cream);
}

.page-title {
  font-family: var(--font-splash);
  color: #f5a623;
  font-size: 65px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  margin-top: 2rem;
}

/* ── Copyright : italique, blanc opacity 0.6 ── */
.copyright {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
}

/* ── Bokeh ── */
#bokeh-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Dropdown "Mes Livres" ── */
.nav-item {
  position: relative;
  display: inline-block;
}

.nav-btn.dropdown-trigger {
  display: inline-block;
  cursor: default;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #0a0a1a;
  border: 1px solid rgba(245, 230, 200, 0.3);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 220px;
  z-index: 100;
  text-align: center;
}

.dropdown-item {
  display: block;
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 300;
  font-variant: small-caps;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-decoration: none;
  padding: 0.55rem 1.2rem;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.dropdown-item:hover {
  color: #f5a623;
  -webkit-text-stroke: 0.4px #f5a623;
  cursor: pointer;
}

/* ── Grille livres ── */
.books-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 2rem 3rem;
  gap: 2rem;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 860px;
  width: 100%;
}

/* ── Carte livre ── */
.book-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.book-card:hover {
  border-color: rgba(245, 166, 35, 0.5);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.08);
}

.book-cover-link {
  display: block;
  width: 100%;
  padding-top: 1.2rem;
  padding-bottom: 0.4rem;
}

.book-cover {
  width: 92%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.35s ease;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
}

.book-card:hover .book-cover {
  transform: translateY(-10px);
}

.book-cover-azeryon {
  transform: translateX(-9%);
}

.book-card:hover .book-cover-azeryon {
  transform: translateX(-9%) translateY(-10px);
}

.books-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 580px;
}

.book-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem 1.2rem;
  flex: 1;
  width: 100%;
}

.book-title {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f5a623;
  -webkit-text-stroke: 0.4px #f5a623;
  line-height: 1.6;
}

.book-phrase {
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.78;
  line-height: 1.6;
  flex: 1;
}

.btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-nav);
  font-size: 10px;
  font-weight: 400;
  font-variant: small-caps;
  letter-spacing: 2px;
  color: #f5a623;
  text-decoration: none;
  border: 1.5px solid #f5a623;
  border-radius: 50px;
  padding: 7px 18px;
  margin-top: 0.4rem;
  transition: color 0.3s ease;
}

.btn-amazon:hover {
  color: #ffffff;
}

/* ── Bloc CTA Instagram ── */
.insta-cta {
  text-align: center;
  max-width: 580px;
  width: 100%;
  padding: 0.5rem 1rem 0;
}

.insta-cta-text {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.9;
  opacity: 0.85;
  margin-bottom: 1.4rem;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 400;
  font-variant: small-caps;
  letter-spacing: 2px;
  color: #f5a623;
  text-decoration: none;
  border: 1.5px solid #f5a623;
  border-radius: 50px;
  padding: 9px 24px;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-instagram:hover {
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* ── Galerie Crochet ── */
.crochet-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 880px;
  width: 100%;
  margin: 0.5rem 0 1rem;
}

.crochet-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
}

.crochet-gallery img:nth-child(2),
.crochet-gallery img:nth-child(4) {
  transform: translateY(34px);
}

/* ── Bloc CTA Vinted ── */
.vinted-cta {
  text-align: center;
  max-width: 580px;
  width: 100%;
  padding: 0.5rem 1rem 0;
}

.vinted-cta-text {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.9;
  opacity: 0.85;
  margin-bottom: 1.4rem;
}

.btn-vinted {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 400;
  font-variant: small-caps;
  letter-spacing: 2px;
  color: #f5a623;
  text-decoration: none;
  border: 1.5px solid #f5a623;
  border-radius: 50px;
  padding: 9px 24px;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-vinted:hover {
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
}

.contact-line {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.55;
  margin-top: 1rem;
}

.contact-line a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(245, 230, 200, 0.4);
}

.contact-line a:hover {
  color: #f5a623;
}

/* ── Réseaux crochet (mêmes ronds que le footer) ── */
.crochet-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

/* ── Sections vidéo (3D - Art) ── */
.video-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 880px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  margin-top: 1.8rem;
}

.video-grid--single {
  grid-template-columns: 1fr;
  max-width: 480px;
}

.video-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.video-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 166, 35, 0.2);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.video-facade:hover {
  border-color: rgba(245, 166, 35, 0.5);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.08);
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(10, 10, 26, 0.55);
  border: 1.5px solid #f5a623;
  color: #f5a623;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.video-facade:hover .video-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(245, 166, 35, 0.85);
  color: #0a0a1a;
}

.video-facade.is-playing .video-play {
  display: none;
}

.video-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-title {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f5a623;
  -webkit-text-stroke: 0.4px #f5a623;
  text-align: center;
}

/* ── Bloc CTA Unbroken Arms ── */
.unbroken-cta {
  text-align: center;
  max-width: 580px;
  width: 100%;
  padding: 0.5rem 1rem 0;
}

.unbroken-cta-text {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.9;
  opacity: 0.85;
  margin-bottom: 1.4rem;
}

/* ── Grille embeds Instagram (Danse) ── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 880px;
  margin-top: 1.8rem;
  justify-items: center;
}

.insta-grid iframe {
  max-width: 100% !important;
}

/* ── Bloc CTA Danse ── */
.danse-cta {
  text-align: center;
  max-width: 580px;
  width: 100%;
  padding: 0.5rem 1rem 0;
}

.danse-cta-text {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.9;
  opacity: 0.85;
  margin-bottom: 1.4rem;
}

/* ── Boutons discrets (liens secondaires) ── */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.4rem;
}

.btn-discreet {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-nav);
  font-size: 10px;
  font-weight: 400;
  font-variant: small-caps;
  letter-spacing: 1.5px;
  color: var(--cream);
  opacity: 0.75;
  text-decoration: none;
  border: 1px solid rgba(245, 230, 200, 0.35);
  border-radius: 50px;
  padding: 8px 18px;
  transition: color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.btn-discreet:hover {
  color: #f5a623;
  border-color: #f5a623;
  opacity: 1;
}

/* ── Badges jeux (Gaming) ── */
.game-category {
  width: 100%;
  max-width: 780px;
  margin-top: 1.6rem;
}

.game-category-title {
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f5a623;
  text-align: center;
  margin-bottom: 0.9rem;
}

.game-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.game-badge {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: var(--cream);
  padding: 7px 16px;
  border-radius: 50px;
  border: 1px solid;
  white-space: nowrap;
}

.game-badge--horror {
  color: #c9a2f5;
  border-color: rgba(140, 60, 240, 0.45);
  background: rgba(140, 60, 240, 0.08);
}

.game-badge--multi {
  color: #f5a623;
  border-color: rgba(245, 166, 35, 0.45);
  background: rgba(245, 166, 35, 0.08);
}

/* ── Config setup (Gaming) ── */
.config-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 900px;
  margin-top: 1.8rem;
}

.config-category-title {
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f5a623;
  border-bottom: 1px solid rgba(245, 166, 35, 0.3);
  padding-bottom: 0.6rem;
  margin-bottom: 0.8rem;
}

.config-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.config-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-family: var(--font-nav);
  font-size: 12.5px;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.82;
  padding: 5px 0;
  line-height: 1.5;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.config-list a:hover {
  color: #f5a623;
  opacity: 1;
}

.config-list a i {
  font-size: 9px;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── Clips Twitch (Gaming) ── */
.twitch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 880px;
  margin-top: 1.8rem;
}

.twitch-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.twitch-caption {
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.8;
  line-height: 1.5;
  text-align: center;
}

.twitch-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 166, 35, 0.2);
}

.twitch-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Bloc CTA Gaming ── */
.gaming-cta {
  text-align: center;
  max-width: 580px;
  width: 100%;
  padding: 0.5rem 1rem 0;
}

.gaming-cta-text {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.9;
  opacity: 0.85;
  margin-bottom: 1.4rem;
}

.btn-instant-gaming {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 400;
  font-variant: small-caps;
  letter-spacing: 2px;
  color: #f5a623;
  text-decoration: none;
  border: 1.5px solid #f5a623;
  border-radius: 50px;
  padding: 10px 26px;
  margin-top: 0.6rem;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-instant-gaming:hover {
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-photo {
    width: 380px;
    max-height: 38vh;
  }

  .hero-name {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  header {
    padding-top: 36px;
  }

  .hero-photo {
    width: 280px;
    max-width: 80vw;
    max-height: 32vh;
  }

  .hero-name {
    font-size: 42px;
  }

  .nav-btn {
    font-size: 11px;
    padding: 0.26rem 0.8rem;
    letter-spacing: 1.5px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .crochet-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 420px;
  }

  .crochet-gallery img:nth-child(2),
  .crochet-gallery img:nth-child(4) {
    transform: translateY(20px);
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .insta-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .config-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    max-width: 420px;
  }

  .twitch-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .books-grid,
  .books-grid--2col {
    grid-template-columns: 1fr;
  }
}
