
latest-releases {
    --lr-font-heading: 'Archivo Black', sans-serif;
    --lr-font-body: 'Open Sans', sans-serif;
    --lr-font-weight-body: 700;
    --lr-button-bg: #ffffff;
    --lr-button-fg: #000000;
    --lr-button-border: #ffffff;
}
latest-merch {
    --lm-font-heading: 'Archivo Black', sans-serif;
    --lm-font-body: 'Open Sans', sans-serif;
    --lm-font-weight-body: 700;
    --lm-button-bg: #ffffff;
    --lm-button-fg: #000000;
    --lm-button-border: #ffffff;
}
nav-fade {
    --nav-font-family: 'Archivo Black', sans-serif;
    --nav-logo-height: 35px;
    --nav-fade-height: 140px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

@media (max-width: 600px) {
    nav-fade {
        --nav-fade-height: 0px;
    }
}

artists-gallery {
    --ag-font-heading: 'Archivo Black', sans-serif;
    --ag-button-bg: #ffffff;
    --ag-button-fg: #000000;
    --ag-button-border: #ffffff;
}

.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
    margin-top: 60px;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.7;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    text-align: center;
    transform: translateY(-40px);
}

.hero-logo {
    width: clamp(440px, 74vw, 1200px);
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 40px rgba(0, 0, 0, 0.6));
}

.releases-merch-row {
    display: flex;
    gap: 24px;
}

.releases-merch-row latest-releases,
.releases-merch-row latest-merch {
    flex: 1;
}

.row-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.section-divider {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
}

simple-footer {
    --sf-font-heading: 'Archivo Black', sans-serif;
    --sf-font-body: 'Open Sans', sans-serif;
    --sf-button-bg: #ffffff;
    --sf-button-text: #000000;
    --sf-icon-border-hover: #ffffff;
}

@media (max-width: 600px) {
    body {
        display: flex;
        flex-direction: column;
    }

    nav-fade {
        order: 0;
    }

    .hero {
        order: 1;
        height: 22vh;
        margin-top: 50px;
    }

    .hero-content {
        transform: translateY(0);
    }

    .hero-logo {
        width: 90vw;
    }

    latest-merch { order: 2; }
    latest-releases { order: 3; }
    artists-gallery { order: 4; }

    simple-footer {
        order: 5;
    }

    .releases-merch-row {
        display: contents;
    }

    .row-divider {
        display: none;
    }
}

.releases-merch-row.merch-hidden .row-divider {
  display: none;
}