:root{

    --gold:#D4AF37;
    --dark:#0D1B16;
    --green:#1E4D3A;
    --cream:#FFF4E0;
    --white:#FFFFFF;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:var(--dark);

    color:white;

    overflow-x:hidden;
}

/* NAVBAR */

.navbar{

    position:fixed;

    top:0;

    width:100%;

    z-index:1000;

    padding:13px 25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    backdrop-filter:blur(15px);

    background:rgba(0,0,0,.15);
}

.logo{

    color:var(--gold);

    font-size:1.4rem;

    font-weight:700;
}

.nav-links{

    display:none;
}
.nav-links.active{

    display:flex;

    flex-direction:column;

    position:absolute;

    top:80px;

    left:0;

    width:100%;

    background:rgba(13,27,22,.98);

    padding:20px;

    gap:20px;

    text-align:center;

    backdrop-filter:blur(20px);
}
.nav-links a{

    color:white;

    text-decoration:none;

    font-size:1rem;
}
.nav-links .login-btn{

    width:200px;

    margin:auto;

    background:var(--gold);

    color:black;

    border:none;

    padding:12px;

    border-radius:50px;
}

.menu-toggle{
    display:block;
    font-size:1.8rem;
    color:white;
    cursor:pointer;
    z-index:9999;
}

/* HERO */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:20px;
}

.hero-video{

    position:absolute;

    width:100%;

    height:100%;

    object-fit:cover;

    top:0;
    left:0;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(0,0,0,.2),
    rgba(0,0,0,.2)
    );
}

.hero-content{

    position:relative;

    z-index:5;

    max-width:900px;
}

.hero-tag{

    display:inline-block;

    margin-bottom:20px;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(212,175,55,.15);

    border:1px solid rgba(212,175,55,.35);

    color:var(--gold);
}

.hero h1{

    font-family:'Playfair Display',serif;

    font-size:3rem;

    line-height:1.1;

    margin-bottom:20px;
}

.hero h1 span{

    color:var(--gold);
}

.hero p{

    color:#ddd;

    line-height:1.8;

    margin-bottom:30px;
}

.hero-buttons{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.primary-btn{

    border:none;

    background:var(--gold);

    color:black;

    padding:15px 25px;

    border-radius:50px;

    font-weight:600;
}

.secondary-btn{

    background:transparent;

    color:white;

    border:1px solid var(--gold);

    padding:15px 25px;

    border-radius:50px;
}

/* TABLET */

@media(min-width:768px){

    .hero h1{

        font-size:4.5rem;
    }

    .hero-buttons{

        flex-direction:row;

        justify-content:center;
    }
}

/* DESKTOP */

@media(min-width:1024px){

    .menu-toggle{

        display:none;
    }

    .nav-links{

        display:flex;

        gap:25px;

        align-items:center;
    }

    .nav-links a{

        text-decoration:none;

        color:white;
    }

    .login-btn{

        border:none;

        background:var(--gold);

        padding:10px 20px;

        border-radius:50px;
    }

    .hero h1{

        font-size:6rem;
    }
}


/* ABOUT */

.about{

    padding:80px 20px;

    background:#111A16;
}

.section-header{

    text-align:center;

    margin-bottom:50px;
}

.section-header span{

    color:var(--gold);

    letter-spacing:3px;
}

.section-header h2{

    font-size:2rem;

    margin-top:10px;
}

.about-container{

    display:grid;

    grid-template-columns:1fr;

    gap:50px;

    max-width:1200px;

    margin:auto;
}

.about-image img{

    width:100%;

    border-radius:20px;
}

.about-content{

    display:flex;

    flex-direction:column;

    justify-content:center;
}

.about-content h3{

    font-size:2rem;

    margin-bottom:20px;

    color:var(--gold);
}

.about-content p{

    line-height:1.9;

    color:#ddd;

    margin-bottom:25px;
}

.about-btn{

    width:200px;

    border:none;

    background:var(--gold);

    color:black;

    padding:14px;

    border-radius:50px;

    font-weight:600;
}

/* STATS */

.stats{

    padding:60px 20px;

    background:#0D1B16;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;
}

.stat-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    text-align:center;

    padding:30px 15px;

    backdrop-filter:blur(10px);
}

.stat-card h3{

    color:var(--gold);

    font-size:2rem;
}

.stat-card p{

    margin-top:10px;

    color:#ccc;
}



@media(min-width:768px){

    .about-container{

        grid-template-columns:1fr 1fr;
    }

    .stats{

        grid-template-columns:repeat(4,1fr);
    }

}

/* Tablet */

@media(min-width:768px){

    .gallery-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

}

/* Laptop/Desktop */

@media(min-width:1024px){

    .gallery-grid{

        grid-template-columns:
        repeat(3,1fr);

        gap:25px;
    }

}

/* GALLERY */

.gallery{

    padding:90px 20px;

    background:#111A16;
}

.gallery-grid{

    max-width:1400px;

    margin:auto;

    display:grid;

    gap:20px;

    grid-template-columns:1fr;
}

.gallery-item{

    overflow:hidden;

    border-radius:20px;

    position:relative;

    cursor:pointer;
}

.gallery-item img{

    width:100%;

    height:300px;

    object-fit:cover;

    transition:0.5s ease;
}

.gallery-item:hover img{

    transform:scale(1.08);
}
.gallery-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    transparent,
    rgba(0,0,0,.25)
    );

    z-index:1;
}

.large{

    min-height:350px;
}

.gallery-item:not(.large){

    min-height:250px;
}

.gallery-item img{

    height:100%;
}






.gallery-grid-two{

    margin-top:25px;

    display:grid;

    grid-template-columns:1fr;

    gap:20px;
}

.gallery-grid-two .gallery-item{

    overflow:hidden;

    border-radius:25px;
}

.gallery-grid-two img{

    width:100%;

    height:300px;

    object-fit:cover;

    transition:.5s;
}

.gallery-grid-two img:hover{

    transform:scale(1.08);
}

/* Tablet & Laptop */

@media(min-width:768px){

    .gallery-grid-two{

        grid-template-columns:repeat(2,1fr);
    }

}





/* REWARDS */

.rewards-section{

    padding:100px 20px;

    background:#111A16;
}

.rewards-grid{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr;

    gap:25px;
}

.reward-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:35px 25px;

    text-align:center;

    transition:.4s;
}

.reward-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);
}

.reward-icon{

    font-size:3rem;

    margin-bottom:20px;
}

.reward-card h3{

    color:var(--gold);

    margin-bottom:15px;
}

.reward-card p{

    color:#ccc;

    line-height:1.8;
}

/* FLOW */

.reward-flow{

    max-width:1200px;

    margin:70px auto 0;

    display:flex;

    flex-direction:column;

    gap:20px;

    align-items:center;
}

.flow-box{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    padding:18px 25px;

    border-radius:20px;

    min-width:220px;

    text-align:center;
}

.flow-arrow{

    color:var(--gold);

    font-size:2rem;
}

/* TABLET */

@media(min-width:768px){

    .rewards-grid{

        grid-template-columns:repeat(3,1fr);
    }

    .reward-flow{

        flex-direction:row;

        justify-content:center;

        flex-wrap:wrap;
    }
}

.rewards-wallet-btn{

    text-align:center;

    margin-top:50px;
}

.wallet-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 35px;

    text-decoration:none;

    border-radius:60px;

    font-size:16px;

    font-weight:600;

    color:white;

    background:
    linear-gradient(
        135deg,
        #1f2937,
        #111827
    );

    border:1px solid
    rgba(255,255,255,.12);

    box-shadow:
    0 10px 30px rgba(0,0,0,.25);

    transition:.3s;
}

.wallet-link:hover{

    transform:
    translateY(-3px);

    box-shadow:
    0 15px 40px rgba(0,0,0,.35);
}


.logo{

display:flex;

align-items:center;

font-size:1.8rem;

font-weight:700;

letter-spacing:.5px;

color:#e21d1d;

font-family:'Poppins',sans-serif;

}

.logo span{

color:#D4AF37;

font-weight:600;

}

@media(max-width:768px){

.logo{

font-size:1.45rem;

}

}


.hero-brand{

display:flex;

justify-content:center;

margin-bottom:22px;

}

.hero-brand img{

width:220px;

max-width:75%;

filter:drop-shadow(0 8px 20px rgba(0,0,0,.45));

animation:logoFloat 4s ease-in-out infinite;

}

@keyframes logoFloat{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

}

@media(max-width:768px){

.hero-brand img{

width:170px;

}

}



