h1 {
    font-size: 3vw;
    margin-bottom: 10px; 
    font-weight: 700; 
    color: #282728;
    text-transform: uppercase;
}

body {
    margin: 0;
    font-family: 'REM', Arial, sans-serif;
}

.header {
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    max-height: 10vh;
    min-height: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.162); 
    z-index: 1000;
}



.header-left {
    flex: 1;
    text-align: left;
    padding-left: 5%;
}

.header-center {
    flex: 1;
    text-align: center;
}

.header-right {
    flex: 1;
    text-align: right;
    padding-right: 5%;
    align-items: center; 
}

.logo {
    max-height: 70px; 
    height: auto;
    width: auto;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav-item {
    text-decoration: none;
    font-weight: 800;
    color: #282728;
    padding: 5px 0;
    position: relative;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #282728;
}

.nav-item.active-dropdown {
    text-decoration: none;
    font-weight: 1000;
    color: #ffffff;
    padding: 5px 0;
    position: relative;
}

.social-icon {
    text-decoration: none;
    color: #282728;
    margin-left: 14px;
    font-size: 18px;
}

.menu-button {
    background: none;
    display: none;
    border: none;
    color: #282728;
    font-size: 20px;
    cursor: pointer;
}



@media (max-width: 950px) {
    .nav,
    .social-icon {
        display: none;
    }

    .menu-button {
        display: inline-block;
    }

    .header-center {
        flex: 1;
        text-align: left;
    }

    .header-right {
        padding-right: 30px;
    }
}

.cover {
    height: 100vh;
    background-image: url('../img/cover.jpg');
    background-size: cover;
    background-position: center;
}

.music-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    margin: 70px auto;
}

.text-container {
    flex: 1;
    padding-left:20px;
    padding-right: 40px;
    text-align: center;
}

.image-container {
    flex: 1;
}

.image-container img {
    max-width: 30vw;
    height: auto;
    font-family: Montserrat, sans-serif;
    color: rgb(26, 27, 31);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    border: 5px solid #282728;
    box-shadow: rgb(17, 25, 35) 7px 10px 24px 0px;
}

.cta-button {
    width: 40%;
    display: block;
    margin: 0 auto;
    padding: 20px 20px;
    background-color: #282728;
    border: 2px solid #00000053;
    color: #cccfd3;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.4vw;
    cursor: pointer;
    margin-top: 30px;
}

.cta-button:hover {
    background-color: #383738;
}

.mobile-text-container {
    display: none;
    max-width: 100vw;
    text-align: center;
    padding-bottom: 10px;
}

.mobile-cta-button {
    margin-top: 10px;
    width: 30vw;
    height: 10vh;
}



@media (max-width: 900px) {
    .music-section {
        padding: 3vw;
        margin: 3vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; 
        height: auto;
    }

    .cover {
        background-position: 48% 0;
    }

    .text-container {
        display: none;
    }

    .image-container {
        align-items: center;
        text-align: center;
        width: 100%;
        margin-bottom: 25px;
    }

    .cta-button {
        width: 40vw;
        font-size: 15px;
    }

    .image-container img {
        max-width: 70vw;
        margin: 0 auto;
    }

    h1 {
        font-size: 30px;
    }

    .mobile-text-container {
        display: block;
    }
}


.footer {
    background-color: #282728; 
    padding: 50px; 
    text-align: center; 
    padding-bottom: 20px;
}

.social-icon-footer {
    color: #cccfd3; 
    font-size: 18px; 
    margin: 0 10px; 
    text-decoration: none; 
}

.footnote {
    justify-self: right;
    margin-bottom: 0;
    padding-bottom: 0;
    color: #cccfd3;
}

h3 {
    color: #cccfd3;
}

.dropdown-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.836);
    z-index: 999;
}

.dropdown-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px;
    height: 50%;
}

.dropdown-nav .nav-item {
    color: #cccfd3;
    text-decoration: none;
    padding: 20px 0;
}

.social-icons-2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 90px;
    height: 50%;
}


.social-icon-2 {
    color: #cccfd3;
    text-decoration: none;
    margin: 0 10px;
    font-size: 24px
}

