/* header navigation bar */

.header {
    display: flex;
    width: 100%;
    /* height: 5vh; */
    background: #0D0B27;
    padding: clamp(0pt, 3vw, 5pt) clamp(0pt, 3vw, 10pt);
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-left,
.header-right {
    display: flex;
    width: 25%;
    align-items: center;
    /* padding: 2pt 0pt; */
}

.header-left-menu {
    height: auto;
    max-height: 100%;
    max-height: clamp(0pt, 10vw, 30pt);
    margin: 2pt;
}

.header-left>button {
    border: none;
    background: none;
}

.header-left>p.logo {
    display: none;
    margin: 0pt 20pt;
}

.header-left>button {
    display: block;
}

.header-center {
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: center;
    gap: 15pt;

    a {
        display: none;
        color: var(--Saini-light, #B29DFF);
        font-family: Outfit;
        font-size: 12pt;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.4px;
        text-decoration: none;
        align-items: center;

        img {
            margin-right: 3pt;
            height: 15pt;
        }
    }
}

.header-center>p.logo {
    display: block;
}

.header-right {
    justify-content: end;
}

.header-right p {
    margin: 2pt;
    font-size: clamp(0pt, 3vw, 10pt);
}

.header-left.hidden {
    content-visibility: hidden;
}

.header-right.hidden {
    content-visibility: hidden;
}

@media screen and (min-width: 1024px) {
    .header-left {
        width: fit-content;
    }

    .header-center {
        justify-content: left;
        width: 100%;
    }

    .header-center>p.logo {
        display: none;
    }

    .header-center>a {
        display: flex;
    }

    .header-left>p.logo {
        display: block;
    }

    .header-left>button {
        display: none;
    }
}

/* main container */

.main-container {
    display: flex;
    flex-direction: row;
    width: 100vw;
}

.navbar {
    display: flex;
    position: fixed;
    top: 0;
    left: -90vw;
    flex-direction: column;
    width: clamp(0pt, 90vw, 300pt);
    height: 100vh;
    background: #12102A;
    transition-duration: 1s;
    z-index: 1000;
    padding: 10pt;
    gap: 10pt;
}

.navbar>a {
    display: flex;
    color: var(--Saini-light, #B29DFF);
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.4px;
    margin-left: 7pt;
    text-decoration: none;
}

.navbar>a>img {
    margin-right: 5pt;
}

.navbar.active {
    left: 0vw;
}

.navbar-top {
    display: flex;
    width: 100%;
    margin-bottom: 10pt;
    padding: 0pt 10pt;
}

.navbar-top>button {
    /* width: fit-content; */
    /* height: min-content; */
    border: none;
    background: none;
}

.navbar-top>button>img {
    height: auto;
    /* max-height: 100%; */
    max-height: clamp(0pt, 10vw, 30pt);
    margin: 2pt;
    transform: rotate(180deg);
}

.navbar-top>p {
    width: 100%;
    text-align: left;
}

.body-container {
    position: relative;
    max-width: 100vw;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

/* title */

.title {
    display: flex;

    padding-top: clamp(0pt, 14vw, 72pt);
    padding-bottom: clamp(0pt, 7vw, 36pt);
    padding-left: 30pt;
    padding-right: 30pt;

    p {
        color: #CCBEFE;
        text-align: center;
        font-family: Mercadillo;
        font-size: clamp(0pt, 8.5vw, 65px);
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
}

/* pill button */

.pill-button {
    display: flex;
    width: max-content;
    padding: clamp(5pt, 2.5vw, 10pt) clamp(10pt, 7.5vw, 25pt);
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 2.25rem;
    outline: 1pt solid var(--gold-21, #8B6432);
    background: rgba(13, 11, 39, 0.30);
    transition-duration: 0.4s;
    backdrop-filter: blur(10px);
    box-shadow: 2px 2px 15px 5px rgba(50, 50, 50, 0.8);
    /* -webkit-box-shadow: 9px 6px 10px 0px rgba(50, 50, 50, 0.5);
    -moz-box-shadow: 9px 6px 10px 0px rgba(50, 50, 50, 0.5); */
    /* margin-top: clamp(0pt, 10vw, 10pt); */

    color: #D3CCFF;
    text-align: center;
    font-family: Outfit;
    font-size: clamp(0pt, 5vw, 17pt);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.033rem;

    &:hover {
        filter: brightness(1.1);
        outline: 4pt double var(--gold-21, #8B6432);
        backdrop-filter: blur(17px);
        box-shadow: 2px 2px 15px 2px rgba(50, 50, 50, 0.8);
    }
}

/* footer */

.footer {
    display: flex;
    justify-content: space-between;
    padding: 48px 64px;
    gap: clamp(50pt, 35vw, 100pt);

    background: #0D0B27;
}

.footer-1 {
    display: flex;
    flex-direction: column;
    /* width: 30%; */
    flex: 1.5 1 0%;
    gap: 16pt;


    p.logo {
        font-size: 45pt !important;
        text-align: start;
    }
}

.footer-copy {
    display: flex;
    flex-direction: column;
    gap: 16pt;

    p {
        color: var(--Saini-light, #B29DFF);
        text-align: center;
        font-family: Outfit;
        font-size: 12pt;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.32px;
        text-align: left;
    }
}

.footer-warn {
    display: flex;
    gap: 6pt;

    img {
        height: 40px;
    }

    p {
        color: var(--Saini-light, #B29DFF);
        font-family: Outfit;
        font-size: clamp(0pt, 3vw, 10pt);
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-align: left;
    }
}

.footer-2 {
    display: flex;
    flex-direction: row;
    flex: 3 1 0%;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: baseline;

    p {
        color: #DAD4FF;
        font-family: Outfit;
        font-size: 14pt;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 10pt;
    }

    a {
        color: var(--Saini-light, #B29DFF);
        text-align: center;
        font-family: Outfit;
        font-size: 14pt;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        margin-bottom: 4pt;
    }
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: baseline;

    p {
        color: #DAD4FF;
        font-family: Outfit;
        font-size: 14pt;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 10pt;
    }

    a {
        color: var(--Saini-light, #B29DFF);
        text-align: center;
        font-family: Outfit;
        font-size: 14pt;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        margin-bottom: 4pt;
    }
}

.footer-shortcut {
    display: flex;
    flex-direction: row;
    width: 120pt;
    flex-wrap: wrap;
    gap: 16pt;
    align-content: baseline;

    a {
        display: flex;
        padding: 4pt 12pt;
        justify-content: center;
        align-items: center;
        border-radius: 12pt;
        background: #1B183A;
        height: fit-content;
        gap: 10px;

        img {
            height: 24pt;
            margin: 0pt;
        }
    }
}

.footer-copy-second {
    display: none;
    flex-direction: column;
    gap: 16pt;

    p {
        color: var(--Saini-light, #B29DFF);
        text-align: center;
        font-family: Outfit;
        font-size: clamp(0pt, 3vw, 12pt);
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.32px;
        text-align: left;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .footer {
        gap: 30pt;
    }

    .footer-1 {
        flex: 1 1 0%;
    }

    .footer-2 {
        flex-direction: column;
        gap: 18pt;
        flex: 1 1 0%;
    }

    .footer-shortcut {
        width: 100%;
        gap: 8pt;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        flex-direction: column;
        gap: 20pt;
        padding: clamp(0pt, 25vw, 20pt) clamp(0pt, 25vw, 30pt);
    }

    .footer-copy {
        display: none;
    }

    .footer-copy-second {
        display: flex;
    }

    .footer-1 {
        flex: 1 1 0%;

        p.logo {
            font-size: clamp(0pt, 10vw, 65pt) !important;
        }
    }

    .footer-2 {
        flex-direction: column;
        gap: 18pt;
        flex: 1 1 0%;
    }

    .footer-links {
        p {
            font-size: clamp(0pt, 4vw, 18pt);
        }

        a {
            font-size: clamp(0pt, 4vw, 18pt);
        }
    }

    .footer-info {
        p {
            font-size: clamp(0pt, 4vw, 18pt);
        }

        a {
            font-size: clamp(0pt, 4vw, 18pt);
        }
    }

    .footer-shortcut {
        width: 100%;
        gap: 8pt;
    }
}