/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-black: #050505;
  --color-black-soft: #0E0E0E;
  --color-white: #F5F2EA;
  --color-gray-light: #B8B3A7;
  --color-gray-dark: #2A2A2A;
  --color-gold: #B88746;
  --color-gold-hover: #D0A15F;
  --color-copper: #7A4A28;
  
  --font-title: 'Cinzel', Georgia, serif;
  --font-body: 'Inter', Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  
  /* Halos bronze très diffus intégrés au fond */
  background-image: 
    radial-gradient(circle at 10% 25%, rgba(184, 135, 70, 0.035) 0%, transparent 40%),
    radial-gradient(circle at 90% 75%, rgba(184, 135, 70, 0.04) 0%, transparent 45%);
  background-attachment: fixed;
  opacity: 0;
  animation: fadeInBody 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInBody {
  to { opacity: 1; }
}

/* Subtle Film Grain Noise */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  content: "";
  opacity: 0.018;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Silhouette fantôme subtile en arrière-plan */
.background-silhouette {
  position: fixed;
  top: 15%;
  right: -5%;
  width: 50vw;
  height: 70vh;
  background-image: url("../Site/home/trone_25_GOODretouche_lumiere_net_sans_flou_(3)_web.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  opacity: 0.015; /* 1.5% opacité pour rester extrêmement discret */
  filter: grayscale(100%) contrast(140%) brightness(30%);
  pointer-events: none;
  z-index: -1;
}

/* Header Centré */
.main-header {
  padding-top: 40px;
  padding-bottom: 20px;
  z-index: 100;
  position: relative;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.brand-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-white);
  cursor: default;
  position: relative;
}

/* Shiny Gold Text Effect */
.animated-shiny-text {
  background: linear-gradient(to right, #ffffff 20%, var(--color-gold) 40%, var(--color-gold-hover) 60%, #ffffff 80%);
  background-size: 200% auto;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 6s linear infinite;
  text-shadow: 0 0 40px rgba(184, 135, 70, 0.1);
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.main-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-light);
  transition: color 0.3s ease;
}

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

/* About Section Layout */
.about-section {
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
  position: relative;
}

.about-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1100px;
  padding: 0 40px;
}

/* About Hero Block (Two balanced columns) */
.about-hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  padding-top: 40px;
  padding-bottom: 60px;
  width: 100%;
}

.about-hero-image-wrapper {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  max-width: 440px; /* Ajusté pour le portrait Home-hero */
  height: auto;
  opacity: 0;
  animation: wrapper-fade-in 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  
  /* Masque de fondu linéaire croisé plus large pour adoucir le raccord du fond */
  mask-image: 
    linear-gradient(to right, transparent, black 20%, black 80%, transparent),
    linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  mask-composite: intersect;
  -webkit-mask-image: 
    linear-gradient(to right, transparent, black 20%, black 80%, transparent),
    linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-composite: source-in;
}

@keyframes wrapper-fade-in {
  0% {
    opacity: 0;
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.about-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-hero-content {
  flex-grow: 1;
  opacity: 0;
  animation: wrapper-fade-in 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.section-main-title {
  font-family: var(--font-title);
  font-size: clamp(20px, 2.4vw, 27px); /* Taille réduite de 25% pour un rendu sobre et éditorial */
  font-weight: 500;
  letter-spacing: 0.08em; /* Tracking adouci */
  color: rgba(216, 212, 201, 0.75); /* Blanc ivoire / gris chaud mat pour ne pas rivaliser avec DEBSITO */
  margin-bottom: 18px;
  text-transform: uppercase;
}

.about-lead-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
  color: rgba(245, 242, 234, 0.85);
  letter-spacing: 0.01em;
}

/* Acts layout (Asymmetrical editorial style) */
.about-act {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 70px;
  gap: 40px; /* Moins d'espace pour rapprocher l'image et la timeline du texte */
  width: 100%;
  opacity: 0;
  animation: wrapper-fade-in 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.act-text-content {
  width: 72%; /* Bloc large à gauche pour le confort visuel */
  max-width: 780px;
}

.act-visual-aside {
  width: 23%; /* Colonne étroite à droite pour les éléments visuels */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
}

.act-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  margin-bottom: 22px;
  text-transform: uppercase;
  text-align: left; /* Alignement gauche */
}

.act-text-content p {
  font-family: var(--font-body);
  font-size: 15px; /* Augmenté pour un confort de lecture supérieur */
  line-height: 1.8; /* Plus aéré et élégant */
  font-weight: 300;
  color: var(--color-gray-light);
  margin-bottom: 24px;
  letter-spacing: 0.015em;
  text-align: left; /* Alignement à gauche */
}

/* Timeline vertical line decorative */
.decorative-timeline-line {
  width: 1px;
  height: 140px;
  background: linear-gradient(to bottom, var(--color-gold) 0%, rgba(184, 135, 70, 0.15) 60%, transparent 100%);
  opacity: 0.4;
}

/* Timeline Date Marker */
.timeline-date-marker {
  font-family: var(--font-title);
  font-size: 15px;
  color: var(--color-gold);
  opacity: 0.45;
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-align: center;
}

/* Vignette Cover EP / Portrait Act II */
.vignette-wrapper {
  position: relative;
  width: 100%;
  max-width: 170px; /* Taille noble pour l'image */
  aspect-ratio: 3 / 4; /* Format vertical pour correspondre au portrait Parano */
  flex-shrink: 0;
  
  /* Masque de fondu linéaire croisé encore plus doux et progressif */
  mask-image: 
    linear-gradient(to right, transparent, black 26%, black 74%, transparent),
    linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  mask-composite: intersect;
  -webkit-mask-image: 
    linear-gradient(to right, transparent, black 26%, black 74%, transparent),
    linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  -webkit-mask-composite: source-in;
}

/* Image Acte III (about-page-08) - Raccord linéaire croisé ultra-progressif du halo rouge */
.vignette-act3 {
  max-width: 255px; /* Taille rééquilibrée par rapport à l'Acte II tout en restant atmosphérique */
  aspect-ratio: 1 / 1; /* Aspect ratio carré (l'image fait 3702x3888) pour éviter le recadrage vertical serré */
  
  /* Double fondu linéaire croisé multi-stop très progressif : élargit le rouge et allonge la transition */
  mask-image: 
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.1) 8%, black 25%, black 75%, rgba(0,0,0,0.1) 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 12%, black 76%, rgba(0,0,0,0.1) 90%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image: 
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.1) 8%, black 25%, black 75%, rgba(0,0,0,0.1) 92%, transparent 100%),
    linear-gradient(to bottom, transparent, black 12%, black 76%, rgba(0,0,0,0.1) 90%, transparent 100%);
  -webkit-mask-composite: source-in;
}

/* Réajustement des colonnes de l'Acte III sur desktop pour donner du souffle à la scène */
@media (min-width: 769px) {
  .act-3 .act-visual-aside {
    width: 28%; /* Donne plus d'espace à l'image scénique */
  }
  .act-3 .act-text-content {
    width: 67%; /* Ajuste le texte pour garder l'alignement global */
  }
}

.vignette-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Manifesto blockquote divider */
.about-quote-divider {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 0; /* Réduit pour plus de sobriété */
  position: relative;
}

.blockquote-wrapper {
  max-width: 700px;
  text-align: center;
  position: relative;
}

.manifesto-blockquote {
  font-family: var(--font-title);
  font-size: clamp(15px, 1.6vw, 18px); /* Taille réduite */
  color: rgba(245, 242, 234, 0.65); /* Opacité plus douce, moins slogan */
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.08em; /* Plus d'espace pour un effet littéraire */
  position: relative;
  padding: 0 40px;
  text-align: center;
}

.manifesto-blockquote::before {
  content: "“";
  font-family: var(--font-title);
  font-size: 60px;
  color: var(--color-gold);
  opacity: 0.06; /* Plus discret */
  position: absolute;
  top: -30px;
  left: -10px;
  line-height: 1;
}

.manifesto-blockquote::after {
  content: "”";
  font-family: var(--font-title);
  font-size: 60px;
  color: var(--color-gold);
  opacity: 0.06; /* Plus discret */
  position: absolute;
  bottom: -60px;
  right: -10px;
  line-height: 1;
}

/* Stats badges */
.stats-badges-container {
  display: flex;
  flex-wrap: wrap; /* Sécurise l'affichage sur 3 badges */
  gap: 20px 36px;
  margin-top: 28px;
  margin-bottom: 12px;
}

.stat-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 2px solid var(--color-gold);
  padding-left: 14px;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.1;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gray-light);
  margin-top: 4px;
}

.final-text-line {
  margin-top: 32px;
  font-weight: 400 !important;
  color: var(--color-white) !important;
}

/* CTA de fin de page centré horizontalement */
.about-cta-container {
  margin-top: 50px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.about-cta-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  text-decoration: none;
  border: 1px solid var(--color-gold);
  padding: 12px 32px;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: transparent;
}

.about-cta-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
  box-shadow: 0 0 15px rgba(184, 135, 70, 0.25);
  transform: translateY(-1px);
}

/* Footer Section */
.main-footer {
  width: 100%;
  background-color: var(--color-black);
  border-top: 1px solid rgba(184, 135, 70, 0.12);
  padding: 60px 20px 40px 20px;
  margin-top: 40px; /* Réduit pour resserrer l'espace avec le bouton final */
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.social-link-btn {
  color: var(--color-white);
  opacity: 0.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.social-link-btn svg {
  width: 24px;
  height: 24px;
}

.social-link-btn:hover {
  color: var(--color-gold);
  opacity: 1;
  transform: translateY(-1.5px);
}

.footer-bottom-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-email {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-gray-light);
  text-decoration: none;
  text-transform: lowercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: var(--color-gold);
}

.footer-copyright {
  font-size: 11px;
  color: var(--color-gray-light);
  opacity: 0.35;
  letter-spacing: 0.02em;
}

/* Responsive Tablet & Mobile Media Queries */
@media (max-width: 768px) {
  body {
    background-image: 
      radial-gradient(circle at 50% 15%, rgba(184, 135, 70, 0.04) 0%, transparent 50%);
  }

  .background-silhouette {
    display: none; /* Désactivé sur mobile pour la lisibilité */
  }

  .main-header {
    padding-top: 24px;
    padding-bottom: 10px;
  }
  
  .header-container {
    gap: 8px;
  }
  
  .brand-title {
    font-size: 28px;
    letter-spacing: 0.06em;
  }

  .main-nav {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .main-nav ul {
    gap: 12px;
    padding: 4px 0;
  }
  
  .main-nav a {
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  .about-container {
    padding: 0 20px;
  }

  .about-hero {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 15px;
    padding-bottom: 20px;
  }

  .about-hero-image-wrapper {
    max-width: 260px;
    mask-image: radial-gradient(circle at 50% 48%, rgba(0,0,0,1) 40%, rgba(0,0,0,0.15) 85%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: radial-gradient(circle at 50% 48%, rgba(0,0,0,1) 40%, rgba(0,0,0,0.15) 85%, rgba(0,0,0,0) 100%);
  }

  .about-hero-content {
    width: 100%;
    text-align: center;
  }

  .section-main-title {
    font-size: 28px;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
  }

  .about-lead-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .about-act {
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
  }

  .act-text-content {
    width: 100%;
    text-align: left;
  }

  .act-title {
    font-size: 18px;
    margin-bottom: 14px;
    text-align: left; /* Aligné à gauche sur mobile */
  }

  .act-text-content p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .act-visual-aside {
    width: 100%; /* Résout le bug de compression à 23% sur mobile */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px; /* Espace équilibré après le texte/statistiques */
  }

  .vignette-wrapper {
    width: 100%;
    max-width: 145px; /* Réduit pour éviter de prendre trop de hauteur */
    margin: 0 auto;
  }

  .vignette-act3 {
    max-width: 145px; /* Taille rééquilibrée avec l'Acte II sur mobile */
    /* Masque optimisé pour petit écran pour allonger le fondu sur une surface plus étroite */
    mask-image: 
      linear-gradient(to right, transparent 0%, rgba(0,0,0,0.1) 12%, black 30%, black 70%, rgba(0,0,0,0.1) 88%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, black 15%, black 72%, rgba(0,0,0,0.1) 88%, transparent 100%);
    -webkit-mask-image: 
      linear-gradient(to right, transparent 0%, rgba(0,0,0,0.1) 12%, black 30%, black 70%, rgba(0,0,0,0.1) 88%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, black 15%, black 72%, rgba(0,0,0,0.1) 88%, transparent 100%);
  }

  .timeline-date-marker {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .decorative-timeline-line {
    height: 35px; /* Plus court sur mobile pour aérer */
  }

  .about-quote-divider {
    padding: 10px 0;
  }

  .manifesto-blockquote {
    font-size: 14.5px;
    line-height: 1.45;
    padding: 0 20px;
  }

  .manifesto-blockquote::before,
  .manifesto-blockquote::after {
    font-size: 36px;
  }

  .manifesto-blockquote::before {
    top: -16px;
  }

  .manifesto-blockquote::after {
    bottom: -36px;
  }

  .stats-badges-container {
    justify-content: center;
    gap: 10px 24px;
    margin-top: 12px;
    margin-bottom: 6px;
  }

  .stat-badge {
    border-left: 1.5px solid var(--color-gold);
    padding-left: 10px;
  }

  .stat-num {
    font-size: 22px;
  }

  .stat-label {
    font-size: 9.5px;
  }

  .about-cta-container {
    margin-top: 16px;
    justify-content: center; /* Centrage horizontal sur mobile */
  }

  .about-cta-btn {
    padding: 9px 20px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .social-link-btn svg {
    width: 26px;
    height: 26px;
  }
  
  .footer-social-row {
    gap: 20px;
    flex-wrap: wrap;
  }
}
