body {
    background-color: #000000;
    font-family: 'Times New Roman', serif;
    color: #eeeeee;
}

header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 30px;
}

h2.title {
    font-size: 5em;
    text-transform: uppercase;
    letter-spacing: 20px;
}

.py-huge {
    padding: 150px 0;
}

nav {
    transition: all 0.3s ease-in-out;
}

nav.scrolled {
    /* background: #000000 !important; */
    transition: all 0.5s ease-in-out;
}

nav.hide-nav {
    transform: translateY(-100%);
    transition: all 0.5s ease-in-out;
}

.nav-link {
    color: #eeeeee;
    font-size: 1.4em;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover {
    color: #eeeeee;
    opacity: 0.3;
}

.btn-primary,
.btn-secondary {
    background-color: transparent;
    border: 3px solid #a7833e;
    border-radius: 0px;
    font-size: 1.5em;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    color: #eeeeee !important;
}

.btn-secondary {
    border: 3px solid #eeeeee;
    color: #eeeeee !important;
}

.btn-primary:hover {
    background-color: #a7833e;
    border-color: #a7833e;
    color: #000000 !important;
    opacity: 1 !important;
    transform: scale(1.05);
}

#fade-overlay {
    position: fixed;
    z-index: 9999;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    pointer-events: none;
    opacity: 1;
    transition: opacity 3s ease;
    will-change: opacity;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

.header-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1000px;
    z-index: 2;
}

.header-text h2 {
    color: #a7833e;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 3em;
}

.header-text p {
    color: #eeeeee;
    font-size: 1.3em;
    letter-spacing: 2px;
}

.header-text a,
#about a,
#contact a {
    color: #d3bd96;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.header-text a:hover,
#about a:hover,
#contact a:hover {
    opacity: 0.5;
    text-decoration: none;
}

.header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s linear;
}

.music-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
}

.music-video-container>iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#about p,
#contact p {
    font-size: 1.8em;
    line-height: 1.6;
    letter-spacing: 2px;
    color: #eeeeee;
    margin-bottom: 20px;
}

#music {
    background-image: url('img/lava-bg.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

#music .container {
    position: relative;
    z-index: 2;
}

#music .container .row {
    align-items: center;
}

#music img {
    transition: all 0.3s ease-in-out;
}

#music img:hover {
    transform: scale(1.02);
}

.reviews p {
    font-size: 1.1em;
    letter-spacing: 2px;
}

.reviews a {
    color: #d3bd96;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.1em;
}

.reviews a:hover {
    opacity: 0.5;
    text-decoration: none;
}

.middle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

#contact {
    position: relative;
    background-image: url('img/ada.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 80vh;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

#updates .row {
    justify-content: center;
}

.update-bg {
    margin-bottom: 1rem;
}

.update-card {
    background-color: #111111;
}

.update-title {
    font-size: 1.5em;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.update-date {
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #b49761;
}

.update-description {
    font-size: 1.1em;
    line-height: 1.4;
    letter-spacing: 1px;
}

.update-description a {
    color: #d3bd96;
    transition: all 0.3s ease-in-out;
}

#contact .container {
    position: relative;
    z-index: 2;
}

.contact-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.contact-logos img {
    max-height: 100px;
    /* max-width: 120px; */
    transition: all 0.3s ease-in-out;
}

.contact-logos img:hover {
    transform: scale(1.05);
}

footer {
    height: 56px;
    margin-top: -56px;
    position: relative;
    z-index: 2;
}

@media (max-width: 819px) {
    nav {
        display: none;
    }

    h2 {
        font-size: 2em !important;
    }

    .py-huge {
        padding: 50px 0 !important;
    }

    #contact {
        background-position: center !important;
    }

    #contact.py-huge {
        padding-top: 50px !important;
    }

    .header-text {
        width: 90% !important;
    }

    .header-logo {
        width: 100% !important;
    }

    #about p,
    #contact p {
        font-size: 1em;
        line-height: 1.3;
        letter-spacing: 2px;
    }
}

@media (min-width: 820px) and (max-width: 1200px) {
    .header-text {
        width: 80% !important;
    }

    .header-logo {
        width: 100% !important;
    }

    ul.nav {
        justify-content: center;
    }

    nav.scrolled {
        background: #000000 !important;
    }
}