* {
    padding: 0;
    margin: 0;
    vertical-align: baseline;
    list-style: none;
    border: 0;
    text-decoration: none;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: #fafafc;
    background-color: #2132b9;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

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

.mobile-hero {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 56.72%);
    opacity: 0.5;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-sizing: border-box;
    color: #fafafc;
    font-size: 20px;
    font-weight: 500;
}

.logo-container {
    flex: 1;
    text-align: center;
}

.logo {
    max-width: 225px;
    height: auto;
}


.nav-menu a {
    color: #fafafc;
    position: relative;
}

.nav-menu a::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 5px;
    background-color: #FBFBFD;
    opacity: 0;
    transition: width 0.2s, opacity 0.2s;
}

.nav-menu a:hover::before {
    opacity: 1;
    width: 100%;
}



.nav-menu ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu li {
    margin-right: 20px;
}

.nav-menu li:last-child {
    margin-right: 0;
}

.social-icons {
    text-align: right;
}

.social-icon {
    margin-right: 10px;
    color: #fafafc;
    font-size: 25px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #dadada;
}

.mobile-menu-icon {
    display: none;
}

/* YouTube Box Styles */
.youtube-box {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 45%;
    padding-bottom: calc(45% * 9 / 16); /* 16:9 aspect ratio */
    border-radius: 10px;
    border: 2px solid #fafafc;
    overflow: hidden;
}

.youtube-box iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f0f0f;
    opacity: 0.5;
    z-index: 10;
}

.ytp-chrome-top, 
.ytp-chrome-bottom, 
.ytp-impression-link, 
.ytp-large-play-button {
    display: none !important;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
}

.play-button img {
    width: 9vw;
    height: auto;
    cursor: pointer;
}

.listen-button {
    text-align: center;
    margin-top: 15vw;
    position: absolute;
    top: 50%;
    right: 5%;
    width: 45%;
    padding-bottom: calc(45% * 9 / 16);
    border-radius: 10px;
    overflow: hidden;
}

.listen-button a {
    display: inline-block;
    padding: 15px 25px;
    background-color: #fafafc;
    color: #2132b9;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 18px;
    font-weight: 500;
}

.listen-button a:hover {
    background-color: #dadada;
}

.mobile-menu-icon {
    display: none;
}

@media (max-width: 768px) {
    .desktop-hero {
        display: none;
    }

    .mobile-hero {
        display: block;
    }

    .site-header {
        flex-direction: column;
        align-items: center;
    }

    .social-icons {
        text-align: left;
        margin-top: 10px;
    }

    .mobile-menu-icon {
        display: block;
        position: absolute;
        top: 45px;
        right: 30px;
        color: #fafafc;
        font-size: 33px;
        cursor: pointer;
    }

    .youtube-box {
        position: absolute;
        top: 50%;
        right: 0%;
        transform: translateY(30%);
        width: 75%;
        padding-bottom: calc(75% * 9 / 16);
        border-radius: 10px;
        border: 2px solid #fafafc;
        overflow: hidden;
        left: 0;
        margin: 0 auto;
    }

    .listen-button {
        text-align: center;
        margin-top: 58vw !important;
        position: absolute;
        top: 50%;
        right: 0;
        width: 45%;
        padding-bottom: calc(45% * 9 / 16);
        border-radius: 10px;
        overflow: hidden;
        left: 0;
        margin: 0 auto;
    }
    
    .listen-button a {
        display: inline-block;
        padding: 10px 15px;
        background-color: #fafafc;
        color: #2132b9;
        border-radius: 10px;
        text-decoration: none;
        transition: background-color 0.3s ease;
        font-size: 15px;
        font-weight: 500;
    }

    .nav-menu {
        display: none;
        width: 50%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -50%;
        background-color: #2132b9;
        transition: right 0.3s ease;
        z-index: 998;
        padding-top: 100px;
        box-sizing: border-box;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        list-style: none;
        padding: 0;
        text-align: center;
    }

    .nav-menu li {
        margin-bottom: 20px;
    }

    .nav-menu a {
        color: #fafafc;
        font-size: 20px;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .nav-menu a:hover {
        color: #dadada;
    }

    .logo-container {
        text-align: center;
    }

    .social-icons {
        text-align: center;
        margin-top: 20px;
    }

    .play-button img {
        width: 15vw;
    }
}
