@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;
  --accent-teal: #2dd4bf;
}

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-toggle { cursor: default; }

.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: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 9%;
  position: relative;
  background: radial-gradient(ellipse at 30% 40%, rgba(255, 140, 26, 0.08), transparent 60%);
}
.hero-intro {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-weight: 500;
  font-size: 2.2rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}
.hero-title-big {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-weight: 600;
  font-size: 10rem;
  line-height: 0.95;
  color: #f0e4d0;
  display: block;
}
.hero-title-name {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-weight: 600;
  font-size: 4rem;
  line-height: 1.2;
  display: block;
  margin-top: 0.5rem;
}
.hero-title-name .accent { color: var(--accent-teal); }
.hero-tagline { font-size: 1.9rem; max-width: 650px; color: #ccc; line-height: 1.6; margin: 2.5rem 0 3rem; }

.social-buttons { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.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(--accent-teal); }
.social-btn.discord { background: rgba(45, 212, 191, 0.15); border-color: rgba(45, 212, 191, 0.3); }
.social-btn.youtube { background: rgba(255, 0, 0, 0.12); }
.social-btn.twitch { background: rgba(145, 70, 255, 0.15); }

/* --- Live banner --- */
.live-banner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2.5rem 3rem;
  flex-wrap: wrap;
}
.live-banner-text h3 { font-size: 1.9rem; font-weight: 700; margin-bottom: 0.5rem; }
.live-banner-text p { font-size: 1.4rem; color: #aaa; }
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff4444;
  margin-right: 0.6rem;
}

/* --- 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 {
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.level-card:hover {
  border-color: rgba(255, 140, 26, 0.4);
  background: rgba(255, 140, 26, 0.04);
  transform: translateY(-3px);
}
.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: 1300px;
  margin: 0 auto;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 4rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.coaching-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ec4899, var(--main-color));
}
.coaching-text { flex: 1; min-width: 280px; }
.coaching-text p { font-size: 1.6rem; color: #ccc; line-height: 1.7; margin-bottom: 0; text-align: left; }
.coaching-list {
  list-style: none;
  text-align: left;
  margin: 2rem 0 0;
  max-width: none;
}
.coaching-list li {
  font-size: 1.4rem;
  color: #ddd;
  padding: 0.5rem 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; flex-direction: column; align-items: center; gap: 1rem; flex-shrink: 0; }

/* --- Videos (real cards) --- */
.video-channel-row { max-width: 1300px; margin: 0 auto 4rem; }
.video-channel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--main-color);
}
.video-channel-header h3 { font-size: 1.8rem; font-weight: 700; }
.video-channel-header p { font-size: 1.3rem; color: #999; }
.video-channel-header .link-arrow { flex-shrink: 0; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.video-card {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease;
  display: block;
  color: inherit;
  text-decoration: none;
}
.video-card:hover { transform: translateY(-4px); }
.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a1512, #0d0b09);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-thumb i { font-size: 4rem; color: rgba(255, 140, 26, 0.5); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card-body { padding: 1.6rem; }
.video-card-body h4 { font-size: 1.4rem; margin-bottom: 0.6rem; line-height: 1.4; font-weight: 600; }
.video-card-body p { font-size: 1.2rem; color: #888; }

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

.video-embed-wrapper {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.video-embed-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* --- Feed list (real videos, class.passeos.com style) --- */
.feed-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.feed-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.2rem 1.8rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.feed-item:hover { border-color: rgba(255, 140, 26, 0.4); background: rgba(255, 140, 26, 0.04); }
.feed-thumb {
  width: 180px;
  min-width: 180px;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  object-fit: cover;
  background: #111;
}
.feed-info h4 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.7rem; line-height: 1.4; }
.feed-meta { display: flex; align-items: center; gap: 1.2rem; font-size: 1.2rem; color: #999; flex-wrap: wrap; }
.feed-tag {
  background: rgba(255, 140, 26, 0.15);
  color: var(--main-color);
  padding: 0.2rem 0.9rem;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03rem;
}

@media screen and (max-width: 600px) {
  .feed-item { flex-direction: column; align-items: flex-start; }
  .feed-thumb { width: 100%; }
}

/* --- Support banner --- */
.support-banner {
  max-width: 1300px;
  margin: 0 auto 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2rem 3rem;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease;
}
.support-banner:hover { border-color: rgba(255, 140, 26, 0.4); }
.support-banner i { font-size: 2.2rem; color: var(--main-color); }
.support-banner span { font-size: 1.6rem; font-weight: 600; }

/* --- 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; }
}

/* --- Grimoire layout (2 columns) --- */
.grimoire-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

.grimoire-intro {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-size: 1.6rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.category-list { display: flex; flex-direction: column; gap: 1.5rem; }
.category-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.8rem 2rem;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.category-row:hover { border-color: rgba(255, 140, 26, 0.4); background: rgba(255, 140, 26, 0.04); }
.category-row-icon { font-size: 2.4rem; color: var(--main-color); flex-shrink: 0; width: 40px; text-align: center; }
.category-row-text { flex: 1; }
.category-row-text h3 { font-size: 1.7rem; font-weight: 700; margin-bottom: 0.3rem; }
.category-row-text p { font-size: 1.3rem; color: #aaa; }
.category-row > .link-arrow { flex-shrink: 0; }

.level-panels { display: flex; flex-direction: column; gap: 2rem; }
.level-panel {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border-left: 4px solid var(--lvl-color, var(--main-color));
  padding: 2.5rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.level-panel:hover { background: rgba(255, 255, 255, 0.05); transform: translateX(3px); }
.level-panel-label {
  font-size: 1.2rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--lvl-color, var(--main-color));
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.level-panel h3 { font-size: 1.9rem; font-weight: 700; margin-bottom: 1.6rem; }
.level-panel ul { list-style: none; }
.level-panel li {
  font-size: 1.4rem;
  color: #ddd;
  padding: 0.55rem 0;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.level-panel li i { color: var(--lvl-color, var(--main-color)); font-size: 1.7rem; flex-shrink: 0; }

@media screen and (max-width: 991px) {
  .grimoire-layout { grid-template-columns: 1fr; }
}

/* --- 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: 5rem 0 2rem; color: var(--text-color); }
.footer-container { width: 100%; padding: 0 4rem; display: flex; flex-direction: column; gap: 3rem; max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo { font-size: 2rem; font-weight: 700; color: var(--main-color); margin-bottom: 1rem; }
.footer-disclaimer { font-size: 1.3rem; color: #888; max-width: 480px; line-height: 1.6; }
.footer-icon-links { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.footer-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-color);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}
.footer-icon-link i { font-size: 2.2rem; color: var(--main-color); }
.footer-icon-link:hover { color: var(--main-color); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-links { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.footer-links a { color: #888; font-size: 1.3rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--main-color); }
.footer-copy { font-size: 1.2rem; color: #666; }

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

@media screen and (max-width: 767px) {
  .video-grid > a:nth-child(n+5) { display: none; }
  .hero-title { font-size: 4rem; }
  .hero-intro { font-size: 1.6rem; }
  .hero-tagline { font-size: 1.6rem; }
  .coaching-block { flex-direction: column; text-align: center; padding: 3rem 2rem; }
  .coaching-text p { text-align: center; }
  .live-banner { flex-direction: column; text-align: center; }
  .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; }
}
