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

html {
    font-size: 16px;
}

body {
    background-color: #000;
    color: #fff;
    font-family: sans-serif;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #fff;
    text-decoration: none;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #000;
    background-image: url('https://www.edna666.com/wp-content/uploads/2026/04/Edna-1126_edit-1_4Web.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.35) 100%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 2rem;
    width: 100%;
}

.hero__logo {
    max-width: min(560px, 70vw);
    width: 100%;
    height: auto;
}

.links {
    padding: 4rem 1.5rem;
    background-color: #000;
}

.links__inner {
    max-width: 480px;
    margin: 0 auto;
}

.links__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.links__item {
    font-family: 'Special Gothic';
    font-weight: 800;
    font-stretch: 125%;
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid #fff;
    text-align: center;
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background-color: transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.links__item:hover {
    background-color: #fff;
    color: #000;
}

.spotify {
    padding: 4rem 1.5rem;
    background-color: #111;
}

.spotify__inner {
    max-width: 700px;
    margin: 0 auto;
}

.spotify__inner iframe {
    width: 100%;
    border-radius: 0;
}

.videos {
    padding: 4rem 1.5rem;
    background-color: #000;
}

.videos__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}


.videos__embed-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 600px) {
    .links {
        padding: 3rem 3rem;
    }
    .spotify {
        padding: 3rem 1rem;
    }
    .videos {
        padding: 1rem 1rem;
    }
    .videos__inner {
        grid-template-columns: 1fr;
    }
}


/* -------- TEXT STYLES -------- */

@font-face {
    font-family: 'Special Gothic';
    src: url('../fonts/SpecialGothic-VariableFont_wdth_wght.woff2') format('woff2-variations');
    font-weight: 400 700;
    font-stretch: 75% 125%;
    font-style: normal;
    font-display: swap;
}


/* -------- BIO STYLES -------- */

.bio {
    padding: 4rem 1.5rem;
    background-color: #000;
}

.bio__inner {
    max-width: 720px;
    margin: 0 auto;
}

.bio__text {
    font-family: 'Special Gothic';
    font-weight: 420;
    font-stretch: 80%;
    font-size: 1.25rem;
    line-height: 2rem;
    color: #fff;
    text-align: left;
}

.bio__text p {
    margin-bottom: 20px;
}



/* -------- VIDEOS STYLES -------- */
.videos-title {
    font-family: 'Special Gothic';
    font-weight: 800;
    font-stretch: 125%;
    font-size: 3rem;
    line-height: 3rem;
    color: #fff;
    text-align: center;
    padding: 5vw;
}



/* -------- FOOTER STYLES -------- */

.site-footer {
    background-color: #000;
    padding: 4rem 1.5rem;
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.site-footer__inner::before {
    content: '';
    width: 80%;
    height: 1px;
    background-color: #333;
}

.site-footer__logo {
    max-width: min(240px, 60vw);
    width: 100%;
    height: auto;
}

.site-footer__button {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    border: 1px solid #fff;
    font-family: 'Special Gothic';
    font-weight: 700;
    font-stretch: 125%;
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background-color: transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-footer__button:hover {
    background-color: #fff;
    color: #000;
}

.site-footer__copyright {
    font-family: 'Special Gothic';
    font-weight: 333;
    font-stretch: 80%;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555;
}