/* ============================================
   STÉPHANIE FOYER — STYLES PARTAGÉS
   Pour modifier les couleurs, changez ces variables :
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --gold: #d4a853;
  --gold-light: #f5e6c4;
  --gold-dark: #b8912e;
  --bg-dark: #0e0e18;
  --bg-card: #16162a;
  --bg-card-hover: #1e1e38;
  --text-light: #e8e4dd;
  --text-muted: #9a9a9a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(14, 14, 24, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
  transition: all 0.4s;
}

nav.scrolled {
  padding: 0.6rem 2rem;
  background: rgba(14, 14, 24, 0.95);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ── SECTIONS ── */
section, .page-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header {
  padding-top: 8rem;
  padding-bottom: 2rem;
  text-align: center;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.gold-line.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ── BOUTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(212, 168, 83, 0.1);
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 5rem 2rem 2rem;
  max-width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-overline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.05;
  margin-bottom: 1rem;
}

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

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.hero-roles {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.role-tag {
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  transition: all 0.3s;
  text-decoration: none;
}

.role-tag:hover {
  background: rgba(212, 168, 83, 0.1);
  border-color: var(--gold);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ── À PROPOS ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 83, 0.2);
}

.about-image-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}

.about-text p {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  font-weight: 300;
}

.about-text p:first-of-type {
  color: var(--text-light);
  font-size: 1.05rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 168, 83, 0.15);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── LIVRES ── */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.book-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 83, 0.1);
  transition: all 0.4s;
}

.book-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.book-cover {
  width: 100%;
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, #1a1a3a, #2a2a4a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-align: center;
  padding: 1.5rem;
  font-weight: 600;
}

.book-info { padding: 1.5rem; }

.book-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.book-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
}

.book-price {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  width: 100%;
  justify-content: center;
}

.btn-amazon:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ── MUSIQUE ── */
.music-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.music-track {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(212, 168, 83, 0.1);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  transition: all 0.3s;
}

.music-track:hover {
  border-color: rgba(212, 168, 83, 0.3);
  background: var(--bg-card-hover);
}

.track-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  min-width: 40px;
  text-align: center;
}

.track-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.track-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.track-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

.track-audio audio {
  width: 100%;
  height: 36px;
  margin-top: 0.5rem;
}

.track-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 83, 0.3);
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  background: transparent;
}

.btn-download:hover {
  background: rgba(212, 168, 83, 0.1);
  border-color: var(--gold);
}

/* ── VIDÉOS ── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.video-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 83, 0.1);
  transition: all 0.3s;
}

.video-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-4px);
}

.video-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

.video-info { padding: 1.2rem; }

.video-platform {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.video-title {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ── GALERIE ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid rgba(212, 168, 83, 0.1);
  transition: all 0.3s;
}

.gallery-item:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: scale(1.02);
}

.gallery-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a3a, #2a2a4a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 24, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.gallery-overlay p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 83, 0.1);
  transition: all 0.3s;
  text-decoration: none;
}

.blog-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-4px);
}

.blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a3a, #2a2a4a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.blog-content { padding: 1.5rem; }

.blog-date {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 1rem;
  font-weight: 500;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.contact-link:hover { color: var(--gold); }

.contact-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 83, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(212, 168, 83, 0.1);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 300;
}

footer .footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ── TRADUCTION ── */
.lang-switcher {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lang-switcher:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(14, 14, 24, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .hamburger { display: flex; z-index: 1001; }

  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .music-track { grid-template-columns: 1fr; text-align: center; }
  .videos-grid { grid-template-columns: 1fr; }
  section, .page-section { padding: 4rem 1.2rem; }
  .hero-roles { gap: 0.8rem; }
  .role-tag { font-size: 0.7rem; padding: 0.4rem 0.8rem; }
}
</style>
