@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@1,500;1,600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif !important;
}

:root {
  --bg-color: #0a0a0d;
  --text-color: #ededed;
  --main-color: #ff8c1a;
}

html { font-size: 62.5%; overflow-x: hidden; }
body {
  background: radial-gradient(circle at 20% 0%, #17130d 0%, #0a0a0d 55%);
  color: var(--text-color);
  font-family: 'Poppins', sans-serif !important;
}

/* --- Header / Nav --- */
.header {
  position: fixed;
  height: 60px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1600px;
  background: rgba(20, 17, 14, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  z-index: 1000;
  gap: 1.5rem;
}

.site-logo { font-size: 1.8rem; font-weight: 800; letter-spacing: 0.1rem; color: #fff; white-space: nowrap; }

.main-nav { flex: 1; display: flex; align-items: center; justify-content: center; }
.main-nav ul { list-style: none; display: flex; gap: 0.5rem; align-items: center; }
.main-nav li { position: relative; }
.main-nav a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ccc;
  padding: 0.8rem 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { background: rgba(255, 140, 26, 0.12); color: #fff; }

.dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 17, 14, 0.97);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  min-width: 260px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  z-index: 999;
  padding: 0.6rem;
}
.dropdown:hover .dropdown-menu { display: block; opacity: 1; visibility: visible; }
.dropdown-menu a {
  display: block;
  padding: 0.7rem 1rem;
  font-size: 1.3rem;
  color: #ddd;
  text-transform: none;
  border-radius: 6px;
}
.dropdown-menu a:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }

.lang-switch { display: flex; align-items: center; gap: 0.6rem; font-size: 1.4rem; }
.lang-btn { background: none; color: #999; font-weight: 600; cursor: pointer; padding: 0.3rem 0.2rem; }
.lang-btn.active { color: #fff; }
.lang-sep { color: #555; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1.4rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0a0a0d;
  background: var(--main-color);
  border-radius: 8px;
  white-space: nowrap;
  transition: filter .2s ease;
}
.nav-cta:hover { filter: brightness(1.1); }

section { padding: 10rem 2% 2rem; }

/* --- Hero --- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 9%;
  position: relative;
}
.hero-title {
  font-size: 5.5rem;
  font-weight: 800;
  letter-spacing: 0.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.hero-title .accent {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-weight: 600;
  color: var(--main-color);
}
.hero-tagline { font-size: 2rem; max-width: 700px; color: #ccc; line-height: 1.6; margin-bottom: 3rem; }

.social-buttons { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.social-btn:hover { transform: translateY(-2px); border-color: var(--main-color); }
.social-btn.discord { background: rgba(88, 101, 242, 0.15); }
.social-btn.youtube { background: rgba(255, 0, 0, 0.12); }
.social-btn.twitch { background: rgba(145, 70, 255, 0.15); }

/* --- Section titles --- */
.section-eyebrow {
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
  color: var(--main-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-align: center;
}
.section-title { font-size: 3.4rem; font-weight: 700; text-align: center; margin-bottom: 1.5rem; }
.section-subtitle { font-size: 1.7rem; color: #aaa; text-align: center; max-width: 700px; margin: 0 auto 5rem; line-height: 1.6; }

/* --- Blender categories grid --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.category-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.category-card:hover { border-color: rgba(255, 140, 26, 0.4); background: rgba(255, 140, 26, 0.04); }
.category-card h3 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.category-card p { font-size: 1.4rem; color: #ccc; line-height: 1.6; margin-bottom: 1.5rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.3rem;
}
.link-arrow i { font-size: 1.8rem; transition: transform 0.2s ease; }
.link-arrow:hover i { transform: translateX(4px); }

/* --- Levels (Débutant / Intermédiaire / Aguerri) --- */
.level-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.level-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 3rem 2.5rem;
}
.level-number {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--main-color);
  display: block;
  margin-bottom: 1rem;
}
.level-card h3 { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.level-card .level-tagline { font-size: 1.4rem; color: #aaa; margin-bottom: 1.5rem; font-style: italic; }
.level-card ul { list-style: none; }
.level-card li {
  font-size: 1.4rem;
  color: #ccc;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
.level-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--main-color);
}

/* --- Coaching --- */
.coaching-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.coaching-block p { font-size: 1.7rem; color: #ccc; line-height: 1.7; margin-bottom: 2.5rem; }
.coaching-list {
  list-style: none;
  text-align: left;
  max-width: 500px;
  margin: 0 auto 3rem;
}
.coaching-list li {
  font-size: 1.6rem;
  color: #ddd;
  padding: 0.7rem 0;
  padding-left: 2rem;
  position: relative;
}
.coaching-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--main-color);
  font-weight: 700;
}
.coaching-cta { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* --- Videos --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.video-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.video-card:hover { transform: translateY(-4px); }
.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a1512, #0d0b09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  font-size: 3rem;
}
.video-card-body { padding: 1.5rem; }
.video-card-body h4 { font-size: 1.5rem; margin-bottom: 0.5rem; line-height: 1.4; }
.video-card-body p { font-size: 1.2rem; color: #999; }

.videos-footer { text-align: center; margin-top: 3rem; }

/* --- Parcours / Chapters --- */
.breadcrumb {
  max-width: 1000px;
  margin: 0 auto 2rem;
  font-size: 1.3rem;
  color: #888;
}
.breadcrumb a { color: #888; }
.breadcrumb a:hover { color: var(--main-color); }
.breadcrumb .sep { margin: 0 0.6rem; }
.breadcrumb .current { color: var(--main-color); }

.parcours-header {
  max-width: 1000px;
  margin: 0 auto 4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.parcours-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 140, 26, 0.12);
  border: 1px solid rgba(255, 140, 26, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--main-color);
  flex-shrink: 0;
}
.parcours-header h1 {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-weight: 600;
  font-size: 3.2rem;
}

.chapter-list { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
.chapter-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 3rem;
}
.chapter-numeral {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-weight: 600;
  font-size: 4rem;
  color: var(--main-color);
  flex-shrink: 0;
  width: 60px;
}
.chapter-body { flex: 1; }
.chapter-label {
  font-size: 1.2rem;
  letter-spacing: 0.15rem;
  color: var(--main-color);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.chapter-title { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.3; }
.chapter-desc { font-size: 1.4rem; color: #ccc; line-height: 1.6; margin-bottom: 1.2rem; }
.chapter-link { font-size: 1.3rem; color: var(--main-color); font-weight: 700; display: inline-flex; align-items: center; gap: 0.5rem; }
.chapter-thumb {
  width: 220px;
  height: 130px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a1512, #0d0b09);
  border: 1px solid rgba(255, 140, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 140, 26, 0.4);
  font-size: 3rem;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .chapter-card { flex-direction: column; text-align: center; }
  .chapter-thumb { width: 100%; height: 180px; }
  .parcours-header { flex-direction: column; text-align: center; }
}

/* --- Content pages (About) --- */
.page-hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 14rem 9% 4rem;
}
.page-eyebrow {
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
  color: var(--main-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.page-title {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-weight: 600;
  font-size: 4.2rem;
  margin-bottom: 1.5rem;
}
.page-lead { font-size: 1.8rem; max-width: 720px; color: #ccc; line-height: 1.6; }

.content-section { padding: 4rem 2% 6rem; max-width: 1000px; margin: 0 auto; }
.content-section h2 { font-size: 2.6rem; font-weight: 700; margin-bottom: 1.5rem; }
.content-section p { font-size: 1.6rem; line-height: 1.7; color: #ccc; margin-bottom: 1.5rem; }
.content-block { margin-bottom: 5rem; }

/* --- Footer --- */
.footer { width: 100%; padding: 4rem 0; color: var(--text-color); text-align: center; margin-top: auto; }
.footer-container { width: 100%; padding: 0 4rem; display: flex; flex-direction: column; gap: 2rem; align-items: center; justify-content: center; text-align: center; }
.footer-logo { font-size: 2.2rem; font-weight: 700; color: var(--main-color); }
.footer-links { display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--text-color); font-size: 1.4rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--main-color); }
.footer-socials a { font-size: 2.4rem; color: var(--main-color); margin: 0 1rem; transition: transform 0.3s ease; }
.footer-socials a:hover { transform: scale(1.2); }
.footer-copy { font-size: 1.2rem; color: #888; }

@media screen and (max-width: 991px) {
  .category-grid, .level-grid, .video-grid { grid-template-columns: 1fr; }
}

@media screen and (max-width: 767px) {
  .hero-title { font-size: 3.4rem; }
  .hero-tagline { font-size: 1.6rem; }
  .page-title { font-size: 2.8rem; }
  .section-title { font-size: 2.6rem; }
  .nav-cta { font-size: 1.2rem; padding: .75rem .95rem; }
  .site-logo { font-size: 1.4rem; }
  .main-nav a { font-size: 1.2rem; padding: 0.6rem 0.7rem; }
  .footer-links { flex-direction: column; gap: 1.2rem; }
}
