/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Foto de fondo */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    z-index: 1;
}

/* Tinte de color sobre TODA la foto */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 44, 91, 0.35) 0%,
        rgba(45, 21, 68, 0.45) 50%,
        rgba(107, 45, 143, 0.35) 100%
    );
    z-index: 2;
}

/* Contenedor de contenido */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8rem 2rem 0;
}

/* Nombre en UNA línea horizontal */
.band-name {
    font-size: clamp(2rem, 4.5vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.8rem;
    word-spacing: 3rem;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    margin-top: 3rem;
}

/* ==================== VINTAGE CARDS ==================== */
.vintage-card {
    background: linear-gradient(135deg, rgba(26, 44, 91, 0.6), rgba(45, 21, 68, 0.6));
    border: 4px solid var(--bright-pink);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 
        0 4px 0 rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    margin-bottom: 2rem;
}

.vintage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        transparent 1px,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 3px
    );
    pointer-events: none;
    border-radius: 4px;
}

.vintage-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 7px 0 rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 5px rgba(0, 0, 0, 0.3);
}

/* ==================== ALBUM COVER ==================== */
.album-cover {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 3px solid var(--lavender);
    box-shadow: 
        0 3px 0 rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

/* ==================== BOTONES VINTAGE ==================== */
.btn-vintage {
    color: #000;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(180deg, var(--bright-pink), #d91c7a);
    border: 2px solid var(--lavender);
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    font-family: 'Courier New', monospace;
    display: inline-block;
    transition: all 0.2s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05rem;
}

.btn-vintage:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-vintage:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-vintage-purple {
    background: linear-gradient(180deg, var(--lavender), #9370db);
}

.btn-vintage-pink {
    background: linear-gradient(180deg, var(--soft-pink), #ff9ec8);
}

/* ==================== FORMULARIO ==================== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 105, 180, 0.5);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Courier New', monospace;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

input:focus, 
textarea:focus {
    outline: none;
    border-color: var(--bright-pink);
    background: rgba(0, 0, 0, 0.6);
}

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

.form-success {
    background: linear-gradient(135deg, rgba(26, 44, 91, 0.8), rgba(45, 21, 68, 0.8));
    border: 3px solid var(--lavender);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: var(--soft-pink);
    font-family: 'Courier New', monospace;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero-content {
        padding: 6rem 1.5rem 0;
    }
    
    .band-name {
        font-size: clamp(1.1rem, 4vw, 2.2rem);
        letter-spacing: 0.4rem;
        word-spacing: 2rem;
        margin-top: 2rem;
    }
    
    .vintage-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 5rem 1rem 0;
    }
    
    .band-name {
        font-size: clamp(0.9rem, 4.5vw, 1.8rem);
        letter-spacing: 0.25rem;
        word-spacing: 1.2rem;
        margin-top: 1.5rem;
    }
}