
/*=========================================
HOME PAGE HERO
=========================================*/

.hero{
    min-height:calc(100vh - 100px);
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
    padding:60px 0 80px;
}

/*=========================================
LEFT CONTENT
=========================================*/

.hero-content span{
    display:inline-block;
    color:#FDBA2D;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:15px;
    text-transform:uppercase;
}

.hero-content h2{
    font-size:3rem;
    line-height:1.2;
    font-weight:700;
    margin-bottom:10px;
}

.hero-content h1{
    font-size:6rem;
    line-height:.95;
    font-weight:900;
    margin-bottom:20px;
    color:#ffffff;
}

.hero-content .gold{
    color:#FDBA2D;
}

.hero-content p{
    font-size:1.35rem;
    color:#dddddd;
    max-width:500px;
    line-height:1.8;
    margin-bottom:40px;
}

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

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

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

.socials{
    display:flex;
    gap:15px;
}

.socials a{
    width:48px;
    height:48px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#FDBA2D;
    font-size:18px;
    transition:.35s;
}

.socials a:hover{
    background:#FDBA2D;
    color:#2B003C;
    transform:translateY(-4px);
}

/*=========================================
RIGHT SIDE
=========================================*/

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image>img{
    width:100%;
    max-width:520px;
    border-radius:25px;
    box-shadow:0 30px 70px rgba(0,0,0,.45);
}

/*=========================================
FLOATING CIRCLE IMAGE
=========================================*/

.circle{
    position:absolute;
    left:-70px;
    bottom:35px;

    width:180px;
    height:180px;

    border-radius:50%;
    overflow:hidden;

    border:7px solid #FDBA2D;

    background:#fff;

    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.circle img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/*=========================================
ANIMATIONS
=========================================*/

.hero-content{
    animation:slideLeft .9s ease;
}

.hero-image{
    animation:slideRight .9s ease;
}

@keyframes slideLeft{

    from{
        opacity:0;
        transform:translateX(-60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

@keyframes slideRight{

    from{
        opacity:0;
        transform:translateX(60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

/*==========================
MEMBERSHIP HERO
===========================*/

.membership-hero{

    padding:150px 0 100px;

    text-align:center;

}

.membership-hero span{

    color:var(--gold);

    font-weight:700;

    letter-spacing:3px;

}

.membership-hero h1{

    font-size:3.5rem;

    margin:20px 0;

}

.membership-hero p{

    max-width:700px;

    margin:auto;

    font-size:18px;

}

/*==========================
PLANS
===========================*/

.membership-plans{

    padding:100px 0;

}

.plans-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.plan-card{

    position:relative;

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

    border:2px solid transparent;

    border-radius:20px;

    padding:40px;

    cursor:pointer;

    transition:.35s;

    text-align:center;

}

.plan-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

}

.plan-card input{

    display:none;

}

.plan-card input:checked + label{

    color:white;

}

.plan-card:has(input:checked){

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

    box-shadow:0 0 25px rgba(253,186,45,.25);

}

.badge{

    position:absolute;

    top:15px;

    right:15px;

    background:var(--gold);

    color:#111;

    padding:8px 15px;

    border-radius:20px;

    font-size:13px;

    font-weight:700;

}

/*==================================
MEMBERSHIP FORM
==================================*/

.membership-form-section{

    padding:120px 0;

}

.membership-form{

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

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

    border-radius:25px;

    padding:50px;

}

.form-group{

    margin-bottom:50px;

}

.form-group h3{

    color:var(--gold);

    margin-bottom:25px;

}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.input-box{

    display:flex;

    flex-direction:column;

}

.input-box label{

    margin-bottom:10px;

    font-weight:600;

}

.input-box input,
.input-box select,
.input-box textarea{

    padding:15px;

    border:none;

    border-radius:10px;

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

    color:white;

    font-size:16px;

    outline:none;

}

.input-box textarea{

    resize:vertical;

}

.terms{

    margin:40px 0;

}

.submit-area{

    text-align:center;

}

.success-message{

    background:#1e7e34;

    color:#fff;

    padding:18px;

    border-radius:10px;

    margin-bottom:30px;

}

.error-message{

    background:#dc3545;

    color:#fff;

    padding:18px;

    border-radius:10px;

    margin-bottom:30px;

}

.error-message p{

    margin:5px 0;

    color:#fff;

}

.whatsapp{

    position:fixed;

    bottom:30px;

    right:30px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    box-shadow:0 10px 25px rgba(0,0,0,.3);

    z-index:999;

    transition:.3s;

}

.whatsapp:hover{

    transform:scale(1.1);

}

.navbar{
    padding:20px 0;
}

.logo img{
    width:55px;
}

/* Hide desktop menu */

.nav-links{
    
        position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;

    background:#22002d;

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

    gap:30px;

    transition:.4s;
    z-index:999;
}

.nav-links.active{
    
    right:0;
}

.menu-toggle{
    display:block;
    color:#fff;
    font-size:24px;
    cursor:pointer;
}

.join-btn{
    display:none;
}

.overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(6px);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:998;

}

.overlay.active{

    opacity:1;

    visibility:visible;

}

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

.mobile-menu{

    position:fixed;

    top:0;

    right:-320px;

    width:300px;

    height:100vh;

    background:linear-gradient(
        180deg,
        #2B003C,
        #17001F
    );

    padding:30px;

    display:flex;

    flex-direction:column;

    transition:.35s ease;

    z-index:999;

    box-shadow:-15px 0 40px rgba(0,0,0,.45);

}

.mobile-menu.active{

    right:0;

}

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

.menu-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:15px;

}

.menu-header img{

    width:70px;

}

.close-menu{

    background:none;

    border:none;

    color:white;

    font-size:28px;

    cursor:pointer;

}

.menu-tagline{

    color:#bbbbbb;

    font-size:14px;

    margin-bottom:35px;

    line-height:1.6;

}

/*==============================
MENU ITEMS
==============================*/

.mobile-menu ul{

    list-style:none;

}

.mobile-menu li{

    margin-bottom:12px;

}

.mobile-menu a{

    display:flex;

    align-items:center;

    gap:16px;

    padding:15px 18px;

    border-radius:14px;

    color:white;

    text-decoration:none;

    transition:.3s;

    font-weight:600;

}

.mobile-menu a i{

    color:#FDBA2D;

    width:22px;

    text-align:center;

    font-size:18px;

}

.mobile-menu a:hover{

    background:rgba(253,186,45,.12);

    color:#FDBA2D;

    transform:translateX(6px);

}

/*==============================
JOIN BUTTON
==============================*/

.mobile-btn{

    margin-top:auto;

    display:block;

    text-align:center;

    background:#FDBA2D;

    color:#1a1a1a;

    padding:15px;

    border-radius:50px;

    font-weight:700;

    font-size:18px;

}

.mobile-btn:hover{

    background:#ffd15c;

}