:root {
    --font-size-h1: 3rem;
    --font-size-base: 1rem;
}

body {
    margin: 0;
    padding: 0;
}

.home .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.logo {
    display: block;
    width: 150px;
}

.nav-list {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    font-size: var(--font-size-base);
    color: #193064;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #a736f3;
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.burger-line {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--clr-text);
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 1023px) {
    .burger {
        display: block;
    }

    .nav-main {
        position: absolute;
        right: 0;
        top: 100%;
        width: 100%;
        background-color: #f5f0ea;
        padding: 2rem;
        max-width: 500px;
        display: none;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        font-size: 2rem;
        padding: 10px;
        display: block;
    }
}

@media (min-width: 1024px) {
    .nav-list {
        gap: 0;
    }

    .nav-link {
        width: 100px;
        height: 50px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-link.active {
        background: url(../images/menu.webp) no-repeat;
    }
}

.banner-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #a736f3, #ff6b6b);
    position: relative;
    z-index: 101;
}

.banner-content {
    margin: auto;
    text-align: center;
    color: var(--clr-surface);
    padding: 20px;
}

.banner-content .title {
    font-family: cursive;
    font-size: var(--font-size-h1);
    margin-bottom: 20px;
    text-shadow: 0 0 16px var(rgba(167, 54, 243, 0.25));
}

.banner-text {
    font-size: var(--font-size-base);
    max-width: 600px;
    margin: 0 auto 30px;
}

.banner-content .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: #ff6b6b;
    color: #fff;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
    text-decoration: none;
    border-radius: 50px;
}

@media (max-width: 767px) {
    :root {
        --font-size-h1: 2rem;
    }
}