/* =========================
   MONARCH CODEX V6
   Kingdom Luxury Theme
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:#ffffff;
    line-height:1.8;
}

/* =========================
   NAVIGATION
========================= */

nav{
    position:sticky;
    top:0;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 8%;

    background:rgba(5,5,5,0.95);

    border-bottom:1px solid rgba(212,175,55,0.2);
}

.logo{
    font-size:1.8rem;
    font-weight:800;
    color:#D4AF37;
    letter-spacing:2px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:white;
    transition:0.3s;
    font-weight:500;
}

nav a:hover{
    color:#D4AF37;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:40px;
}

.hero-content{
    max-width:900px;
}

.hero h1{
    font-size:5rem;
    color:#D4AF37;
    margin-bottom:20px;
    font-weight:800;
}

.hero h2{
    font-size:2rem;
    margin-bottom:25px;
    font-weight:600;
}

.hero p{
    font-size:1.15rem;
    color:#cccccc;
    margin-bottom:40px;
}

.hero-btn{
    display:inline-block;

    padding:15px 40px;

    background:#D4AF37;
    color:black;

    text-decoration:none;
    font-weight:700;

    border-radius:8px;

    transition:0.3s;
}

.hero-btn:hover{
    transform:translateY(-4px);
}

/* =========================
   STATS
========================= */

.stats{
    padding:60px 8%;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.stat-box{
    text-align:center;

    padding:35px;

    border:1px solid rgba(212,175,55,0.25);

    border-radius:15px;

    transition:0.3s;
}

.stat-box:hover{
    transform:translateY(-6px);
    border-color:#D4AF37;
}

.stat-box h3{
    font-size:3rem;
    color:#D4AF37;
}

.stat-box p{
    color:#cccccc;
}

/* =========================
   GENERAL SECTIONS
========================= */

.section{
    padding:100px 8%;
}

.section h2{
    text-align:center;
    margin-bottom:50px;
    font-size:2.8rem;
    color:#D4AF37;
}

/* =========================
   FOUNDER
========================= */

.founder-section{
    display:flex;
    align-items:center;
    gap:70px;

    padding:100px 8%;
}

.founder-image{
    flex:1;
}

.founder-image img{
    width:100%;
    max-width:450px;

    border-radius:20px;

    border:2px solid #D4AF37;
}

.founder-content{
    flex:1;
}

.founder-content h2{
    font-size:3rem;
    color:#D4AF37;
    margin-bottom:10px;
}

.founder-content h3{
    margin-bottom:20px;
    color:#cccccc;
}

.founder-badges{
display:flex;
flex-wrap:wrap;
gap:10px;
margin:20px 0 30px;
}

.founder-badges span{
background:rgba(212,175,55,0.12);
border:1px solid rgba(212,175,55,0.35);
color:#D4AF37;
padding:8px 16px;
border-radius:50px;
font-size:0.9rem;
font-weight:600;
}

.founder-content p{
    margin-bottom:15px;
}

/* =========================
   CARDS
========================= */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.card{
    padding:30px;

    border-radius:15px;

    border:1px solid rgba(212,175,55,0.25);

    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:#D4AF37;
}

.card h3{
    color:#D4AF37;
    margin-bottom:15px;
}

/* =========================
   FORM
========================= */

.join-form{
    max-width:800px;
    margin:auto;

    display:flex;
    flex-direction:column;
    gap:18px;
}

.join-form input,
.join-form select,
.join-form textarea{
    padding:15px;

    background:#111111;

    color:white;

    border:1px solid #333;

    border-radius:10px;
}

.join-form textarea{
    min-height:150px;
}

.join-form button{
    background:#D4AF37;
    color:black;

    border:none;

    padding:15px;

    border-radius:10px;

    font-weight:700;

    cursor:pointer;

    transition:0.3s;
}

.join-form button:hover{
    transform:translateY(-3px);
}

/* =========================
   CONTACT
========================= */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.contact-card{
    text-decoration:none;

    color:white;

    text-align:center;

    padding:30px;

    border-radius:15px;

    border:1px solid rgba(212,175,55,0.25);

    transition:0.3s;
}

.contact-card:hover{
    background:#D4AF37;
    color:black;
}

/* =========================
   FOOTER
========================= */

footer{
    text-align:center;

    padding:60px 20px;

    border-top:1px solid rgba(212,175,55,0.2);
}

footer h3{
    color:#D4AF37;
    margin-bottom:15px;
}

footer p{
    color:#cccccc;
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    nav{
        flex-direction:column;
        gap:20px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:3rem;
    }

    .hero h2{
        font-size:1.3rem;
    }

    .founder-section{
        flex-direction:column;
        text-align:center;
    }

    .founder-image img{
        max-width:350px;
    }

}

/* =========================
   LOGO IMAGE
========================= */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:120px;
    width:auto;
    display:block;
    transition:0.3s ease;
}

.logo img:hover{
    transform:scale(1.05);
}

.whatsapp{
color:#25D366;
}

.telegram{
color:#229ED9;
}

.facebook{
color:#1877F2;
}

.email{
color:#D4AF37;
}

.x{
color:#ffffff;
}

.whatsapp:hover{
background:#25D366;
color:white;
}

.telegram:hover{
background:#229ED9;
color:white;
}

.facebook:hover{
background:#1877F2;
color:white;
}

.email:hover{
background:#D4AF37;
color:black;
}

.x:hover{
background:white;
color:black;
}

.member-card{

    background:#0a0a0a;

    border:1px solid rgba(212,175,55,0.4);

    border-radius:20px;

    padding:30px;

    transition:0.4s;

    box-shadow:0 0 15px rgba(212,175,55,0.1);

    min-height:220px;

}

.member-card:hover{

    transform:translateY(-8px);

    box-shadow:0 0 30px rgba(212,175,55,0.4);

}

.member-header{

    color:#d4af37;

    font-size:26px;

    font-weight:700;

    margin-bottom:20px;

}

.member-info p{
    
    .member-info strong{

    color:#d4af37;

    font-weight:600;

}

    color:white;

    margin:12px 0;

    font-size:18px;

}
