@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --charcoal: #11100d;
  --blackwood: #18120e;
  --brown: #2c1c13;
  --walnut: #4b2e1f;
  --paper: #efe2c6;
  --ivory: #fff8e8;
  --gold: #c69a4a;
  --red: #6e1f1c;
  --green: #10231d;
  --ink: #18140f;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(198,154,74,0.10), transparent 32%),
    linear-gradient(180deg, #f3e8cf, #e7d5b3);
  color: var(--ink);
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(60,40,20,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60,40,20,0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.45;
  z-index: 50;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(17, 16, 13, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(198,154,74,0.25);
}

.logo {
  font-family: "Cinzel", serif;
  font-size: 1.55rem;
  color: var(--ivory);
  letter-spacing: 2px;
}

.logo span {
  color: var(--gold);
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.88rem;
  opacity: 0.85;
  transition: 0.3s;
}

.nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1.8rem;
}

/* HERO */

.hero,
.page-hero {
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(rgba(17,16,13,0.35), rgba(17,16,13,0.88)),
    url("https://images.unsplash.com/photo-1507842217343-583bb7270b66?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 7% 70px;
}

.page-hero {
  min-height: 70vh;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(transparent, var(--paper));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: var(--ivory);
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.75rem;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  margin-bottom: 24px;
}

.hero-text {
  font-size: 1.12rem;
  max-width: 600px;
  opacity: 0.9;
  margin-bottom: 34px;
}

/* BUTTONS */

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.primary {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 10px 30px rgba(198,154,74,0.25);
}

.primary:hover {
  background: #dbb35e;
  transform: translateY(-2px);
}

.secondary {
  border: 1px solid rgba(255,248,232,0.45);
  color: var(--ivory);
  margin-left: 12px;
}

.secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* INTRO */

.intro {
  padding: 90px 7%;
  text-align: center;
  background: rgba(255,248,232,0.72);
}

.intro p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  max-width: 980px;
  margin: auto;
  color: var(--brown);
}

/* SECTIONS */

.section {
  padding: 100px 7%;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title p,
.dark {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.75rem;
}

.section-title h2,
.section h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  color: var(--brown);
}

/* CATALOGUE / COLLECTIONS */

.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.book-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,248,232,0.88), rgba(239,226,198,0.78));
  padding: 28px;
  border: 1px solid rgba(75,46,31,0.22);
  box-shadow: 0 18px 40px rgba(44,28,19,0.08);
  transition: 0.35s;
  overflow: hidden;
}

.book-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent, rgba(198,154,74,0.12), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}

.book-card:hover::before {
  transform: translateX(100%);
}

.book-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(44,28,19,0.18);
}

.book-cover {
  height: 330px;
  background:
    linear-gradient(145deg, #15110d, #3a2418 55%, #6e1f1c);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 24px;
  border: 1px solid rgba(198,154,74,0.55);
  box-shadow:
    inset 0 0 0 8px rgba(255,248,232,0.04),
    inset 18px 0 25px rgba(0,0,0,0.25);
}

.book-card h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.book-card p {
  color: rgba(24,20,15,0.76);
  margin-bottom: 14px;
}

/* Option pour futures cartes manga / figurines */

.collection-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid rgba(198,154,74,0.45);
  border-radius: 999px;
  color: var(--walnut);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* QUOTE */

.quote-section {
  background:
    linear-gradient(rgba(16,35,29,0.92), rgba(16,35,29,0.92)),
    url("https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  color: var(--ivory);
  padding: 115px 7%;
  text-align: center;
}

.quote-section blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  max-width: 950px;
  margin: auto;
}

/* AUTEUR */

.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.split p:last-child {
  font-size: 1.1rem;
}

/* MANUSCRIPT / LEGAL */

.manuscript {
  text-align: center;
  background: rgba(255,248,232,0.7);
}

.manuscript p {
  max-width: 720px;
  margin: 20px auto 32px;
}

.legal-section {
  max-width: 1100px;
  margin: auto;
}

.legal-block {
  margin-bottom: 70px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(74,47,29,0.14);
}

.legal-block h2 {
  margin-bottom: 20px;
  color: var(--brown);
  font-size: 2.3rem;
}

.legal-block p {
  margin-bottom: 16px;
  max-width: 850px;
}

/* FOOTER */

.footer {
  background:
    linear-gradient(180deg, var(--blackwood), var(--charcoal));
  color: var(--ivory);
  text-align: center;
  padding: 55px 7%;
  border-top: 1px solid rgba(198,154,74,0.25);
}

.footer p {
  opacity: 0.72;
  margin-top: 8px;
}

.footer-links {
  margin: 20px 0;
}

.footer-links a {
  color: var(--gold);
  text-decoration: none;
}

.footer-links a:hover {
  opacity: 0.75;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .nav {
    position: absolute;
    top: 74px;
    right: 7%;
    background: rgba(17,16,13,0.96);
    flex-direction: column;
    padding: 24px;
    width: 240px;
    display: none;
    border: 1px solid rgba(198,154,74,0.25);
  }

  .nav.active {
    display: flex;
  }

  .books-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .secondary {
    margin-left: 0;
    margin-top: 12px;
  }

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

  .book-cover {
    height: 280px;
  }
}
.collections-section {
  background: #17120e;
  color: var(--ivory);
}

.collections-section .section-title h2 {
  color: var(--ivory);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.collection-card {
  min-height: 360px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(198,154,74,0.35);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
}

.collection-card span,
.collection-card h3,
.collection-card p {
  position: relative;
  z-index: 2;
}

.collection-card span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.collection-card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.collection-card p {
  opacity: 0.85;
}

.collection-card.roman {
  background-image:
    linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.3)),
    url("https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=1200&q=80");
}

.collection-card.manga {
  background-image:
    linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.3)),
    url("https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?auto=format&fit=crop&w=1200&q=80");
}

.collection-card.figurine {
  background-image:
    linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.3)),
    url("https://images.unsplash.com/photo-1608889476561-6242cfdbf622?auto=format&fit=crop&w=1200&q=80");
}

.collection-card:hover {
  transform: translateY(-8px) scale(1.01);
  transition: 0.35s;
  box-shadow: 0 25px 55px rgba(0,0,0,0.35);
}

@media (max-width: 900px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }
}
.legal-list {
  margin-top: 20px;
  margin-left: 20px;
}

.legal-list li {
  margin-bottom: 10px;
}