@font-face {
    font-family: 'Anton';
    src: url('../assets/fonts/Anton-Regular.eot');
    src: url('../assets/fonts/Anton-Regular.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Anton-Regular.woff2') format('woff2'),
        url('../assets/fonts/Anton-Regular.woff') format('woff'),
        url('../assets/fonts/Anton-Regular.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CoFo Sans';
    src: url('../assets/fonts/CoFoSans-Regular.eot');
    src: url('../assets/fonts/CoFoSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/CoFoSans-Regular.woff2') format('woff2'),
        url('../assets/fonts/CoFoSans-Regular.woff') format('woff'),
        url('../assets/fonts/CoFoSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root{ --header-h: 60px; }
*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  height: 100%;
}

body{
  overflow-x: hidden;
  margin: 0;
  background: #fff;
  color: #000;
}
p{
  font-family: "CoFo Sans", sans-serif;
  font-size: 18px;
  line-height: 1.35;
  color: #111;
}

a{
  color: #111;
}

.page { width: 100%;}

.site-header{
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: var(--header-h);
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  transition: transform 500ms ease, opacity 500ms ease;
}

.site-header.is-hidden{
  opacity: 0;
  transform: translateY(-110%);
  pointer-events: none;
}

/* LOADING */

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 1;
  transition: opacity 300ms ease;
}

#loading.is-leaving{
  opacity: 0;
}

#loading.is-off{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#loading-animation svg { width: 100%; height: 100%; display:block; }
.animation__loading{
  margin-left: -30px;
  width: min(35vw, 150px);
  aspect-ratio: 345 / 290;
}
#loading p{
  margin: 0;
  display: inline-block;
}

#loading.is-off{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Utilidad */
.is-hidden{
  opacity: 0 !important;
  pointer-events: none !important;
}

/* MENU */

.menu{
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}

.menu__list{
  list-style: none;
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1200px;
}

.menu__list--desktop{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.menu__link{
  text-decoration: none;
  color: #000;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.menu__label{
  font-family: "Anton", sans-serif;
  font-weight: bold;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1;
}

.menu__value{
  font-family: "CoFo Sans", sans-serif;
  font-weight: normal;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1;
}


.menu__list--mobile{
  display: none; 
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 24px;
  max-width: 980px;
}

.menu__icon-link{
  width: 78px;             
  height: 78px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.menu__icon{
  width: 56px;
  height: 56px;
  display: block;
}

/* ====SECTIONS==== */
.section {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center; 
  justify-content: center;
  font-size: 2rem;
  font-family: sans-serif;
  background-color: #ffffff; 
  scroll-margin-top: var(--header-h);
}

/*  ==HOME==  */
.section-home{
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.home-canvas{
  position: absolute;
  inset: 0;
  z-index: 1;
}

#particlesCanvas{
  width: 100%;
  height: 100%;
  display: block;
}

.home-stage{
  position: relative;
  width: 41%;
  max-width: 790px;
  min-width: 400px;
  z-index: 2;
}

.home-lala{
  height: 25vh;
  max-height: 310px;
  min-height: 100px;
}
.home-lala img{
  height: 100%;
  width: auto;
  display: block;
  margin: auto;
  cursor: pointer;
}

#theartoflalaLogo {
  width: 100%; 
  max-width: 600px;   
  min-width: 400px;
  aspect-ratio: 815 / 215;     
  height: auto;
  margin: auto;
}

#theartoflalaLogo svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}


/* ARROWS */
.home-arrow{
  margin-top: 5px;
  display: flex;
  justify-content: center;
}

#arrowHome{
  height: 140px;
  aspect-ratio: 80 / 290;
}

#arrowHome svg{
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.section-arrow{
  width: 100%;
  display: flex;
  justify-content: center;
  transform: translateY(-40px);
}

#arrowBetween{
  width: min(80px, 16vw);
  max-width: 80px;
  aspect-ratio: 80 / 290;
}

#arrowBetween svg{
  width: 100% !important;
  height: 100% !important;
  display: block;
}


.home-text{
  transform: translateY(-20px);
  text-align: center;
  min-width: 260px; 
  align-items: flex-start;
}

.home-text p{ 
  margin: 0 !important;
  line-height: 1.3;
}

/* Transiciones para intro */
#theartoflalaLogo{
  opacity: 1;
}

.home-lala,
.home-text,
.home-canvas{
  opacity: 1;
}

.home-lala{ transition: opacity 500ms ease; }
.home-text{ transition: opacity 200ms ease; }
.home-canvas{ transition: opacity 350ms ease; }

/* CONTENEDOR PRINCIPAL DE ABOUT */
.section-about {
  height: 100%;
  color: #000;
}

.about {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

/* COLUMNA TÍTULO */
.about__title {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center; 
  justify-content: center; 
}

/* CANVAS SOLO EN EL CONTENEDOR DEL TÍTULO */
.about__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

#aboutCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* TÍTULO SOBRE EL CANVAS */
.about__heading {
  position: relative;
  width: 90%;
  height: 90vh;
  background-image: url('../assets/titulo-meet-desk.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* COLUMNA TEXTO */
.about__text {
  width: 50%;
  height: 100%;
  padding: 60px;
  overflow: auto; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__text p {
  margin: 0 0 20px 0;
}

/* ===== PLAYERAS ===== */
.section-playeras{
  position: relative;
  overflow: hidden;
  color: #000;

  /* anula el 100vh global */
  height: auto;
  min-height: 0;

  padding: clamp(48px, 6vh, 90px) 0;
}

/* Canvas fondo */
.playeras__canvas{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

#playerasCanvas{
  width: 100%;
  height: 100%;
  display: block;
}

/* Stage */
.playeras__stage{
  position: relative;
  z-index: 2;

  width: min(1100px, 92vw);
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  gap: clamp(18px, 3vh, 34px);
}

/* ===== PLAYERAS (FIGURES) ===== */
.playeras__shirt{
  position: relative;
  height: 50vh;          /* tu regla */
  width: min(900px, 92vw);
  margin: 0 auto;
  overflow: visible;
}

.playeras__mockup,
.playeras__art{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* Orden de capas */
.playeras__mockup{ z-index: 1; }
.playeras__art{ z-index: 2; }

/* Opcional: si el recorte necesita “microajuste”, activa y ajusta aquí */
/*
.playeras__art{
  transform: translateY(0px) scale(1);
  transform-origin: center;
}
*/

/* Thicker */
.thickerWrap{
  width: 100vw;
  height: 20vh;
  overflow: hidden;
  white-space: nowrap;
}

.thickerInner{
  height: 100%;
  display: flex;
  align-items: center;
  will-change: transform;
  -webkit-animation: marquee 20s linear infinite;
          animation: marquee 20s linear infinite;
  
}

.thickerText{
  font-family: 'Anton', sans-serif;
  font-size: clamp(7rem, 20vh, 15rem);
}


@-webkit-keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ===== COPY ===== */
.playeras__copy{
  margin: 0;
  max-width: 560px;
}

.playeras__cta{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/*  ====  CONTACTO  ====  */

.section-contacto{
  position: relative;
  overflow: hidden;
  color: #000;
  height: auto;
  min-height: 70vh;
}

/* wrapper general */
.contacto{
  position: relative;
  width: 100%;
  height: auto;
}

.contacto__canvas{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

#contactoCanvas{
  width: 100%;
  height: 100%;
  display: block;
}


.contacto__stage{
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: clamp(64px, 8vh, 110px) 24px 32px;
}

/* Título grande */
.contacto__title{
  margin: 0;
  font-family: "Anton", sans-serif;
  font-weight: bold;
  line-height: 0.88;
  letter-spacing: 0.01em;
  font-size: clamp(56px, 7vw, 130px);
  text-transform: uppercase;
}

/* Lista de contacto */
.contacto__list{
  list-style: none;
  margin: clamp(18px, 3vh, 32px) 0 0;
  padding: 0;

  display: grid;
  gap: 10px;
}

.contacto__item{
  margin: 0;
}

/* Si cada item es link */
.contacto__link{
  display: inline-flex;
  align-items: baseline;
  gap: 10px;

  color: inherit;
  text-decoration: none;
}

/* label en Anton */
.contacto__label{
  font-family: "Anton", sans-serif;
  font-weight: bold;
  line-height: 1;
  font-size: clamp(18px, 1.6vw, 28px);
  text-transform: lowercase;
}

/* value en CoFo */
.contacto__value{
  font-family: "CoFo Sans", sans-serif;
  font-weight: normal;
  line-height: 1.1;
  font-size: clamp(18px, 1.8vw, 30px);
}

/* WhatsApp separado y más grande */
.contacto__whatsapp{
  display: inline-block;
  margin: 50px 0 50px 0;

  font-family: "Anton", sans-serif;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.01em;

  font-size: clamp(26px, 3vw, 44px);
  text-transform: uppercase;

  color: inherit;
  text-decoration: none;
}

/* Footer al fondo */
.contacto__footer{
  margin-top: auto;
  padding-top: clamp(26px, 5vh, 46px);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

/* Texto footer */
.contacto__footer p{
  margin: 0;
  letter-spacing: 0.02em;
  
}

.allrights p { text-transform: uppercase; } 

.contacto__credit{
  text-transform: none;
  margin-top: 8px;
}

.contacto__credit a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* Breakpoint: Móvil */
@media (max-width: 850px){
  p{
    font-size: 20px;
  }

  .site-header{
    height: var(--header-h);
  }

  .home-stage { min-width: 320px; }
  #theartoflalaLogo { min-width: 280px; }

  .menu__list--desktop{
    display: none;
  }

  .menu__list--mobile{
    display: flex;
  }

  .menu__icon-link{
    width: 60px;
    height: 60px;
  }

  .menu__icon{
    width: 40px;
    height: 40px;
  }

  /* Home */
  #theartoflalaLogo {width: 70%; }

  /* About */
  .section-about {
    height: auto; /* anula 100vh SOLO en About */
    min-height: calc(100vh - var(--header-h)); /* para que no se sienta “corto” */
  }

  .about {
    height: auto;
    flex-direction: column;
  }

  .about__title {
    width: 100vw;
    height: 300px;
  }

  .about__heading {
    height: 300px;
    background-image: url('../assets/titulo-meet-mobile.svg');
  }

  .about__text {
    width: 100%;
    height: auto;
    padding: 20px;
    overflow: visible;
  }
  .about__text p {
    text-align: center;
  }

  /* Playeras */
  .section-playeras{
    padding: 44px 0 64px;
  }

  .playeras__stage{
    width: min(680px, 92vw);
    gap: 22px;
  }

  /* Las alturas en vh se mantienen */
  .playeras__tickerText{
    font-size: clamp(84px, 14vw, 160px);
  }

  .playeras__copy{
    max-width: 320px;
  }

    .thickerInner{
    -webkit-animation: marquee 5s linear infinite;
            animation: marquee 5s linear infinite;
    
  }
  #arrowHome{ height: 100px;}
  .contacto__stage{
    padding: clamp(56px, 8vh, 90px) 18px 28px;
  }

  .contacto__title{
    font-size: clamp(44px, 10vw, 92px);
    line-height: 1.15;
  }

  .contacto__list{
    gap: 14px;
    margin-top: 22px;
  }

  .contacto__label{
    font-size: clamp(22px, 5.2vw, 30px);
  }

  .contacto__value{
    font-size: clamp(22px, 5.6vw, 34px);
  }

  .contacto__link{
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contacto__whatsapp{
    font-size: clamp(30px, 7vw, 44px);
  }

  .contacto__footer{
    padding-top: 34px;
    gap: 2px;
  }
}

/* Ajuste extra para pantallas muy pequeñas */
@media (max-width: 420px){
  .menu__list--mobile{
    padding: 0 16px;
    gap: 14px;
  }
}

/* Pantalla Grande */
@media (min-width: 1440px) {
  p{ font-size: 22px;}
}





