/*
░▀█▀░█▄█░█▀█░█▀█░█▀▄░▀█▀░█▀▀
░░█░░█░█░█▀▀░█░█░█▀▄░░█░░▀▀█
░▀▀▀░▀░▀░▀░░░▀▀▀░▀░▀░░▀░░▀▀▀
*/

@font-face {
    font-family: 'Zain';
    src: url('fonts/Zain/Zain-Regular.ttf');
}

@font-face {
    font-family: 'League-Spartan-Bold';
    src: url('fonts/LeagueSpartan/static/LeagueSpartan-Bold.ttf');
}

@font-face {
    font-family: 'League-Spartan-ExtraBold';
    src: url('fonts/LeagueSpartan/static/LeagueSpartan-ExtraBold.ttf');
}

@font-face {
    font-family: 'League-Spartan';
    src: url('fonts/LeagueSpartan/static/LeagueSpartan-Regular.ttf');
}

/*
░█▀▀░█░░░█▀█░█▀▄░█▀█░█░░
░█░█░█░░░█░█░█▀▄░█▀█░█░░
░▀▀▀░▀▀▀░▀▀▀░▀▀░░▀░▀░▀▀▀
*/

:root {
    --hexautic-purple: #400E77;
    --dark-purple: #270C45;
    --off-black: #160F19;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    margin: 0%;
    scrollbar-width: none;
    font-family: 'Zain';
    scroll-behavior: smooth;
    font-size: 26px;
}

html, body {
    font-family: "Zain", sans-serif;
    color: #fff;
    background-color: var(--off-black);
    height: 2000px;
}

.title {
    margin-top: 2vh;
    margin-bottom: 2vh;
    font-size: 42px;
    font-family: "League-Spartan-Bold";
}

@media (max-width: 600px) {
    .title {
        font-size: 24px;
    }
}

@media (max-width: 800px) {
    .title {
        font-size: 32px;
    }
}

.info {
    display: grid;
    align-items: center;
    min-height: 100vh;
}

.info-purple {
    display: grid;
    align-items: center;
    background-color: var(--dark-purple);
    min-height: 100vh;
}

/*
░█░█░█▀▀░█▀█░█▀▄░█▀▀░█▀▄
░█▀█░█▀▀░█▀█░█░█░█▀▀░█▀▄
░▀░▀░▀▀▀░▀░▀░▀▀░░▀▀▀░▀░▀
*/

.nav-links {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 5vh 15vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 9999;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-family: 'League-Spartan';
    font-size: 24px;
    cursor: pointer;
    user-select: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 4px;
    background-color: white;
    border-radius: 10px;
    margin: 4px 0;
    z-index: 1000;
}

@media (max-width: 800px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--hexautic-purple);
        position: fixed;
        top: 60px;
        right: 0;
        width: 100%;
        text-align: right;
        padding: 1em;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/*
░█░░░█▀█░█▀█░█▀▄░▀█▀░█▀█░█▀▀░░░█▀▄░█▀█░█▀█░█▀█░█▀▀░█▀▄
░█░░░█▀█░█░█░█░█░░█░░█░█░█░█░░░█▀▄░█▀█░█░█░█░█░█▀▀░█▀▄
░▀▀▀░▀░▀░▀░▀░▀▀░░▀▀▀░▀░▀░▀▀▀░░░▀▀░░▀░▀░▀░▀░▀░▀░▀▀▀░▀░▀
*/

.banner {
    height: 100vh;
    width: auto;
    position: relative;
    overflow: hidden;
}

.blend-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    mix-blend-mode: color-dodge;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.blend-layer img {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0px);
    width: 100%;
    height: fit-content;
    user-select: none;
}

.banner-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 2rem;
    display: flex;
    align-items:center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background: linear-gradient(transparent, transparent, var(--dark-purple));
}

.banner-title {
    position: relative;
    font-size: 42px;
    top: 20px;
}

@media (max-width: 600px) {
    .banner-title {
        font-size: 24px;
    }
}

@media (max-width: 800px) {
    .banner-title {
        font-size: 32px;
    }
}

.svg-logo {
    width: 40vw;
    max-width: 500px;
}

.svg-logo svg {
    width: 100%;
    height: auto;
    display: block;
}

.button {
    border: none;
    background-color: var(--hexautic-purple);
    color: #fff;
    margin-top: 10vh;
    width: 170px;
    height: 40px;
    margin-left: 25vw;
    margin-right: 25vw;
    border-radius: 28px;
}

.button:hover {
    cursor: pointer;
}

/*
░█▀█░█▀▄░█▀█░█░█░▀█▀░░░█░█░█▀▀
░█▀█░█▀▄░█░█░█░█░░█░░░░█░█░▀▀█
░▀░▀░▀▀░░▀▀▀░▀▀▀░░▀░░░░▀▀▀░▀▀▀
*/

.about {
    min-height: 0%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    margin: 0vw 15vw 0vw 15vw;
}

.about-content {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    width: 30vw;
    font-size: larger;
}

@media (max-width: 600px) {
    .about-content p {
        font-size: 24px;
    }
}

@media (max-width: 800px) {
    .about-content p {
        font-size: 32px;
    }
}

.about img {
    max-height: max-content;
    max-width: 30vw;
}

/*
░█▀▄░█▀▄░▀█▀░█░█░█▀▀░█▀▀
░█░█░█▀▄░░█░░▀▄▀░█▀▀░▀▀█
░▀▀░░▀░▀░▀▀▀░░▀░░▀▀▀░▀▀▀
*/

.drives {
    min-height: 0%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    margin: 0vw 15vw 0vw 15vw;
    text-align: right;
}

.drives-content {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    width: 30vw;
    font-size: larger;
}

.drives img {
    max-height: max-content;
    max-width: 30vw;
}

/*
░█▀▀░█░█░█░░░█░░░█▀▀░█▀▀░█▀▄░█▀▀░█▀▀░█▀█░░░▀█▀░█▄█░█▀▀
░█▀▀░█░█░█░░░█░░░▀▀█░█░░░█▀▄░█▀▀░█▀▀░█░█░░░░█░░█░█░█░█
░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀▀░▀▀▀░▀░▀░▀▀▀░▀▀▀░▀░▀░░░▀▀▀░▀░▀░▀▀▀
*/

.full-image {
    min-height: 0%;
    width: 100vw;
}

.logo-image {
    max-width: 100%;
}

.full-image img, .footer img {
    width: 100%;
    max-height: none;
}

/*
░█░█░█▀█░█░░░█▀▀░█▀█░█▀█░█▀█░░░█▀▀░█▀▀░█▀▀░▀█▀
░▀▄▀░█░█░█░░░█░░░█▀█░█░█░█░█░░░█▀▀░█▀▀░▀▀█░░█░
░░▀░░▀▀▀░▀▀▀░▀▀▀░▀░▀░▀░▀░▀▀▀░░░▀░░░▀▀▀░▀▀▀░░▀░
*/

.volcano-fest {
    min-height: 0%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    margin: 0vw 15vw 0vw 15vw;
}

.volcano-fest-content {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    width: 30vw;
    font-size: larger;
}

.volcano-fest img {
    max-height: max-content;
    max-width: 30vw;
}

/* Parallax images background */
#about {
    background-image: url("images/svg/about-us.svg");
    background-repeat: no-repeat;
    background-size: 110%;
    background-position: center;
}

#drives {
    background-image: url("images/svg/core-drives.svg"),
    linear-gradient(var(--dark-purple), var(--off-black), var(--off-black), var(--off-black));
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 110%;
    background-position: center;
}

#volcano-fest {
    background-image: url("images/svg/volcano-fest.svg"),
    linear-gradient(var(--off-black), var(--off-black), var(--off-black), var(--dark-purple));
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 110%;
    background-position: center;
}



/*
░█▀▀░█▀█░█▀█░▀█▀░█▀█░█▀▀░▀█▀
░█░░░█░█░█░█░░█░░█▀█░█░░░░█░
░▀▀▀░▀▀▀░▀░▀░░▀░░▀░▀░▀▀▀░░▀░
*/

.contact {
    min-height: 0vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    background-color: transparent;
    margin: 0vw 15vw 0vw 15vw;
    gap: 15px;
}

.contact-list {
    min-height: 0vh;
    padding: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    text-align: center;
    gap: 15px;
    
}

.contact-item {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    width: 30vw;
    font-size: larger;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
}

/*
░█▀▀░█▀█░█▀█░▀█▀░█▀▀░█▀▄
░█▀▀░█░█░█░█░░█░░█▀▀░█▀▄
░▀░░░▀▀▀░▀▀▀░░▀░░▀▀▀░▀░▀
*/

footer {
    min-height: 25vh;
    padding-top: 5vh;
    padding-bottom: 5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

.socials {
    min-height: 0vh;
    display: flex;
    overflow: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0vw 15vw 0vw 15vw;
    gap: 5vw;
}

.socials svg {
    max-width: 10vw;
    width: 100%;
    height: auto;
    display: block;
}

.divider {
    width: 65%;
    height: 1px;
    background-color: #3A283E;
    margin: 0vw 15vw 0vw 15vw;
}

.important {
    display: flex;
    overflow: auto;
    justify-content: space-between;
    margin: 0vw 15vw 0vw 15vw;
    gap: 5vw;
}

.important p {
    font-size: 18px;
}

/* Responsive */
@media (max-width:800px) and (min-width:200px) {
    .about, .drives, .volcano-fest {
        display: grid;
    }

    .drives {
        text-align: left;
        grid-auto-flow: row-reverse;
    }

    .about p, .drives p, .volcano-fest p {
        width: 75vw;
        margin-bottom: 50px;
    }

    .about img, .drives img, .volcano-fest img {
        max-width: 75vw;
        margin: 0;
    }
}