/* COLORS
Primary
#100A20 Black
#ff7b00 Orange
#6D52C1 Purple
#996DF2 Light Purple
#6B47B2 Dark Purple

Secondary
#FF8833 Orange
#D2FFA6 Lime (hover) 
*/

@font-face {
    font-family: 'poppins-bold';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff'),
        url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.poppins-bold {
    font-family: 'poppins-bold' !important;
}

@font-face {
    font-family: 'poppins-extraBold';
    src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraBold.woff') format('woff'),
        url('../fonts/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.poppins-extraBold {
    font-family: 'poppins-extraBold' !important;
}

@font-face {
    font-family: 'poppins-italic';
    src: url('../fonts/Poppins-Italic.woff2') format('woff2'),
        url('../fonts/Poppins-Italic.woff') format('woff'),
        url('../fonts/Poppins-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

.poppins-italic {
    font-family: 'poppins-italic' !important;
}

@font-face {
    font-family: 'poppins-light';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff'),
        url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

.poppins-light {
    font-family: 'poppins-light' !important;
}

@font-face {
    font-family: 'poppins-regular';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff'),
        url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.poppins-regular {
    font-family: 'poppins-regular' !important;
}

@font-face {
    font-family: 'poppins-semiBold';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff'),
        url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.poppins-semiBold {
    font-family: 'poppins-semiBold' !important;
}

::-moz-selection {
    /* Code for Firefox */
    color: #D2FFA6;
    background: #D2FFA6;
}

::selection {
    color: #000;
    background: #D2FFA6;
}


body {
    font-family: 'poppins-regular' !important;
    background: linear-gradient(135deg, #26134D, #10091F);
    color: #FFFFFF;
}

.red {
    color: red !important;
}


#navbar .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, #20004e, #2d006f);
    padding: 20px 30px;
    width: 100%;
    border-radius: 10px;
    position: relative;
    box-shadow: inset 0px -5px 10px rgba(255, 255, 255, 0.4);
    z-index: 1;
}

#navbar .navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(350deg, rgba(255, 136, 51, 0.5), rgba(109, 82, 193, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

#navbar .logo {
    z-index: 2;
    max-width: 150px;
}

#navbar .logo span {}

#navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 50px;
    z-index: 2;
}

#navbar .nav-links a {
    text-decoration: none;
    color: white;
    font-family: 'poppins-semiBold';
    font-size: 20px;
    transition: 0.3s;
    text-transform: uppercase;
}

#navbar .nav-links a:hover {
    color: #ff7b00;
}

#navbar .nav-links span {
    color: rgba(80, 64, 127, 1);
    font-size: 20px;
}

#navbar .navbar .navbar-btn {
    background-color: #ff7b00;
    color: #100A20;
    padding: 24px 32px;
    border-radius: 10px;
    font-family: 'poppins-bold';
    font-size: 17px;
    line-height: 1;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2;
    text-decoration: none !important;
}


#navbar .navbar .navbar-btn:hover {
    background-color: #D2FFA6;
    cursor: pointer;
}

/* Store badges styling */
.store-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.store-badge-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.store-badge-link:hover {
    transform: translateY(-3px);
}

.store-badge-link img {
    height: 40px;
    width: auto;
    display: block;
}

/* Footer store badges */
.footer-store-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-store-badges .store-badge-link {
    text-decoration: none;
}

.footer-store-badges .store-badge-link img {
    height: 80px;
    width: auto;
    display: block;
}

/* Mobile store badges */
.mobile-store-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 10px;
}

.mobile-store-badges .store-badge-link img {
    height: 50px;
    width: auto;
}

#footer {
    padding-top: 200px;
    padding-bottom: 50px;
    background-color: #100A20;
}

#footer .nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
    width: 100%;
    position: relative;
    z-index: 1;
}

#footer .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 20px;
    transition: 0.3s;
}

#footer .nav-links a:hover {
    color: #ff7b00;
}

#footer .nav-links span {
    color: rgba(80, 64, 127, 1);
    font-size: 20px;
}

#footer .footer-emails {
    color: #50407F !important;
    font-size: 18px !important;
    font-family: 'poppins-bold';
    margin-bottom: 10px !important;
    text-transform: uppercase !important;
    line-height: 19px !important;
    letter-spacing: -0.4px !important;
}

#footer .footer-emails a {
    color: #50407F !important;
    font-size: 18px !important;
    font-family: 'poppins-bold';
    margin-bottom: 0 !important;
    text-transform: uppercase !important;
    line-height: 19px !important;
    letter-spacing: -0.4px !important;
    transition: 0.3s;
}

#footer .footer-emails a:hover {
    color: #ff7b00 !important;
    transition: 0.3s;
}

.social-links {
    border-top: 2px solid #504080;
}

.submit-loader {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 2em;
    transform-origin: center;
    animation: rotate4 2s linear infinite;
}

.submit-loader circle {
    fill: none;
    stroke: hsl(214, 0%, 100%);
    stroke-width: 2;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash4 1.5s ease-in-out infinite;
}

@keyframes rotate4 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash4 {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dashoffset: -125px;
    }
}

.hidden {
    display: none !important;
}

.alert {
    background: linear-gradient(180deg, #20004e, #2d006f);
    padding: 10px 20px;
    width: 100%;
    border-radius: 10px;
    color: #D2FFA6;
    border: 2px solid #D2FFA6;
    font-size: 18px;
    font-family: 'poppins-semiBold';
}

.disclaimer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media(min-width:993px) {
    .mobile-nav {
        display: none !important;
    }

    .mobile-only {
        display: none;
    }
}

@media(max-width:992px) {
    .desktop-only {
        display: none;
    }

    .desktop-nav {
        display: none !important;
    }

    #navbar .navbar {
        display: block;
        width: 100%;
        z-index: 999;
        position: relative;
    }


    #navbar .logo img {
        max-width: 100px;
    }

    .burger-menu {
        width: 100%;
    }

    .mobile-nav {
        background: linear-gradient(180deg, #20004e, #2d006f);
        padding: 20px 30px;
        width: 100%;
        border-radius: 10px;
        position: relative;
        box-shadow: inset 0px -5px 10px rgba(255, 255, 255, 0.4);
        z-index: 1;
        position: relative;
    }

    .mobile-nav::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 10px;
        padding: 2px;
        background: linear-gradient(350deg, rgba(255, 136, 51, 0.5), rgba(109, 82, 193, 0.1));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .burger-btn {
        font-size: 30px;
        cursor: pointer;
        color: #ff7b00;
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 85px;
        left: 0px;
        width: 100%;
        background:
            radial-gradient(ellipse 100% 50% at top, rgba(138, 92, 229, 0.8) 5%, rgba(255, 255, 255, 0) 50%),
            linear-gradient(180deg, #20004e, #2d006f);
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        opacity: 0;
        transition: all 0.3s ease-in-out;
        border-radius: 0 0 20px 20px;
        text-align: center;
        text-transform: uppercase;
    }

    .mobile-menu.open {
        display: block;
        opacity: 1;
    }

    .mobile-menu li {
        width: 100%;
        padding: 10px 0;
        text-decoration: none;
        color: #333;
        font-size: 18px;
        list-style: none;
        display: block;
    }

    .mobile-menu li a {
        color: #FFF;
        text-decoration: none;
        font-family: 'poppins-semiBold';
        transition: 0.3s;
    }

    .mobile-menu li a:hover {
        color: #ff7b00;
        transition: 0.3s;
    }

    /* Mobile store badges styling */
    .mobile-store-badges {
        padding: 20px 0 !important;
        margin-top: 10px;
    }

    .mobile-store-badges .store-badge-link {
        text-decoration: none;
    }

    #footer {
        padding-top: 50px;
    }

    #footer .nav-links a {
        font-size: 16px;
    }

    #footer .footer-emails {
        margin-top: 20px;
        font-size: 14px !important;
        text-align: center;
    }

    #footer .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    #footer .nav-links span {
        display: none;
    }

    .footer-store-badges {
        gap: 10px;
    }

    .footer-store-badges .store-badge-link img {
        height: 70px;
    }


}