@font-face {
    font-family: "LemonMilk";
    src: url("../fonts/LEMONMILK-Bold.otf") format("opentype");
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: "Lusitana", serif;
    user-select: none;
}

html, body {
    overscroll-behavior-y: none;
    overflow-x: hidden;
}

body {
    font-family: "Lusitana", serif;
    color: #ffffff;
    background-color: #101624;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem 2rem;
    background-color: rgba(16, 22, 36, 0.4);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45vw;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    width: 100%;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover {
    text-decoration: underline;
}

.logo {
    width: 8vw;
    padding: 20px;
    height: auto;
    cursor: pointer;
}

.screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    overflow-y: hidden;
}

h2 {
    font-family: "LemonMilk", sans-serif;
    font-size: 2em;
    text-align: left;
    color: #ffffff;
}

.light {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
}

div {
    overflow-y: hidden;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 10vh;
    background-color: #1f3058;
    backdrop-filter: blur(20);
    width: 100%;
    margin-top: auto;
}

footer p {
    color: #ffffff;
    font-size: 0.8em;
}

#RS-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#RS-icons img {
    width: 2em;
    height: 2em;
    margin: 0 1em;
    transition: transform 0.3s;
}

#RS-icons img:hover {
    transform: scale(1.2);
}

#light2 {
    top: 18%;
    left: 0;
    width: 80vh;
    height: 80vh;
}

#light1 {
    top: 0;
    left: 50%;
    width: 80vh;
    height: 80vh;
}

.button {
    background: linear-gradient(to right, #9F6049 0%, #DB9958 31%, #FBC96C 88%, #FEE397 100%);
    display: inline-block;
    font-size: 1.3vw;
    padding: 0.7em 1.3em;
    margin: 0.5em;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
    border: none;
}

.button:hover {
    cursor: pointer;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #1f3058;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #24386b;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
}

.burger-bar {
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(16, 22, 36, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    list-style: none;
    padding: 0;
}

.mobile-nav li {
    margin: 20px 0;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: "LemonMilk", sans-serif;
}

.burger-menu.active .burger-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 8px);
}

.burger-menu.active .burger-bar:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -8px);
}

@media (max-width: 768px) {
    .light {
        display: none;
    }
    .screen {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .button {
        padding: 1em 1.5em;
        font-size: 1.5em;
    }
    header nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    header {
        justify-content: space-between;
        padding: 1rem 2rem;
    }

    .logo {
        width: 10vw;
        padding: 0;
        padding-top: 1vh;
    }
}
