/* 1) VARIABLES / TOKENS ======================================== */

html {
	-webkit-text-size-adjust: none;
}

:root {
	--color-bg: #000000;
	--color-muted: rgba(255, 255, 255, 0.7);

	--color-green: #8fc82b; 
	--color-green-hover: #6aa01d; 

	--color-darkbrown: #2f1f0c; 
	--color-lightbrown: #604e38;

	--color-sand: #bea987;
	--color-sand-hover: #a88f6e;
	
	--color-white: #ffffff;

	--font-title: 'Cinzel', serif;
	--font-text: 'Cardo', serif;

	--container-max-width: 1200px;
	--container-padding: 5vw;
	
	/* TITULOS */
	
	--font-size-title: 4rem; 
    --text-lg: 1.25rem;
    --text-md: 1.15rem;
    --text-sm: 1rem;
	
	/* LINE-HEIGHTS */
	
	--lh-base: 1.4;
	--lh-tight: 0.8;
	
	/* LETTER SPACING */
	
	--ls-sm: 0.01rem;
	
	--title-padding: 2rem;

	--radius-md: 10px;

	--transition-fast: 0.2s ease;
	--transition-base: 0.3s ease;
}

/* 2) RESET / BASE ======================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	padding-top: 70px;
	color: var(--color-white);
	background: var(--color-bg);
	font-family: var(--font-text);
}

body.nav-open {
	overflow: hidden;
}

img,
video,
svg {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

/* 3) LAYOUT & TEXT CONTROL ======================================== */

.container {
	width: 100%;
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding) var(--title-padding) var(--container-padding);
}

.section {
	position: relative;
	padding: 0;
}

.section--shows,
.section--band,
.section--music,
.section--store,
.section--contact {
    border-top: 1px solid var(--color-sand);
}

.section-title {
	margin-bottom: var(--title-padding);
	font-family: var(--font-title);
	font-size: clamp(2.2rem, 8vw, 3rem);
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.02em;
	text-align: center;
}

.shows-description,
.band-description,
.music-description,
.store-description,
.contact-description {
	position: relative;
	width: 40%;
	margin: 0 auto;
	padding-bottom: var(--title-padding);
	font-size: var(--text-lg);
	line-height: var(--lh-base);
	text-align: center;
}

/* 1. Títulos de Sección */
#shows .section-title   { color: var(--color-darkbrown); }
#band .section-title    { color: var(--color-darkbrown); }
#music .section-title   { color: #fff8ed; }
#store .section-title   { color: var(--color-darkbrown); }
#contact .section-title { color: var(--color-darkbrown); }

/* 2. Descripciones */
#shows .shows-description     { color: var(--color-darkbrown); }
#band .band-description       { color: var(--color-darkbrown); }
#music .music-description     { color: #f2e2c8; }
#store .store-description     { color: var(--color-darkbrown); }
#contact .contact-description { color: var(--color-darkbrown); }

/* 2.1 Textos internos de Shows */
#shows .shows-item__date {
	color: var(--color-darkbrown);
}

#shows .shows-item__location,
#shows .shows-item__details {
	color: var(--color-lightbrown);
}

/* 3. Textos de Integrantes (Banda) */
#band .band-member__name { color: #2e2e2d; }
#band .band-member__role { color: var(--color-darkbrown); }
#band .band-member__bio  { color: #41403f; }

/* 4. Textos de Música y Spotify */
#music .spotify-content h3 { color: #fff8ed; }
#music .spotify-content p  { color: #f2e2c8; }
#music .music-card h3      { color: #fff8ed; }
#music .music-card p       { color: #f2e2c8; }

#music .music-subtitle {
   font-size: var(--font-size-title);
   font-family: var(--font-title);
   text-align: center;
   margin: 0 auto var(--title-padding);
   color: #fff8ed;
   font-weight: 600;

   position: relative;
   padding-top: 1.5rem;
   width: 40%;
}


#store .store-item__title { color: #2e2e2d; }
#store .store-item__price { color: var(--color-darkbrown); }

#contact .whatsapp-section p      { color: var(--color-darkbrown) }

/* Decoraciones y Divisores de texto */
.shows-description::after,
.band-description::after,
.music-description::after,
.store-description::after,
.contact-description::after,
#music .music-subtitle::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 1px;
	background: linear-gradient(
		to right,
		transparent 0%,
		var(--color-sand) 15%,
		var(--color-sand) 85%,
		transparent 100%
	);
}

.shows-description::after,
.band-description::after,
.music-description::after,
.store-description::after,
.contact-description::after {
	bottom: 0;
}

#music .music-subtitle::before {
	top: 0;
}

.section-divider {
	width: 20vw;
	aspect-ratio: 1523 / 787;
	margin: 0 auto var(--title-padding);
	background-image: url("../img/flag.webp");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
}

/* 4) HEADER / NAVIGATION ======================================== */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1100;
	width: 100%;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(10px);
	transform: translateY(0);
	transition:
		transform 0.35s ease,
		background 0.3s ease,
		box-shadow 0.3s ease,
		backdrop-filter 0.3s ease;
}

.site-header__menu {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 1rem var(--container-padding);
}

.site-logo {
	z-index: 1300;
	display: flex;
	align-items: center;
}

.site-logo a {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.site-logo img {
	display: block;
	width: auto;
	height: 38px;
}

.logo-default {
	opacity: 1;
	transition: opacity 0.25s ease;
}

.logo-hover {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition:
		opacity 0.25s ease,
		filter 0.25s ease;
}

.site-logo a:hover .logo-default {
	opacity: 0;
}

.site-logo a:hover .logo-hover {
	opacity: 1;
	filter:
		drop-shadow(0 0 5px rgba(255, 255, 255, 0.5))
		drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.site-nav {
	display: flex;
	flex: 1;
	justify-content: center;
	margin-right: 7rem;
}

.site-nav__list a {
	font-family: var(--font-title);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	transition: color var(--transition-fast);
}

.site-nav__list a:hover {
	color: var(--color-green);
}

/* 5) NAV TOGGLE ======================================== */

.nav-toggle {
	position: relative;
	z-index: 1300;
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: none;
	outline: none;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.nav-toggle__bar {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px auto;
	background: var(--color-white);
	transition: all 0.3s ease-in-out;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* 6) OVERLAY ======================================== */

.nav-drawer-overlay {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.7);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

body.nav-open .nav-drawer-overlay {
	opacity: 1;
	pointer-events: auto;
}

/* 7) DESKTOP RESET ======================================== */

.site-nav__list {
	position: static;
	z-index: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	gap: 2rem;
	padding: 0;
	list-style: none;
	background: transparent;
	box-shadow: none;
	transform: none !important;
	will-change: auto;
	transition: none !important;
}

.site-nav__list.is-active {
	transform: none !important;
}

.site-nav__lang {
	position: absolute;
	right: var(--container-padding);
	display: flex;
	align-items: center;
}

/* 8) LANGUAGE SWITCH ======================================== */

.lang-switch {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.lang-switch__label {
	color: var(--color-muted);
	font-family: var(--font-title);
	font-size: 0.85rem;
	font-weight: 500;
	pointer-events: none;
}

.lang-switch__control {
	position: relative;
	display: block;
	width: 52px;
	height: 26px;
}

.lang-switch__input {
	position: absolute;
	width: 0;
	height: 0;
	opacity: 0;
}

.lang-switch__track {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 999px;
	transition: var(--transition-fast);
}

.lang-switch__thumb {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 50%;
	transition: var(--transition-fast);
}

.lang-switch__input:checked + .lang-switch__track {
	background: var(--color-green);
}

.lang-switch__input:checked ~ .lang-switch__thumb {
	transform: translateX(26px);
}

/* 9) SECCIONES ======================================== */

/* --- HERO --- */

#hero {
    scroll-margin-top: 70px;
}

.section--hero {
	position: relative;
	display: flex;
	min-height: 100dvh;
	overflow: hidden;
}

.hero-divider {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	aspect-ratio: 2000 / 413;
	background: url("../img/nube.webp") center bottom / 100% auto no-repeat;
	pointer-events: none;
}

.hero__content {
	transform: translateY(20vh);
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image: url("../img/mainDesktop.webp");
	background-repeat: no-repeat;
	background-position: 30% -50px;
	background-size: cover;
}

.hero__eyebrow {
	margin: 0.5rem 0;
	color: var(--color-green);
	font-family: var(--font-text);
	font-size: clamp(1rem, 1vw, 1rem);
	line-height: 1;
}

.hero__title {
	margin: 0;
	font-family: var(--font-title);
	font-size: clamp(3rem, 4vw, 5rem);
	line-height: 0.85;
}

.hero__detail {
	margin: 2rem 0;
	color: var(--color-sand);
	font-family: var(--font-text);
	font-size: clamp(1rem, 1vw, 1rem);
	line-height: var(--lh-base);
}

/* --- shows --- */
.section--shows {
	position: relative;
	padding-top: 0;
	background-color: #ebe8e7;
}

#shows .section-title {
	z-index: 20;
}

#shows .container {
	width: 100%;
}

.shows-item {
	display: grid;
	grid-template-columns: 180px 1fr 1fr auto;
	align-items: start;
	gap: 2em;
	padding: 2rem 0;
}

.shows-item__date {
	font-size: var(--text-lg);
	font-weight: 300;
	line-height: var(--lh-tight);
}

.shows-item__date b {
	font-weight: 800;
}

.shows-item__location {
	min-width: 0;
	font-size: var(--text-md);
	font-weight: 400;
	line-height: var(--lh-base);
}

.shows-item__details {
	min-width: 0;
	font-size: var(--text-sm);
	line-height: var(--lh-base);
	letter-spacing: var(--ls-sm);
}

.shows-item__button {
	justify-self: end;
}

#shows article {
    border-bottom: none;
    background-image: repeating-linear-gradient(
        to right,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 4px,
        transparent 4px,
        transparent 8px
    );
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: bottom;
}

/* --- banda --- */
.section--band {
    background: #c7cfc7;
}

.band-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
}

.band-slider__viewport {
    overflow: hidden;
    width: 80%;
    margin: 0 auto;
}

.band-slider__track {
    display: flex;
    will-change: transform;
}

.band-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    gap: 2rem;
    padding: 0;
    align-items: center;
}

.band-slide__foto {
    width: 300px;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.band-slide__foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.band-slide__info {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.band-member__name {
    font-weight: 600;
    font-size: var(--text-lg);
    min-width: 0;
}

.band-member__role {
    font-weight: 400;
    font-size: var(--text-md);
    min-width: 0;
}

.band-member__bio {
	font-size: var(--text-sm);
    letter-spacing: var(--ls-sm);
    line-height: var(--lh-base);
    min-width: 0;
}

.band-member__bio--mobile {
    display: none;
}

.band-photo--mobile {
    display: none;
}

.band-slide .band-member__more {
    display: none;
    padding: 0.8rem 1.5rem;
    align-self: center;
}

.band-slider__dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.band-slider__dot {
    width: 12px;
    height: 12px;
	background: var(--color-sand);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.band-slider__dot.is-active {
    background: var(--color-darkbrown);
}

/* --- música --- */
.section--music {
   background-image:
      radial-gradient(
          ellipse at 50% 0%,
          rgba(0,0,0,0) 0%,
          rgba(0,0,0,0.1) 40%,
          rgba(0,0,0,0.20) 50%,
          rgba(0,0,0,0.5) 90%
      ),
      url("../img/bg/green.webp");

   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
}

.spotify{
	position: relative;
	  width: 100%;
	  min-height: clamp(500px, 90dvh, 1000px);
	  background-image: url("../img/elements/musicSmartphone.webp");
	  background-repeat: no-repeat;
	  background-position: left center;
	  background-size: auto 100%;
}

.spotify-content{
  margin-left: auto;
  width: 50%;
  height: 100%;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: flex-start;

  gap: 1.5rem;
  padding: 3rem;
}

.spotify-content h3 {
    font-size: var(--text-md); 
}


.spotify-content p {
    font-size: var(--text-sm);
    letter-spacing: var(--ls-sm);
    line-height: var(--lh-base);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.music-card {
	text-align: center;
	padding-bottom: 2rem;
}

.music-card__imagen {
    aspect-ratio: 16 / 9;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
}

.music-card h3,
.music-card p {
    max-width: 80%;
    margin: 0 auto;
}

.music-card h3 {
	font-size: var(--text-md);
}

.music-card p {
	font-size: var(--text-sm);
    letter-spacing: var(--ls-sm);
    line-height: var(--lh-base);
}

/* --- tienda --- */
.section--store {
   background-image:
      radial-gradient(
          ellipse at 50% 0%,
          rgba(0,0,0,0) 0%,
          rgba(0,0,0,0.05) 50%,
          rgba(0,0,0,0.15) 85%
      ),
      url("../img/bg/store.webp");

   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
}

.store-grid {
	margin-top: var(--title-padding);
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}

.store-item {
	min-width: 0;
	text-align: center;
	padding-bottom: 2rem;
	display: block;
}

.store-item__image {
  aspect-ratio: 16 / 9;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 0;
}

.store-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-item__title,
.store-item__price {
  max-width: 80%;
  margin: 0 auto;
}

.store-item__title {
  font-family: var(--font-title);
  font-size: var(--text-md);
  font-weight: 600;
}

.store-item__price {
	font-family: var(--font-text);
	font-size: var(--text-sm);
    letter-spacing: var(--ls-sm);
    line-height: var(--lh-base);
	margin-top: 0.35rem;
	margin-bottom: var(--title-padding);
}

.store-item__thumbs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin: 0.8rem 0 1rem;
}

/* --- tienda: slider interno por item --- */

.store-item__slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
}

.store-item__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.store-item__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
    cursor: pointer;
}

.store-item__slide.is-active {
    opacity: 1;
}

.store-item__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s ease;
}

.store-item__slide:hover img {
    filter: brightness(1.12);
}

.store-item__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: #2e2e2d;
    font-family: var(--font-text);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.store-item__arrow:hover {
    background: rgba(255, 255, 255, 1);
}

.store-item__arrow--prev {
    left: 0.5rem;
}

.store-item__arrow--next {
    right: 0.5rem;
}

.store-item__dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.store-item__dot {
    width: 10px;
    height: 10px;
    background: var(--color-sand);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.store-item__dot.is-active {
    background: var(--color-darkbrown);
}

/* --- contacto --- */
.section--contact {
	 background-color: #ebe8e7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: var(--title-padding) auto 0;
}

.contact-form input,
.contact-form textarea {
	border-radius: var(--radius-md);
    padding: 1rem;
    background: #fefbf6;
    border: 1px solid var(--color-sand);
    font-family: inherit;
    font-size: var(--text-sm);
}

.contact-form button {
    width: auto;
    align-self: center;
}

.whatsapp-section {
    margin: 3rem auto 0;
    text-align: center;
}

.whatsapp-title {
    position: relative;
    padding-top: 1.5rem;
    width: 40%;
    margin: 0 auto var(--title-padding);
}

.whatsapp-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--color-sand) 15%,
        var(--color-sand) 85%,
        transparent 100%
    );
}

.whats-description {
   padding-bottom: var(--title-padding);
}

/* 10) BUTTONS & UI ======================================== */

.btn {
    padding: 0.6rem 2rem;
    font-family: var(--font-text);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: var(--ls-sm);
    border-radius: var(--radius-md);
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn--dark {
    background: var(--color-green);
    color: #2e2e2d;
}

.btn--dark:hover {
    background: var(--color-green-hover);
   color: #2e2e2d;
}

.btn--light {
    background: var(--color-sand);
    color: white;
}

.btn--light:hover {
    background: var(--color-sand-hover);
}

.boton-spotify {
   display: inline-flex;
   align-items: center;
   gap: 12px;
   padding: 8px 13px;
   font-family: inherit;
   font-size: 17px;
   font-weight: 600;
   letter-spacing: 0.5px;
   color: #f3e6cf;
   border-radius: 8px; 
   border: 1px solid rgba(255,255,255,0.15);
   background: linear-gradient(
      145deg,
      #b97a3c,
      #9f642e
   );
   box-shadow:
      0 6px 18px rgba(0,0,0,0.25),
      inset 0 1px 0 rgba(255,255,255,0.2);
   transition: background .3s ease, box-shadow .3s ease;
   cursor: pointer;
}

.boton-spotify:hover {
   background: linear-gradient(
      145deg,
      #c88745,
      #ad6d34
   );
   box-shadow:
      0 8px 20px rgba(0,0,0,0.28),
      inset 0 1px 0 rgba(255,255,255,0.3);
}

.spotify-icon {
  width: 30px;
  height: 30px;
}

.boton-store {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 8px 16px;
   font-family: var(--font-text);
   font-size: 16px;
   font-weight: 600;
   letter-spacing: 0.4px;
   color: #f3efe6;
   border-radius: var(--radius-md);
   border: 1px solid rgba(0,0,0,0.1);
   background: linear-gradient(
      145deg,
      #4c5439,
	   #414a33  
   );
   box-shadow:
      0 6px 18px rgba(0,0,0,0.35),
      inset 0 1px 0 rgba(255,255,255,0.08);
   transition: all 0.3s ease;
   cursor: pointer;
}

.boton-store:hover {
   background: linear-gradient(
      145deg,
      #3a5d3f,
      #243f29
   );
   box-shadow:
      0 8px 22px rgba(0,0,0,0.45),
      inset 0 1px 0 rgba(255,255,255,0.12);
}

.band-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
	border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-sand);
    color: #2e2e2d;
    font-family: var(--font-text);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.band-slider__arrow:hover {
    background: var(--color-sand-hover);
}

.band-slider__arrow:first-of-type {
    left: 0;
}

.band-slider__arrow:last-of-type {
    right: 0;
}


/* 11) FOOTER ======================================== */

.site-footer {
    padding: 3rem 0;
    background: #050505;
    text-align: center;
    border-top: 1px solid #111;
}

/* 12) RESPONSIVE ======================================== */

@media (max-width: 768px) {
	
		#music .music-card p,
		#music .spotify-content p,
		#store .store-item__price,
		#contact .contact-form input,
		#contact .contact-form textarea {
			font-size: var(--text-md);
		}

		.shows-description,
		.band-description,
		.music-description,
		.store-description,
		.contact-description,
		.music-subtitle {
				width: 80%;
		}

		.band-member__role,
		.band-member__bio {
				font-size: var(--text-sm);
		}
	
		.band-member__bio--desktop {
				display: none;
		}

		.band-member__bio--mobile {
				display: block;
		}

		.band-photo--desktop {
			display: none;
		}

		.band-photo--mobile {
			display: block;
		}

		.band-slide .band-member__more {
			display: inline-block;
			margin-top: 0.8rem;
		}

		.section--hero {
				height: 100svh;  
				position: relative;
				overflow: hidden;
		}

		.hero__media {
				height: 50svh;
				width: 100%;
				overflow: hidden;
				background-image: url("../img/mainMobile.webp");
				background-size: auto 105%;
				background-repeat: no-repeat;
				background-position: center top;
		}

		.hero__content {
				position: absolute;
				left: 50%;
				top: 50svh;
				transform: translateX(-50%);
				text-align: center;
				width: 100%;
		}

		.nav-toggle {
				display: block;
		}

		.section-divider {
				width: 40vw;
		}

		.site-nav {
				display: block;
				margin-right: 0;
			flex: none;
		}
	

		.site-nav__list {
				display: flex;
				position: fixed;
				top: 0;
				right: 0;
				width: 100vw;
				height: 100dvh;
				background: #0a0a0a;
				flex-direction: column;
				justify-content: center;
				padding: 0;
				align-items: center;
				gap: 1.5rem;
				transform: none;
				clip-path: inset(0 0 0 100%);
				pointer-events: none;
				transition: clip-path 0.35s cubic-bezier(0.4, 0, 0.2, 1);
				z-index: 1200;
				box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
		}

		.site-nav__list li {
			width: auto;
		}

		.site-nav__list a {
				display: block;
				text-align: center;
				padding: 0.5rem 0;
				font-size: 1.2rem;
				border: none;
		}
	
		.site-nav__lang {
				margin-top: 2rem;
				padding-top: 2rem;
				border: none;
				display: flex;
				justify-content: center;
				position: static;
				z-index: 1250;
		}
	

		.band-slide {
				flex-direction: column;
				text-align: center;
			padding: 0 1rem;
		}
	
		.shows-item {
				display: flex;
				flex-direction: column;
				gap: 1rem;
				padding: 1.5rem 1rem;
				text-align: center;
				align-items: center;
		}

		.shows-item__date,
		.shows-item__location,
		.shows-item__details {
				flex: none;
				width: 100%;
				text-align: center;
		}

		.shows-item__button {
				width: 100%;
				margin-left: 0;
				margin-top: 0.5rem;
				justify-content: center;
				display: flex;
		}

		.shows-item__button a {
				width: auto;
				display: inline-block;
				text-align: center;
				padding: 0.8rem 1.5rem;
		}


		.band-slide__foto {
				width: 100%;
				aspect-ratio: 1 / 1;
				border-radius: var(--radius-md);
				overflow: hidden;
				flex-shrink: 0;
		}

		.band-slide__foto img {
				width: 100%;
				height: 100%;
				object-fit: cover;
		}

		#music .spotify {
			background-position: top center;
			background-size: 100% auto;
			background-repeat: no-repeat;

			padding-top: 85vw;
			padding-bottom: 4rem;
		}

		#music .spotify-content {
				width: 100%;
				margin: 0;
				height: auto;
				display: flex;
				flex-direction: column;
				align-items: center;
				text-align: center;
				padding: 2rem 1.5rem 0;
		}

		#music .section-title,
		#music .music-subtitle {
				font-size: clamp(2.2rem, 8vw, 3rem);
		}

		#music .music-grid {
				grid-template-columns: 1fr;
				gap: 1.2rem;
		}

		#music .music-card {
				padding-bottom: 0;
		}

		#music .music-subtitle {
				width: 80%;
				margin: 0 auto var(--title-padding);
		}

		#store .store-grid {
				grid-template-columns: 1fr;
				gap: 1.2rem;
		}

		#store .store-item {
				padding-bottom: 0;
		}
	
		.whatsapp-title {
			width: 80%;
			margin: 0 auto var(--title-padding);
			text-align: center;
			font-size: clamp(2.2rem, 8vw, 3rem);
		}
	

		.site-nav__list.is-active {
			clip-path: inset(0 0 0 0);
			pointer-events: auto;
		}

}



/* =====================================================
   MUSIC CARD — HOVER IMAGEN
===================================================== */

.music-card__imagen {
    overflow: hidden;
    cursor: pointer;
}

.music-card__imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.music-card__imagen:hover img {
    filter: brightness(1.5);
}

/* =====================================================
   LIGHTBOX
===================================================== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(235, 232, 231, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox__inner {
    position: relative;
    width: 90%;
    max-width: 960px;
    max-height: 90dvh;
    aspect-ratio: unset;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__inner iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-md);
}

.lightbox__close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: transparent;
    border: none;
	color: var(--color-darkbrown);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.lightbox__close:hover {
    color: var(--color-sand);
}

.lightbox__inner video {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    display: none;
}

.lightbox__inner iframe {
    display: none;
}

.lightbox__inner.show-iframe iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
}

.lightbox__inner.show-video video {
    display: block;
    max-width: 100%;
    max-height: 90dvh;
    width: auto;
    height: auto;
    border-radius: var(--radius-md);
}

/* =====================================================
   LIGHTBOX — BIO MODO
===================================================== */

.lightbox--bio .lightbox__inner {
    aspect-ratio: unset;
    width: 90%;
    max-width: 700px;
    max-height: 95dvh;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: #ebe8e7;
    box-sizing: border-box;
    position: relative;
}

.lightbox--bio .lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    color: var(--color-darkbrown);
    font-size: 1.5rem;
}

.lightbox--bio .lightbox__close:hover {
    color: var(--color-lightbrown);
}

.lightbox-bio__foto {
    width: 100%;
    overflow: hidden;
    border-radius: 0;
}

.lightbox-bio__foto img {
    width: 80%;
    height: auto;
    display: block;
	margin: 0 auto;
}

.lightbox-bio__name {
    font-family: var(--font-title);
    font-size: var(--text-lg);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-darkbrown);
    padding: 1.5rem 2rem 0;
}

.lightbox-bio__role {
    font-size: var(--text-md);
    color: var(--color-lightbrown);
    padding: 0.5rem 2rem 0;
}

.lightbox-bio__text {
    font-size: var(--text-sm);
    color: #41403f;
    line-height: var(--lh-base);
    letter-spacing: var(--ls-sm);
    padding: 1rem 2rem 2rem;
}

/* =====================================================
   LIGHTBOX — FOTO STORE
===================================================== */

.lightbox--photo .lightbox__inner {
    width: 90%;
    max-width: 900px;
    max-height: 90dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.lightbox--photo .lightbox__inner img {
    max-width: 100%;
    max-height: 90dvh;
    width: auto;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
}

/* =====================================================
   FORMULARIO — VALIDACIÓN
===================================================== */
.contact-form input.error,
.contact-form textarea.error {
    border-color: #c0392b;
}

.contact-form .field-error {
    color: #c0392b;
    font-size: var(--text-sm);
    margin-top: -0.5rem;
}

/* =====================================================
   TOAST
===================================================== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(2rem);
    background: var(--color-darkbrown);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-family: var(--font-text);
    font-size: var(--text-sm);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.toast.toast--success {
    background: #3a5d3f;
}

.toast.toast--error {
    background: #c0392b;
}

.toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* =====================================================
   PRELOADER
===================================================== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: radial-gradient(ellipse at center, #2e3a07 0%, #141a02 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: opacity 1s ease;
}

#preloader img {
    width: 180px;
    height: auto;
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.preloader__dots {
    display: flex;
    gap: 0.5rem;
}

.preloader__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: dot-bounce 1.2s ease-in-out infinite;
}

.preloader__dots span:nth-child(2) { animation-delay: 0.2s; }
.preloader__dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot-bounce {
    0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
    40%            { transform: scale(1.2); opacity: 1; }
}