.brand-title{
    font-size:6rem;
    font-weight:800;
    letter-spacing:6px;
    color:var(--orange);
    margin-bottom:10px;
    animation:fadeUp 1s ease forwards;
}
.brand-title{
    text-shadow:0 0 30px rgba(255,122,0,0.4);
}
/* =========================
   MOTTO
========================= */

.motto{
    margin:20px 0 30px;
    text-align:center;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:1rem;
    color:#d0d0d0;
    font-weight:500;
}

.motto span{
    display:block;
    margin-top:10px;
    color:#ff7a00;
    font-size:2rem;
    font-weight:700;
}

.tagline{
    font-size:1.8rem;
    font-weight:500;
    margin-bottom:20px;
    color:white;
    opacity:0.9;
}
/* =========================
   RESET + BASE
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

html{
    scroll-behavior:smooth;
}

:root{
    --orange:#ff7a00;
    --orange-dark:#e66d00;
    --black:#0f0f0f;
    --surface:#181818;
    --surface-2:#1b1b1b;
    --white:#ffffff;
    --grey:#bdbdbd;
}

body{
    background:var(--black);
    color:var(--white);
    opacity:0;
    animation:pageLoad 0.5s ease forwards;
}

/* =========================
   NAVIGATION
========================= */

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    position:sticky;
    top:0;
    background:rgba(15,15,15,.95);
    backdrop-filter:blur(10px);
    z-index:1000;
}

.logo{
    color:var(--orange);
    font-size:1.7rem;
    font-weight:bold;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
}

/* =========================
   BUTTONS
========================= */

.btn{
    background:var(--orange);
    color:white;
    padding:12px 24px;
    border-radius:8px;
    text-decoration:none;
    border:none;
    cursor:pointer;
    display:inline-block;
    transition:all .3s ease;
    font-weight:600;
}

.btn:hover{
    transform:translateY(-3px) scale(1.03);
    background:var(--orange-dark);
}

.btn-outline{
    border:2px solid var(--orange);
    color:white;
    padding:12px 24px;
    border-radius:8px;
    text-decoration:none;
}

/* =========================
   HERO
========================= */

.hero{
    width:100%;
    height:100vh;              /* FULL SCREEN */
    display:flex;
    align-items:center;        /* vertical center */
    justify-content:center;    /* horizontal center */
    text-align:center;
    position:relative;
    overflow:hidden;

    /* optional background if you want it later */
    background:radial-gradient(circle at top right, rgba(255,122,0,0.15), transparent 60%),
               #0f0f0f;
}
.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}
.hero::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:var(--orange);
    filter:blur(200px);
    opacity:0.12;
    top:-200px;
    right:-200px;
}


.hero h1{
    font-size:5rem;
    line-height:1.1;
    animation:fadeUp 1s ease forwards;
}

.hero span{
    color:var(--orange);
}

.hero p{
    color:var(--grey);
    margin:20px 0;
    font-size:1.2rem;
    animation:fadeUp 1.2s ease forwards;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    margin:30px 0;
    flex-wrap:wrap;
}

/* =========================
   SECTIONS
========================= */

section{
    padding:100px 8%;
}

h2{
    text-align:center;
    margin-bottom:50px;
    font-size:2.5rem;
}

/* =========================
   GRID SYSTEM
========================= */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

/* =========================
   CARDS
========================= */

.card{
    background:var(--surface-2);
    padding:25px;
    border-radius:12px;
    transition:all .3s ease;
}

.card:hover{
    transform:translateY(-8px) scale(1.02);
}

.card img{
    width:100%;
    border-radius:10px;
    margin-bottom:15px;
}

.card h3{
    color:var(--orange);
    margin-bottom:10px;
}

/* =========================
   PRICING
========================= */

.price{
    font-size:2rem;
    color:var(--orange);
    margin:15px 0;
    font-weight:bold;
}

.featured{
    border:2px solid var(--orange);
}

/* =========================
   STATS (optional future use)
========================= */

.stats{
    display:flex;
    justify-content:center;
    gap:80px;
    text-align:center;
    flex-wrap:wrap;
}

.stat h3{
    font-size:3rem;
    color:var(--orange);
}

/* =========================
   FORMS
========================= */

form{
    max-width:700px;
    margin:auto;
}

input,
textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    background:var(--surface);
    border:none;
    border-radius:8px;
    color:white;
    outline:none;
}

textarea{
    height:150px;
}
/* =========================
   MEMBERSHIP LIST STYLING
========================= */

#memberships ul{
    margin-top:15px;
    list-style:none;
    padding:0;
}

#memberships ul li{
    color:#bdbdbd;
    margin-bottom:8px;
    font-size:0.95rem;
    position:relative;
    padding-left:18px;
}

#memberships ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--orange);
    font-weight:bold;
}
/* =========================
   FOOTER
========================= */

footer{
    text-align:center;
    padding:40px;
    border-top:1px solid #222;
}

/* =========================
   ANIMATIONS
========================= */

.hidden{
    opacity:0;
    transform:translateY(30px);
    transition:all .6s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes pageLoad{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
   MOBILE NAV
========================= */

.menu-toggle{
    display:none;
    font-size:2rem;
    cursor:pointer;
    color:white;
}

@media(max-width:768px){

    nav ul{
        position:absolute;
        top:70px;
        left:0;
        right:0;
        background:#0f172a;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:20px 0;
        display:none;
    }

    nav ul.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }

    .hero h1{
        font-size:3rem;
    }

    .hero-buttons{
        flex-direction:column;
    }
}
