/**
*   Imports
*/

@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/**
*   Globals
*/

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --empasis: #880000;

    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Montserrat;
    box-sizing: border-box;
}

h2 {
    font-family: Pacifico;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.6;
    font-size: 36px;
}

li {
    line-height: 1.6;
}

p {
    line-height: 1.6;
    width: 100%;
}

footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    height: 100px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer > * {
    white-space: pre;
}

/**
*   Mobile Styles
*/

@media screen and (max-width: 768px) {
    [id^="background-"] {
        padding: 36px 80px !important;
    }
}

@media screen and (max-width: 480px) {
    [id^="background-"] {
        padding: 36px 20px !important;
    }

    #menuOverflow {
        display: none;
    }

    #buttonContainer {
        display: flex;
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
    }

    #buttonContainer > * {
        margin: 8px !important;
        width: 100% !important;
    }
}


/**
*   Header
*/

#header {
    height: 80px;
    padding: 5px 20px;
    background-color: var(--primary-color);
    box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.headerLeft, .headerRight {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    width: 50%;
}

.headerRight {
    justify-content: flex-end;
}

#siteTitle {
    font-family: Pacifico;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 1px;
    line-height: 1.6;
    color: var(--secondary-color);
    text-decoration: none;
}

.menuItem {
    color: var(--secondary-color);
    transition: 0.6s;
    text-decoration: none;
    padding: 5px 10px;
}

.menuItem:hover {
    color: var(--empasis);
    transition: 0.6s;
}

.titleEffect {
    transition: 0.6s;
}

.titleEffect:hover {
    color: var(--empasis);
    transition: 0.6s;
}


/**
*   Hero Section
*/

#hero {
    max-width: 100%;
    min-height: 85vh;
    padding: 60px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(./../images/pexels-lamarbelina-3635945.jpg);
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    line-height: 1.6;
    text-align: center;
}

.primaryBtn {
    cursor: pointer;
    background-color: var(--secondary-color);
    border-radius: 50px;
    border: 1px solid var(--secondary-color);
    color: var(--primary-color);
    transition: 0.6s;
    min-width: 175px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.primaryBtn:hover {
    background-color: var(--empasis);
    color: var(--secondary-color);
    border: 1px solid var(--empasis);
}

.secondaryBtn:hover {
    background-color: var(--empasis);
    color: var(--secondary-color);
    border: 1px solid var(--empasis);
}

.secondaryBtn {
    cursor: pointer;
    background-color: #ffffff00;
    border-radius: 50px;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    transition: 0.6s;
    min-width: 175px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

#buttonContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 400px;
    max-width: 100%;
    margin-top: 32px;
}


/**
*   Verification Section
*/

#verification {
    height: 85vh;
    padding: 72px calc((100% - 980px) / 2);
    max-width: 1000%;
    background-color: var(--primary-color);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 40px;
    row-gap: 40px;
    justify-content: center;
    align-items: center;
    justify-items: center;
    align-content: center;
    display: none !important;
}

.verificationItem {
    min-height: 300px;
    width: 300px;
    border-radius: 20px;
    border: solid 1px rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 1px 1px 8px rgba(255, 255, 255, 0.3);
}

/**
*   Background Section
*/

[id^="background-"] {
    min-height: 85vh;
    padding: 36px calc((100% - 980px) / 2);
    max-width: 100%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    transition: 0.6s;
}

[id^="background-"]:hover {
    background-color: var(--empasis);
    color: var(--secondary-color);
    transition: 0.6s;
}

[id^="background-"] > h3 {
    width: 100%;
    text-transform: uppercase;
    font-weight: 700;
}

/**
*   Disclaimer Modal
*/

#disclaimerOverlay {
    z-index: 100;
    background-color: #00000066;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
}

#disclaimerOverlay > #disclaimer {
    width: 400px;
    max-width: 90%;
    color: var(--secondary-color);
    min-height: 400px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: var(--primary-color);
    border-radius: 20px;
}

#closeBtn {
    color: var(--secondary-color);
    font-size: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

#closeBtn-2 {
    margin-top: 32px;
}

/**
*   jQuery Helper Classes
*/

.show {
    display: flex !important;
    transition: 0.6s;
}

.hide {
    display: none;
}