@charset "UTF-8";

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


/* CSS Document */
/* --- VARIABLES Y BASE --- */
:root {
    --bg-page: #929697; 
    --text-main: #262525;
    --tenaz-pink: #f287c6;
}

body {
    margin: 0; 
    padding: 0;
    background-color: var(--bg-page);
    color: var(--text-main);
    font-family: "Roboto Mono", monospace;
    line-height: 1.5;
    overflow-x: hidden; /* Esto corta la franja de 5000px en el borde de la pantalla */
    width: 100%;
    position: relative;
}

/* --- ESTRUCTURA --- */
.legal-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 0;

}

.lang-title {
    font-size: 1.9rem; margin-bottom: 2rem; font-weight: 100;
    border-bottom: 0px solid rgba(38, 37, 37, 0.2); padding-bottom: 10px; text-transform: uppercase;
}

.legal-text h3 { font-size: 14px; text-transform: uppercase; margin: 25px 0 10px; }
.legal-text p { margin-bottom: 1rem; font-size: 12px; text-align: left; }

/* --- BOTONES RETORNO --- */
.retour-container { text-align: center; margin-top: 40px; }
.retour-graphic { display: block; margin: 0 auto 2.5rem auto; max-width: 170px; height: auto; }
.btn-retour {
    display: inline-block; padding: 14px 30px; background: var(--text-main);
    color: #fff; text-decoration: none; font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
}
.btn-retour:hover { background-color: #000; color: var(--tenaz-pink) !important; }

.mobile-retour { display: none; }
.desktop-retour { margin-bottom: 60px; }
/* Esto centra la flecha perfectamente en las páginas legales */
.scroll-up-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto; 
    width: 60px;
    height: 60px;
    opacity: 0.65;
    transition: all 0.3s ease;
    text-decoration: none;
}

.scroll-up-icon {
    width: 30px; /* Un poco más pequeña para que sea elegante en legal */
    height: auto;
    transform: rotate(180deg); /* Crucial para que apunte ARRIBA */
}

/* --- FOOTER SELLO ROTADO --- */
.footer-wrapper { width: 100%; margin-top: 100px; margin-bottom: 100px; overflow: hidden; }

.footer-banner-block {
    background-color: #929697;
    margin-left: calc((100% - 1200px) / 2 + 80px);
    padding: 30px 40px;
    width: 130%; 
    transform: rotate(-1.8deg); /* EL GIRO DEL SELLO */
    transform-origin: left center;
    display: block;
}

.footer-inner {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 25px; font-family: 'Roboto Mono', monospace;
}

.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; font-size: 13px; color: #262525; text-transform: uppercase; letter-spacing: 0.12em; }
.footer-col strong { font-size: 18px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    color: #646464; text-decoration: none; font-weight: 700; font-size: 12px;
    text-transform: uppercase; position: relative; display: inline-block; padding: 2px 6px; z-index: 1;
}
.footer-links a:hover { color: #f287c6; }
.footer-links a::after { content: ""; position: absolute; inset: 0; background-color: #262525; z-index: -1; display: none; }
.footer-links a:hover::after { display: block; }

.siret-label { font-size: 8px !important; font-weight: 700; margin-right: 4px; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .legal-columns { grid-template-columns: 1fr; gap: 0; }
    .legal-block { margin-bottom: 80px; padding-bottom: 40px; border-bottom: 0px solid rgba(38, 37, 37, 0.1); }
    .mobile-retour { display: block; }
    .desktop-retour { display: none; }
}

.footer-brand-link {
    text-decoration: none;
    color: inherit; /* Mantiene el color negro/gris original */
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: all 0.2s ease;
}

/* El símbolo izquierdo > */
.footer-brand-link::before {
    content: ">";
    margin-right: 8px;
    opacity: 0; /* Invisible por defecto */
    transition: all 0.2s ease;
    font-weight: 700;
}

/* El símbolo derecho < */
.footer-brand-link::after {
    content: "<";
    margin-left: 8px;
    opacity: 0; /* Invisible por defecto */
    transition: all 0.2s ease;
    font-weight: 700;
}

/* EFECTO HOVER: Aparecen los símbolos y no cambia el color a rosa */
.footer-brand-link:hover {
    color: inherit; /* Nos aseguramos de que NO se ponga rosa */
}

.footer-brand-link:hover::before,
.footer-brand-link:hover::after {
    opacity: 1;
    color: #000000; /* Blanco, por ejemplo */
}

/* Símbolos > < */
.footer-brand-link::before {
    content: "[";
    margin-right: 3px; 
    opacity: 0;
    transition: all 0.2s ease;
    font-weight: 700;
    
    /* AUMENTA ESTE VALOR PARA HACERLOS MÁS GRANDES */
    font-size: 27px; 
    
    /* Ajuste fino para que centren verticalmente con el texto */
    line-height: 0;
    margin-top: -2px; 
}

.footer-brand-link::after {
	content: "]";
    margin-left: 3px;
    opacity: 0;
    transition: all 0.2s ease;
    font-weight: 700;
    
    /* AUMENTA ESTE VALOR PARA HACERLOS MÁS GRANDES */
    font-size: 27px;
    
    line-height: 0;
    margin-top: -4px;
}
/* Control de la flecha en páginas legales */
.scroll-up-indicator {
    display: inline-flex;
    margin-bottom: 15px;
    text-decoration: none;
    opacity: 0.65;
    transition: opacity 0.3s ease;
}

.scroll-up-icon {
    width: 25px; /* Tamaño un poco más fino para legal */
    height: auto;
    transform: rotate(180deg); /* Apunta hacia arriba */
}

.scroll-up-indicator:hover {
    opacity: 1;
}




/* stilos de las paginas BIO */

:root{
      --bg-page: #929697;
      --text-main: #262525;
      --tenaz-pink: #f287c6;
    }

    body{
      margin:0;
      padding:0;
      background-color: var(--bg-page);
      color: var(--text-main);
      font-family: "Roboto Mono", monospace;
      line-height: 1.55;
      overflow-x:hidden;
    }

    /* --- ESTRUCTURA GENERAL --- */
    .bio-page{
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 220px 0;
	  overflow: visible !important; /* Añadido también aquí */
		
    }

    /* Titular principal con franja rosa larga */
    .section-headline {
    font-weight: 300; 
    font-size: 32px; 
    margin: 0 0 60px;
    display: inline-block; 
    position: relative; 
    z-index: 1;
    text-transform: uppercase; 
    letter-spacing: 2px;
}

    

    /* Subtítulo */
    .bio-subtitle{
      margin: -40px 0 40px;
      font-size: 14px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0.9;
    }

    /* Foto */
    .portrait{
      width: 100%;
      max-width: 520px;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
      margin: 0 0 34px 0;
    }

    .portrait img{
      width: 100%;
      height: auto;
      display:block;
    }

    /* Bio texto */
    .bio-text{
      max-width: 88ch;
      font-size: 16px;
      text-align: left;
    }

    .bio-text p{
      margin: 0 0 14px 0;
    }



    /* Separador */
    .sep{
      height:0px;
      width:100%;
      margin: 46px 0 26px;
      background: rgba(38,37,37,0.20);
    }

    /* Timeline */
    .timeline-title{
      font-weight: 300;
      font-size: 22px;
      margin: 0 0 26px;
      display: inline-block;
      position: relative;
      z-index: 1;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .timeline-title::after{
      content:"";
      position:absolute;
      left:0;
      bottom:0;
      height:100%;
      width:100%;
      background-color: var(--tenaz-pink);
      z-index:-1;
    }

    .timeline {
  display: flex;
  flex-direction: column;
  gap: 30px; /* Espacio entre hitos dentro de la caja */
  margin-bottom: 40px;
  /* Nueva caja única */
  background: transparent; 
  border: 0px solid rgba(0, 0, 0, 0.08);
  padding: 30px;
  border-radius: 0px; /* Manteniendo tu estilo industrial */
}

    .tl-item{
      background: transparent;
      border: NONE;
		
      border-radius: 0px;
      padding: 0;
    }

    .tl-year{
      font-weight: 900;
      letter-spacing: 0.05em;
      font-size: 18px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .tl-place{
      font-size: 16px;
      opacity: 0.9;
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.10em;
    }

    .tl-role{
      font-weight: 700;
      font-size: 24px;
      margin-bottom: 10px;
    }

    .tl-text{
      font-size: 14px;
      line-height: 1.6;
    }

    .tl-text ul{
      margin: 10px 0 0 0;
      padding-left: 18px;
    }

    .tl-text li{
      margin: 0 0 6px 0;
    }

    /* --- FOOTER (copiado del modelo legal) --- */
    .footer-wrapper{
      width: 100%;
      margin-top: 100px;
      margin-bottom: 100px;
      overflow: hidden;
    }

    .footer-banner-block{
      background-color: var(--bg-page);
      margin-left: calc((100% - 1200px) / 2 + 80px);
      padding: 30px 40px;
      width: 130%;
      transform: rotate(-1.8deg);
      transform-origin: left center;
      display: block;
    }

    .footer-inner{
      display:flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 25px;
      font-family: "Roboto Mono", monospace;
    }

    .footer-col{
      display:flex;
      flex-direction: column;
      align-items:flex-start;
      gap: 5px;
      font-size: 13px;
      color: var(--text-main);
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .footer-col strong{
      font-size: 18px;
    }

    .footer-links{
      display:flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a{
      color: #646464;
      text-decoration: none;
      font-weight: 700;
      font-size: 12px;
      text-transform: uppercase;
      position: relative;
      display: inline-block;
      padding: 2px 6px;
      z-index: 1;
    }

    .footer-links a:hover{
      color: var(--tenaz-pink);
    }

    .footer-links a::after{
      content:"";
      position:absolute;
      inset:0;
      background-color: var(--text-main);
      z-index:-1;
      display:none;
    }

    .footer-links a:hover::after{
      display:block;
    }

    .footer-brand-link{
      text-decoration:none;
      color: inherit;
      display: inline-flex;
      align-items:center;
      position: relative;
      transition: all 0.2s ease;
    }

    .footer-brand-link:hover{
      color: inherit;
    }

    .footer-brand-link::before{
      content:"[";
      margin-right: 3px;
      opacity:0;
      transition: all 0.2s ease;
      font-weight:700;
      font-size: 27px;
      line-height: 0;
      margin-top: -2px;
    }

    .footer-brand-link::after{
      content:"]";
      margin-left: 3px;
      opacity:0;
      transition: all 0.2s ease;
      font-weight:700;
      font-size: 27px;
      line-height: 0;
      margin-top: -4px;
    }

    .footer-brand-link:hover::before,
    .footer-brand-link:hover::after{
      opacity: 1;
      color:#000;
    }

    .siret-label{
      font-size: 8px !important;
      font-weight: 700;
      margin-right: 4px;
    }

    .copyright{
      opacity: 0.9;
    }

   /* --- RESPONSIVE --- */
    @media (max-width: 900px) {
      .bio-page {
        padding: 60px 20px 0 !important; /* Eliminamos los 220px laterales para ganar espacio */
      }

      .section-headline {
        font-size: 26px;
        margin-bottom: 40px;
      }

      .bio-subtitle {
        margin-top: -20px;
        font-size: 12px;
      }

      .portrait {
        max-width: 100%; /* La foto ahora ocupa todo el ancho disponible */
        margin-bottom: 30px;
      }

      .timeline {
        padding: 20px 15px !important; /* Caja más ajustada a los bordes */
      }

      .tl-role {
        font-size: 20px;
      }
		

      /* Footer corregido para que no flote a la derecha */
      .footer-banner-block {
        margin-left: -5% !important; /* Lo movemos a la izquierda para compensar la rotación */
        width: 110% !important; 
        padding: 30px 25px;
        transform: rotate(-2deg);
      }

      .footer-inner {
        padding-left: 20px; /* Alineamos el contenido del footer con el resto de la web */
      }
    }


/* --- ESTILO FOTO-ENANA IZQUIERDA --- */
.foto-enana {
  display: block;
  width: 150px;       /* Tamaño en escritorio */
  height: auto;
  margin-left: 0;      /* Pegada a la izquierda */
  margin-right: auto;  /* Empuja el espacio a la derecha */
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Ajuste para móviles */
@media (max-width: 900px) {
  .foto-enana {
    width: 120px;      /* Tamaño en móvil */
    margin-left: 0;    /* Mantiene la izquierda en móvil */
    margin-right: auto;
  }
}

.acotacion-musica {
  font-style: italic;
  color: #262525;      /* Color oscuro como tu texto base */
  font-size: 16px;     /* AJUSTA ESTE NÚMERO PARA EL TAMAÑO */
  letter-spacing: 0.05em;
  margin-top: 10px;
  display: block;      /* Asegura que respete márgenes */
  text-transform: none;
}
/* Configuración de las columnas */
.board-masonry {
  column-count: 2;    /* 3 columnas en escritorio */
  column-gap: 20px;   /* Espacio entre columnas */
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* El contenedor de cada pieza */
.board-item {
  break-inside: avoid; /* Evita que la foto se corte entre columnas */
  margin-bottom: 20px; /* Espacio vertical entre piezas */
  background: transparent;    /* Color de fondo mientras carga */
}

/* Estilo para Imágenes y Videos por igual */
.board-item img, 
.board-video {
  width: 100%;
  height: auto;        /* Mantiene la proporción original */
  display: block;
  transition: opacity 0.3s ease;
}

.board-item:hover {
  opacity: 0.9;        /* Efecto sutil al pasar el ratón */
}

/* Ajuste para tablets y móviles */
@media (max-width: 900px) {
  .board-masonry { column-count: 2; }
}

@media (max-width : 423px ){
  .board-masonry { column-count: 1; }
}

/* --- ACORDEONES BIO --- */

.bio-accordion {
  margin-bottom: 1.5rem;
  border: none;
  /* La sombra mágica que respeta el clip-path */
  filter: drop-shadow(0px 8px 5px rgba(0, 0, 0, 0.6));
  transition: filter 0.3s ease;
}

.bio-accordion:hover {
  /* Sombra un poco más profunda al pasar el ratón */
  filter: drop-shadow(0px 12px 15px rgba(0, 0, 0, 0.8));
}

.bio-accordion summary {
  background-color: #000;
  color: #DBDBDB;
  padding: 18px 25px;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between; /* Texto a la izq, símbolo a la der */
  align-items: center;
  transition: color 0.3s ease;
  font-family: 'Roboto Mono', monospace;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 2px;
  outline: none;
}

/* Ocultar flechas nativas */
.bio-accordion summary::-webkit-details-marker { display: none; }
.bio-accordion summary { list-style: none; }

/* FORMA 1: El primer botón (ej. Bio) */
.bio-accordion:nth-of-type(1) summary {
  clip-path: polygon(0% 0%, 100% 5%, 99% 90%, 1% 100%);
}

/* FORMA 2: El segundo botón (ej. Timeline) */
.bio-accordion:nth-of-type(2) summary {
  clip-path: polygon(1% 0%, 98% 0%, 100% 100%, 0% 100%);
}

/* El símbolo + / - */
.bio-accordion summary::after {
  content: "+";
  font-size: 2rem;
  font-weight: 200;
  line-height: 0;
  margin-bottom: 4px;
  transition: transform 0.3s ease;
}

.bio-accordion[open] summary::after {
  content: "–"; /* Guion largo para que sea elegante */
}

.bio-accordion summary:hover {
  color: var(--tenaz-pink);
}

/* --- CONTENIDO --- */

.accordion-content {
  padding: 25px;
  animation: industrialReveal 0.4s ease forwards;
}

@keyframes industrialReveal {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.bg-bio .accordion-content { background-color: transparent; }
.bg-timeline .accordion-content { background-color: rgba(181, 182, 183, 0.3); }

/* --- LÓGICA DEL LOGO SUPERIOR --- */

.header-logo-container {
    width: 100%;
    display: flex;
    margin-bottom: 50px; /* Espacio entre logo y franja rosa */
}

.main-logo {
    height: auto;
    display: block;
    transition: width 0.3s ease;
}

/* 1. DESKTOP (> 901px): Alineado a la izquierda */
@media ( min-width : 900px ){
    .header-logo-container {
        justify-content: flex-start;
    }
    .main-logo {
        width: 320px; /* AJUSTA AQUÍ EL TAMAÑO DESKTOP */
    }
    .bio-page {
        padding-top: 60px !important; /* Reducimos el padding superior para que el logo no baje tanto */
    }
}

/* 2. TABLET (900px): Centrado */
@media (max-width: 900px) {
    .header-logo-container {
        justify-content: center;
        margin-bottom: 40px;
    }
    .main-logo {
        width: 450px; /* AJUSTA AQUÍ EL TAMAÑO EN 900px */
    }
    .bio-page {
        padding-top: 40px !important;
    }
}

/* 3. MÓVIL (423px): Centrado */
@media (max-width: 423px) {
    .header-logo-container {
        justify-content: center;
        margin-bottom: 30px;
    }
    .main-logo {
        width: 280px; /* AJUSTA AQUÍ EL TAMAÑO EN MÓVIL */
    }
    .bio-page {
        padding-top: 30px !important;
    }
}

/* =========================================================
   FIX ESPECÍFICO PÁGINAS LEGALES
   ========================================================= */

/* 1) Forzar 3 columnas en escritorio */
@media (min-width: 901px) {
    .legal-columns {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
        align-items: start;
        margin-top: 40px;
    }

    .legal-page .mobile-retour { display: none !important; }
    .legal-page .desktop-retour { 
        display: block !important; 
        margin-top: 80px;
        text-align: center;
    }
}

/* 2) Títulos de idioma: Negro puro, sin líneas ni rosa */
.legal-page .lang-title {
    font-size: 1.9rem;
    margin-bottom: 2rem;
    font-weight: 900; /* Más peso para look industrial */
    color: var(--text-main);
    border: none; /* Quitamos la línea de abajo */
    padding-bottom: 0;
    text-transform: uppercase;
}

/* 3) Botón de Retorno: Sin efecto rosa en hover */
.legal-page .btn-retour:hover {
    background-color: #000;
    color: #fff !important; /* Texto blanco, eliminamos el rosa */
    transform: translateY(-2px);
}

/* 4) Ajuste Móvil */
@media (max-width: 900px) {
    .legal-columns {
        display: block; /* Un idioma bajo otro en móvil */
    }
    .legal-block {
        margin-bottom: 80px;
    }
    .legal-page .mobile-retour { display: block !important; }
    .legal-page .desktop-retour { display: none !important; }
}

/* LEGALES: Franja desde el texto al infinito derecha */
.legal-page .section-headline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 5000px;
    background-color: var(--tenaz-pink);
    z-index: -1;
}

/* Asegurar que el móvil no tenga scroll lateral */
@media (max-width: 900px) {
    .legal-page {
        padding: 40px 20px 0;
        overflow-x: hidden;
    }
}

/* BIO: Franja que nace en el texto y sale por la derecha */
.bio-page .section-headline::after {
    content: "";
    position: absolute;
    left: 0; 
    bottom: 0;
    height: 100%;
    width: 5000px; /* Ancho masivo para que siempre salga de la pantalla */
    background-color: var(--tenaz-pink);
    z-index: -1;
    pointer-events: none;
}

/* Asegurar que el móvil no tenga scroll lateral */
@media (max-width: 900px) {
    .bio-page {
        padding: 60px 20px 0 !important;
        overflow-x: visible !important; 
    }
}

.footer-wrapper {
    clear: both;
    width: 100%;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.footer-banner-block {
    /* Usamos 100vw para que la referencia sea siempre el borde de la pantalla */
    margin-left: calc((100vw - 1200px) / 2 + 80px) !important;
}

/* Si la pantalla es pequeña, forzamos un margen fijo */
@media (max-width: 1200px) {
    .footer-banner-block {
        margin-left: 10px !important;
    }
}