:root {
    --surmana-pink: #ba64d9; /* Color corporativo */
    --bg-black: #0a0a0a;
    --text-white: #ffffff;
}

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

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
}

/* Navegación */
.main-nav {
    background-color: var(--surmana-pink);
    padding: 15px 0;
    color: black;
}

.nav-top {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-bottom: 15px;
}

.nav-logo {
    height: 70px;
    
}

.btn-presave {
    position: absolute;
    right: 5%;
    background-color: #000000;
    color: var(--surmana-pink);
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s ease;
}

.btn-presave:hover {
    background-color: var(--text-white);
    color: #000000;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 20px;
    font-family: 'Oswald', sans-serif;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 15px;
}

.nav-menu a {
    text-decoration: none;
    color: #000000;
    font-size: 1rem;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-left: 15px;
}

.social-icons i {
    font-size: 1.1rem;
}

/* Ajuste para la foto */
.photo-container {
    max-width: 450px; 
    width: 100%;
    justify-self: center; 
}

.img-square {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 2px solid var(--surmana-pink);
    display: block;
}

/* Grid */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 40px;
    align-items: center;
}


.content-wrapper {
    max-width: 1100px; 
    margin: 0 auto;
    padding: 40px 20px;
}

/* Banner Principal */
.main-banner {
    width: 100%;
    border-bottom: 6px solid var(--surmana-pink);
}

.banner-img {
    width: 100%;
    display: block;
    max-height: 600px;
    object-fit: cover;
}

/* Grid de Contenido */
.content-wrapper {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.bio-container h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    color: var(--surmana-pink);
}

.bio-container h3 {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 400;
}

.bio-container p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #cccccc;
}

.main-footer {
    background-color: #000000;
    padding: 60px 20px 30px 20px;
    border-top: 1px solid rgba(186, 100, 217, 0.1);
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Iconos de redes sociales */
.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #ffffff;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--surmana-pink); 
}

/* Enlaces legales y contacto */
.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

/* Separación vertical entre secciones */
.section-bio, 
.content-wrapper {
    padding-top: 25px;    
    padding-bottom: 0px; 
}

.gallery-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px; 
}

.gallery-item {
    aspect-ratio: 1 / 1; 
    overflow: hidden;
    border: 1px solid rgba(186, 100, 217, 0.3); 
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/*LANZAMIENTOS*/
.releases-title {
    font-family: 'Oswald', sans-serif;
    color: var(--surmana-pink);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.release-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    margin-bottom: 40px;
    border-left: 4px solid var(--surmana-pink);
    align-items: center;
    transition: transform 0.3s ease;
}

.release-card:hover {
    background: rgba(186, 100, 217, 0.05);
    transform: translateX(10px);
}

.release-date {
    color: var(--surmana-pink);
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.release-info h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin: 10px 0;
}

/* Estilo para los que aún no han salido */
.upcoming {
    opacity: 0.5;
    border-left: 4px solid #444;
    filter: grayscale(1);
}

.release-placeholder {
    height: 152px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #444;
    color: #444;
    font-weight: bold;
}

.btn-listen {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: var(--surmana-pink);
    color: black;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .release-card { grid-template-columns: 1fr; }
}

/*YOUTUBE*/
/* Contenedor de la rejilla de vídeos */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px;
    margin-top: 30px;
}

/* Contenedor para que el iframe de YT sea responsive */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* Proporción 16:9 */
    height: 0;
    overflow: hidden;
    border: 1px solid rgba(186, 100, 217, 0.3);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-detail {
    padding: 20px 0;
}

.video-tag {
    color: var(--surmana-pink);
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.video-detail h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin: 5px 0;
    text-transform: uppercase;
}

.video-detail p {
    color: #888;
    font-size: 0.9rem;
}

/* Estilo para vídeos que aún no se han lanzado */
.upcoming-video {
    opacity: 0.6;
}

.video-placeholder {
    aspect-ratio: 16 / 9;
    background: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed #333;
}

.video-placeholder i {
    font-size: 3rem;
    color: #333;
    margin-bottom: 10px;
}

/* Adaptación para móviles: 1 vídeo por fila */
@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/*GIRA*/
.tour-dates-container {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-row {
    display: grid;
    grid-template-columns: 100px 1fr 150px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.tour-row:hover {
    background: rgba(186, 100, 217, 0.05);
}

/* Columna Fecha */
.tour-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Oswald', sans-serif;
    line-height: 1;
}

.tour-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--surmana-pink);
}

.tour-date .month {
    font-size: 0.9rem;
    color: #fff;
    margin-top: 5px;
}

/* Columna Recinto/Ciudad */
.tour-venue h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tour-venue p {
    color: #888;
    font-size: 0.9rem;
    margin-top: 4px;
}

/* Botón de Entradas */
.btn-ticket {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--surmana-pink);
    color: var(--surmana-pink);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 0.8rem;
    text-align: center;
    transition: 0.3s;
}

.btn-ticket:hover {
    background-color: var(--surmana-pink);
    color: #000;
}

/* Estado Agotado */
.sold-out {
    opacity: 0.5;
}

.badge-soldout {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #444;
    color: #444;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    text-align: center;
}

/* Responsive para móvil */
@media (max-width: 600px) {
    .tour-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    .tour-date { margin-bottom: 10px; }
}

/* Ajuste para móvil */
@media (max-width: 768px) {
    .gallery-grid-4 {
        grid-template-columns: repeat(2, 1fr); /* 2x2 en móviles */
    }
}

/* Ajuste para móviles: 2 fotos por fila */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Ajuste para móviles muy pequeños: 1 foto por fila */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/*BIO*/
.bio-hero {
    width: 100%;
    margin-bottom: 50px;
    border: 1px solid rgba(186, 100, 217, 0.2);
}

.img-landscape {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: cover;
}

.bio-content {
    max-width: 800px;
    margin: 0 auto;
}

.bio-text-columns {
    line-height: 1.8;
    color: #ddd;
}

.bio-text-columns p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Frase destacada */
.highlight {
    font-size: 1.5rem !important;
    color: var(--surmana-pink);
    font-family: 'Oswald', sans-serif;
    border-left: 3px solid var(--surmana-pink);
    padding-left: 20px;
    margin: 40px 0 !important;
}


.bio-page .releases-title {
    margin-bottom: 30px;
    text-align: left;
}

@media (max-width: 768px) {
    .highlight {
        font-size: 1.2rem !important;
    }
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: #0a0a0a;
    border: 1px solid rgba(186, 100, 217, 0.1);
    transition: 0.3s;
}

.product-card:hover {
    border-color: var(--surmana-pink);
}

.product-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

/* Etiqueta de "Nuevo" o "Reserva" */
.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--surmana-pink);
    color: #000;
    padding: 5px 10px;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 0.7rem;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.price {
    color: var(--surmana-pink);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 10px 0;
    background-color: transparent;
    border: 1px solid var(--surmana-pink);
    color: var(--surmana-pink);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-buy:hover {
    background-color: var(--surmana-pink);
    color: #000;
}


/* SECCIÓN CONTACTO */
.section-contacto {
    padding: 60px 0;
    background-color: var(--bg-black);
}

.contact-grid-surmana {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-left: 4px solid var(--surmana-pink);
    transition: all 0.3s ease;
    text-align: left;
}

.contact-box:hover {
    background: rgba(186, 100, 217, 0.05);
    transform: translateY(-5px);
}

.contact-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin: 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-mail {
    color: var(--text-white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-mail:hover {
    color: var(--surmana-pink);
}

.btn-whatsapp {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid #25D366; 
    color: #25D366;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background-color: #25D366;
    color: #000;
}

/* Responsive para móvil */
@media (max-width: 900px) {
    .contact-grid-surmana {
        grid-template-columns: 1fr;
    }
    
    .contact-box {
        text-align: center;
        border-left: none;
        border-bottom: 4px solid var(--surmana-pink);
    }
}

/*parche del footer*/

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

body > section {
    flex: 1;
}

.main-footer {
    margin-top: auto;
}

/* Copyright inferior */
.footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copy p {
    font-size: 0.7rem;
    color: #666666;
    letter-spacing: 1px;
}

/* MENÚ MÓVIL ESTILO */
@media (max-width: 768px) {
    .main-nav {
        background-color: var(--surmana-pink) !important; 
        padding: 10px 0 !important;
    }

    .nav-top {
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 10px !important;
    }

    .nav-logo {
        max-width: 80px !important;
        
    }

    .nav-menu {
        display: flex !important;
        flex-wrap: wrap !important; 
        justify-content: center !important;
        gap: 15px !important; 
        padding: 10px 20px !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .nav-menu li {
        display: inline-block !important;
        margin: 0 !important;
    }

    .nav-menu a {
        display: inline !important;
        color: #000 !important; 
        font-family: 'Oswald', sans-serif !important;
        font-weight: 700 !important;
        font-size: 0.85rem !important;
        text-transform: uppercase;
        text-decoration: none !important;
        letter-spacing: 0.5px;
    }
}
/* Ajuste para móviles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}
/* Responsive para móvil */
@media (max-width: 768px) {
    .nav-top { flex-direction: column; }
    .btn-presave { position: static; margin-top: 15px; }
    .nav-menu { display: none; } 
    .main-grid { grid-template-columns: 1fr; }
    .bio-container h2 { font-size: 2.5rem; }
}