@import url(https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200..800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap);


body {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    height: auto;
    min-height: 100vh;
    background-color: rgb(0, 0, 0);
    background-repeat: no-repeat;
    background: 
        radial-gradient(circle at 20% 30%, rgba(100, 0, 150, 0.4), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(5, 79, 190, 0.4), transparent 60%),
        linear-gradient(135deg, rgba(20, 0, 40, 0.9), rgba(10, 10, 30, 0.95)),
        #000000;
    font-family: "Plus Jakarta Sans", arial, sans-serif;
    color: white;
    flex: 1;
}

header {
    display: flex;
    background-color: rgba(19, 19, 19, 0.6);
    position: fixed;
    height: 100px;
    width: 100%;
    align-items: center;
    padding: 0 10px;
    justify-content: space-between;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
}

.headerLogo {
    display: flex;
    width: 150px;
    height: 100%;
    background-image: url(../images/OFN_LOGO_WHITE.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s;
}

.headerLogo:hover {
    opacity: 0.9;
    scale: 0.95;
}

.options {
    display: flex;
    font-size: 1rem;
    align-items: center;
    position: fixed;
    right: 40px;
    justify-content: space-between;
}

.language {
    font-size: 1.3rem;
    font-weight: 800;
}

a {
    color: white;
    text-decoration: none;
}

.fa-bars {
    font-size: 2.3rem;
    transition: all 0.3s;
}

.fa-bars:hover {
    cursor: pointer;
    scale: 0.95;
    color: brown;
}

main {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    padding-top: 130px;
    flex: 1;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}

h1 {
    margin-top: 30px;
    padding: 10px;
    margin-bottom: 30px;
    font-size: clamp(1.5rem, -1.5rem + 11vw, 3.4rem);
    text-align: center;
}

p {
    font-size: clamp(0.8rem, -1.5rem + 3vw, 1.1rem);
    line-height: clamp(1.5rem, -1.5rem + 2vw, 2rem);
    font: inherit;
}

.description {
    font-size: 2.5rem;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 2.5;
}

.sectionTitle {
    font-weight: 600;
    margin-bottom: 30px;
    font-size: clamp(1.5rem, -1.5rem + 5vw, 2rem);
}

.separateSections {
    margin-top: 4rem;
    margin-bottom: 4rem;
    width: 60%;
    height: 2px;
    background-color: #888888;
}

.sponsors {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: auto;
}

.sponsor {
    width: 200px;
    height: 70px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
}

.sponsor:hover {
    opacity: 0.7;
}

li {
    font-size: 0.9rem;
    margin-left: 0px;
}

.map {
    aspect-ratio: 7 / 3;
    width: 80%;
    border-radius: 10px;
    margin-top: 30px;
}

.mapSection{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #a0a0a01c;
    padding: 50px;
    box-sizing: border-box;
    border-radius: 30px;
    margin-top: 50px;
}

ul {
    text-align: start;
    list-style-type: disc;
    padding-left: 25px;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgb(146, 146, 146);
    border-radius: 10px;
    cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(100, 100, 100);
}

::-webkit-scrollbar-track {
    margin-top: 20px;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 20px;
    background: rgb(14, 14, 14);
    border-radius: 10px;
}

@media (min-width: 1400px) {
    main {
        max-width: 1920px;
    }

    .sponsor {
        scale: 1.3;
        margin-left: 30px;
        margin-right: 30px;
    }

    .sponsors {
        margin: 0px;
    }
}

@media (max-width: 1300px) {
    .separateSections {
        width: 80%;
        margin: 50px;
    }

    .map {
        width: 70%;
        aspect-ratio: 7 / 4;
    }
}

@media (max-width: 992px) {
    main {
        width: 100%;
    }

    .map {
        width: 80%;
        aspect-ratio: 3 / 2;
    }

    .sponsor {
        height: 100px;
    }
}

@media (max-width: 670px) {
    header {
        padding: 0 0px;
    }

    .headerLogo {
        height: 70%;
        width: 120px;
    }
        .mapSection{
        width: 90%;
    }


    .options {
        right: 20px;
    }

}

@media (max-width: 480px) {
    .description {
        font-size: 2rem;
        margin: 10px;
    }

    .sectionTitle {
        font-size: 2rem;
    }

    .sponsor {
        flex: 1 1 100px;
        height: 80px;
    }

    .headerLogo {
        width: 100px;
    }

    .fa-bars {
        font-size: 2rem;
    }

    .map {
        width: 100%;
        aspect-ratio: 4 / 3;
    }

    .mapSection{
        width: 90%;
    }

    main {
        padding-left: 10px;
        padding-right: 10px;
    }
}
