/*=====================================
GOOGLE FONTS
=====================================*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/*=====================================
CSS VARIABLES
=====================================*/

:root{

    --primary:#2B003C;
    --secondary:#4A0A6D;
    --dark:#180022;
    --gold:#FDBA2D;
    --white:#FFFFFF;
    --light:#D8D8D8;

    --container:1200px;

    --shadow:0 20px 40px rgba(0,0,0,.25);

    --radius:18px;

}

/*=====================================
RESET
=====================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    color:#fff;

    background:
    linear-gradient(
        180deg,

        #120018 0%,

        #1E002B 15%,

        #2E0043 35%,

        #4B0F6E 55%,

        #320047 75%,

        #180022 100%

    );

    background-attachment:fixed;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

/*=====================================
CONTAINER
=====================================*/

.container{

    width:90%;
    max-width:1200px;
    margin:0 auto;

}

/*=====================================
HEADINGS
=====================================*/

h1,h2,h3,h4{

    font-family:'Montserrat',sans-serif;

}

p{

    color:var(--light);

    line-height:1.8;

}

/*=====================================
SECTION
=====================================*/

section{

    padding:120px 0;
    position:relative;

}

section::after{

    content:"";

    position:absolute;

    bottom:0;

    left:50%;

    transform:translateX(-50%);

    width:120px;

    height:2px;

    background:linear-gradient(
        to right,
        transparent,
        #FDBA2D,
        transparent
    );

    opacity:.25;

}

/*=====================================
SECTION TITLE
=====================================*/

.section-title{

    max-width:750px;

    margin:0 auto 70px;

    text-align:center;

}

.section-title span{

    color:var(--gold);

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.section-title h2{

    font-size:3rem;

    margin:20px 0;

}

.section-title p{

    font-size:18px;

}

/*=====================================
HEADER
=====================================*/

.header{

    position:sticky;

    top:0;

    z-index:1000;

    background:rgba(24,0,34,.92);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

/*=====================================
LOGO
=====================================*/

.logo img{

    width:90px;

}

/*=====================================
NAVIGATION
=====================================*/

.nav-links{

    position:fixed;

    top:0;
    right:-100%;

    width:280px;
    height:100vh;

    background:#22002d;

    padding-top:100px;

    display:flex;
    flex-direction:column;
    align-items:center;

    gap:30px;

    transition:.4s ease;

}

.nav-links a{

    color:white;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover,

.nav-links a.active{

    color:var(--gold);

}

.nav-links.active{

    right:0;

}

/*=====================================
BUTTONS
=====================================*/

.primary-btn,

.secondary-btn,

.join-btn{

    display:inline-block;

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.primary-btn{

    background:var(--gold);

    color:#1a1a1a;

}

.primary-btn:hover{

    transform:translateY(-4px);

}

.secondary-btn{

    border:2px solid var(--gold);

    color:white;

}

.secondary-btn:hover{

    background:var(--gold);

    color:#111;

}

.join-btn{

    background:var(--gold);

    color:#111;

}

.join-btn:hover{

    transform:translateY(-4px);

}

/*=====================================
MOBILE MENU BUTTON
=====================================*/

.menu-btn{

    display:none;

    font-size:30px;

    cursor:pointer;

    color:white;

}

/*=====================================
SLIDE MENU
=====================================*/

.mobile-menu{

    position:fixed;

    top:85px;

    right:-280px;

    width:260px;

    height:100vh;

    background:var(--primary);

    padding:40px 30px;

    display:flex;

    flex-direction:column;

    gap:25px;

    transition:.4s;

    z-index:999;

    box-shadow:-10px 0 30px rgba(0,0,0,.35);

}

.mobile-menu.active{

    right:0;

}

.mobile-menu a{

    color:white;

    font-size:18px;

    font-weight:600;

}

.mobile-menu a:hover{

    color:var(--gold);

}

/*=====================================
FOOTER
=====================================*/

.footer{

    background:#14001d;

    margin-top:120px;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1.5fr 1fr;

    gap:50px;

}

.footer-logo{

    width:90px;

    margin-bottom:20px;

}

.footer h3{

    color:var(--gold);

    margin-bottom:20px;

}

.footer p{

    color:#cfcfcf;

    margin-bottom:10px;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    transition:.3s;

}

.footer-links a:hover{

    color:var(--gold);

}

.footer hr{

    border:none;

    height:1px;

    background:rgba(255,255,255,.08);

    margin:50px 0 30px;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:#999;

}

/*=====================================
SOCIAL ICONS
=====================================*/

.socials{

    display:flex;

    gap:15px;

}

.socials a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.08);

    color:var(--gold);

    transition:.35s;

}

.socials a:hover{

    background:var(--gold);

    color:#111;

    transform:translateY(-5px);

}

/*==============================
 MOBILE NAVIGATION
==============================*/

.menu-toggle{
    display:none;
    color:#fff;
    font-size:26px;
    cursor:pointer;
    z-index:1002;
}

.mobile-join{
    display:none;
}

/* Phones */

@media(max-width:768px){

.menu-toggle{
    display:block;
}

.join-btn{
    display:none;
}

.nav-links{

    position:fixed;

    top:0;
    right:-100%;

    width:270px;
    height:100vh;

    background:#2d003d;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:30px;

    transition:.4s;

    z-index:1000;

    box-shadow:-10px 0 30px rgba(0,0,0,.4);

}

.nav-links.active{

    right:0;

}

.nav-links li{

    list-style:none;

}

.nav-links a{

    color:white;

    font-size:18px;

    font-weight:600;

    text-decoration:none;

}

.mobile-join{

    display:block;

}

.mobile-btn{

    background:#FDBA2D;

    color:#000;

    padding:12px 35px;

    border-radius:50px;

    font-weight:700;

}

}