@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/outfit-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('fonts/outfit-900.ttf') format('truetype');
}


:root {
    --bg-color: #0d0d0d;
    --text-color: #f2f2f2;
    --accent-color: #333;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
}

/* Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1000;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: start;
}

.hero-column {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
}

.accent-n {
    color: #FF0000;
}

.hero-type {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    line-height: 0.8;
}

.hero-contact {
    font-size: 1.8rem;
    font-weight: 400;
    /* Removida la negrita */
    text-transform: uppercase;
    margin-top: 50px;
    /* Desplazado 50px hacia abajo */
    letter-spacing: 0.05em;
    text-align: left;
    /* Alineado a la izquierda */
}

.info-block {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-color);
    letter-spacing: 0.02em;
}

.info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.info-block p {
    text-align: justify;
    opacity: 0.9;
    line-height: 1.4;
    font-weight: 400;
}

.tagline-row {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-start;
    /* Alineado a la izquierda */
    gap: 1.5rem;
    /* Espacio entre los items */
    font-weight: 900;
    font-size: 0.8rem;
    padding-top: 0;
    /* Removido el padding superior */
}

.stats-bar {
    border-top: 1.5px solid var(--text-color);
    border-bottom: 1.5px solid var(--text-color);
    padding: 0.75rem 0;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 1rem 0;
}

.main-visual {
    position: relative;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 3rem 0;
    min-height: 60vh;
}

.main-visual img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    filter: grayscale(1) contrast(1.1);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-visual:hover img {
    transform: scale(1.05);
}

.large-text-punk {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-size: clamp(10rem, 30vw, 25rem);
    font-weight: 900;
    z-index: -1;
    opacity: 0.08;
    pointer-events: none;
    letter-spacing: -0.05em;
}

.bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1.5px solid var(--text-color);
}

.album-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.album-card h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 900;
}

.album-card p {
    font-size: 0.75rem;
    opacity: 0.8;
    text-align: justify;
    line-height: 1.5;
}

.footer {
    margin-top: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
}

.footer-logo {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    width: 100%;
    text-align: right;
}

@media (max-width: 1024px) {
    header {
        grid-template-columns: 1fr;
        gap: 5rem;
        /* Aumentado el espacio entre el contacto y el texto aleatorio al apilarse */
    }

    .bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .bottom-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        font-size: 0.7rem;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container>* {
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.container header {
    animation-delay: 0.1s;
}

.container .stats-bar {
    animation-delay: 0.3s;
}

.container .main-visual {
    animation-delay: 0.5s;
}

.container .bottom-grid {
    animation-delay: 0.7s;
}

.container .footer {
    animation-delay: 0.9s;
}