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

body {
    font-family: 'Manrope', sans-serif;
    background-color: #000000;
    color: #e5e6df;
    line-height: 1.6;
}

/* Header */
header {
    background-color: transparent;
    padding: 0;
    border-bottom: 1px solid transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, border-bottom 0.4s ease, padding 0.4s ease;
}

header.scrolled {
    background-color: #000000;
    padding: 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Allura', cursive;
    font-size: 2rem;
    color: #d0d0d0;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, color 0.3s ease;
}

header.scrolled .logo {
    opacity: 1;
    visibility: visible;
}

.logo:hover {
    color: #ffb347;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: #e5e6df;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: #dd9933;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #dd9933;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #e5e6df;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    position: relative;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInZoom {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-image {
    width: 100%;
    opacity: 0;
    animation: fadeIn 1.5s ease-in forwards;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: -1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    animation: fadeInZoom 1.5s ease-out 1.5s forwards;
}

.hero-content h1 {
    font-family: 'Manrope', Helvetica, Arial, Verdana, sans-serif;
    font-size: clamp(1rem, 7vw, 10rem);
    line-height: 1.1;
    font-weight: 200;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f7f7f7;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #f7f7f7;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #0e0e0e;
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Manrope', Helvetica, Arial, Verdana, sans-serif;
    font-size: 37px;
    line-height: 40px;
    font-weight: 300;
    color: #d0d0d0;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

/* Biography Section */
.biografia {
    padding: 0;
    max-width: 100%;
}

.bio-content {
    background-color: #000000;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    min-height: 600px;
}

.bio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    overflow: visible;
}

.title-bio {
    margin-bottom: 1.4rem;
}
.bio-text {
    padding: 1rem 4.7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: justify;
    padding-right: 2rem;
    padding-left: 7.4rem;
}

.bio-text p {
    margin-bottom: 20px;
    color: #d0d0d0;
    line-height: 1.8;
    font-size: 18px;
}

/* Asociacion Section */
.asociacion {
    padding: 0;
    max-width: 100%;
}

.asociacion-content {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.asociacion-content .bio-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.asociacion-image {
    width: 100%;
    height: 100%;
    display: block;
}

.asociacion-image-mobile {
    display: none;
}

.asociacion-title {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #0e0e0e;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 1.2rem;
}

.asociacion-text {
    border: none;
    position: absolute;
    top: 5%;
    left: 13%;
    z-index: 1;
}

.asociacion-text p {
    font-weight: 200;
    letter-spacing: 3px;
    color: #000000;
    margin: 0;
    margin-bottom: 20px;
    width: 35%;
    text-align: justify;
    font-size: clamp(12px, 1.5vw, 40px);
    line-height: clamp(20px, 2.2vw, 50px);
}

.btn-asociacion {
    display: inline-block;
    padding: 6px 13px;
    background-color: #000000;
    color: #fff;
    border: 1px solid #fff;
    text-decoration: none;
    font-weight: 100;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 0.7rem;
}
.btn-asociacion:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #000000;
}

/* Espectaculo Section */
.espectaculo {
    padding: 0;
    max-width: 100%;
    background-color: #000000;
}

.espectaculo-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.espectaculo-title {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 30px;
    font-weight: 400;
    margin: 3rem 0;
    position: relative;
    display: inline-block;
    width: 100%;
}

.espectaculo-title::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 10%;
    height: 2px;
    background-color: #fff;
}

.espectaculo-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.espectaculo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.espectaculo-img-mobile {
    display: none;
}

.espectaculo-video {
    width: 100%;
    padding: 60px 40px;
    background-color: #000000;
}

.espectaculo-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 80vh;
    border: none;
    display: block;
    margin: 0 auto;
}

/* Discography Section */
.discography {
    max-width: 100%;
    background-color: #f7f7f7;
    color: #000000;
}

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

.album-card {
    background-color: #e5e6df;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.album-cover {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.album-info {
    padding: 20px;
}

.album-info h3 {
    color: #dd9933;
    margin-bottom: 10px;
}

.album-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Concerts Section */
.concerts-list {
    max-width: 800px;
    margin: 0 auto;
}

.concert-item {
    background-color: #1a1a1a;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 5px;
    border-left: 4px solid #dd9933;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.concert-item:hover {
    background-color: #252525;
}

.concert-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dd9933;
    min-width: 100px;
}

.concert-details h3 {
    margin-bottom: 5px;
}

.concert-details p {
    color: #999;
    font-size: 0.9rem;
}

/* Contact Galeria */
.section.galeria{
    background-color: #f7f7f7;
    color: #000000;
    width: 100%;
    min-width: -webkit-fill-available;
}

.section.galeria h2 {
    color: #000000;
}

/* Contact Section */
.contact {
    max-width: 100%;
    background-color: #000;
    color: #fff;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dd9933;
}

/* Footer */
footer {
    background-color: #000000;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #333;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.social-icon span {
    font-size: 14px;
    font-weight: 400;
}

.social-icon:hover {
    color: #ffb347;
    transform: translateY(-2px);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

footer p {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .bio-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .bio-image {
        min-height: 400px;
        order: 2;
    }

    .bio-text {
        padding: 40px;
        font-size: 1.1rem;
        line-height: 2;
        order: 1;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: #1a1a1a;
        transition: right 0.3s ease;
        padding: 80px 20px 20px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 30px;
        line-height: 30px;
    }

    .concert-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    /* Asociacion responsive */
    .asociacion-content {
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .asociacion-text {
        position: static;
        width: 100%;
        background-color: #e5e6df;
        padding: 40px 130px;
        order: 1;
    }

    .asociacion-text p {
        width: 100%;
        font-size: clamp(16px, 3vw, 20px);
        line-height: clamp(24px, 4vw, 32px);
    }

    .asociacion-image {
        order: 2;
        width: 100%;
        position: relative;
    }

    .asociacion-image-desktop {
        display: none;
    }

    .asociacion-image-mobile {
        display: block;
    }

    /* Espectaculo responsive */
    .espectaculo-image {
        height: 300px;
    }

    .espectaculo-video {
        padding: 28px 53px;
    }

    .espectaculo-video iframe {
        width: 100%;
        aspect-ratio: 16 / 9;
        max-height: 60vh;
    }

    .espectaculo-img-desktop {
        display: none;
    }

    .espectaculo-img-mobile {
        display: block;
    }
}

/* Responsive */
/* iPad / Tablet */
@media (max-width: 992px) and (min-width: 768px) {
    .bio-text {
        padding: 40px 111px;
    }

    .bio-text h2 {
        font-size: 40px;
    }

    .bio-text p {
        font-size: 20px;
        line-height: 1.8;
    }
    .title-bio {
        margin-bottom: 2.6rem;
    }
}

@media (max-width: 992px) {
    .bio-image {
        overflow: hidden;
    }
}

@media (max-width: 720px) {
    .espectaculo-video {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    .asociacion-text {
        padding: 40px 40px;
    }
    .espectaculo-title {
        font-size: 22px;
    }
}

.m-0 {
    margin: 0 !important;
}
