:root {
    --primary-color: #F6D594;
    --secondary-color: #18C573;
    --tertiary-color: #D5944A;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--primary-color);
}

.header {
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    margin-right: 10px;
}

.nav-desktop {
    display: flex;
    gap: 1rem;
}

.nav-desktop a {
    color: white;
    text-decoration: none;
}

.nav-desktop a:hover {
    color: var(--tertiary-color);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.nav-mobile {
    display: none;
}

.video-section {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.text {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 1rem;
    position: fixed;
    width: 100%;
    bottom: 0;
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-mobile {
        display: none;
        background-color: var(--secondary-color);
        position: absolute;
        width: 100%;
        left: 0;
    }

    .nav-mobile.active {
        display: block;
    }

    .nav-mobile a {
        display: block;
        color: white;
        text-decoration: none;
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-mobile a:hover {
        background-color: var(--tertiary-color);
    }
}