/* =========================
   OSHURN FINANCIAL
   ========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --navy:#0b1220;
    --navy-light:#131d31;
    --gold:#c8a45d;
    --white:#ffffff;
    --gray:#c7c7c7;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:var(--navy);
    color:var(--white);
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

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

header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(11,18,32,.95);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo img{
    height:65px;
    width:auto;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
    font-weight:500;
}

nav a:hover{
    color:var(--gold);
}

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

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    background:
    linear-gradient(
        rgba(11,18,32,.75),
        rgba(11,18,32,.90)
    ),
    url('herobanner.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:25px;
    color:var(--gold);
    background:rgba(200,164,93,.12);
    border:1px solid rgba(200,164,93,.25);
}

.hero h1{
    font-size:5rem;
    font-weight:800;
    line-height:1.05;
    margin-bottom:25px;
    text-shadow:0 5px 20px rgba(0,0,0,.5);
}

.hero p{
    max-width:800px;
    margin:auto;
    font-size:1.25rem;
    color:#e5e5e5;
}

.hero-buttons{
    margin-top:40px;
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:15px 30px;
    border-radius:8px;
    text-decoration:none;
    margin:10px;
    font-weight:bold;
    transition:.3s;
}

.btn-primary{
    background:var(--gold);
    color:black;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    border:1px solid var(--gold);
    color:var(--gold);
}

.btn-secondary:hover{
    background:var(--gold);
    color:black;
}

/* =========================
   STATS BAR
   ========================= */

.stats-bar{
    background:#10192c;
    padding:40px 0;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-item{
    text-align:center;
}

.stat-item h3{
    color:var(--gold);
    margin-bottom:8px;
}

.stat-item p{
    color:var(--gray);
}

/* =========================
   SECTIONS
   ========================= */

.section{
    padding:100px 0;
}

.section h2{
    text-align:center;
    margin-bottom:40px;
    font-size:2.5rem;
}

.dark{
    background:var(--navy-light);
}

.center{
    text-align:center;
    max-width:850px;
    margin:auto;
    color:var(--gray);
}

/* =========================
   GRIDS
   ========================= */

.grid,
.pillar-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

/* =========================
   CARDS
   ========================= */

.card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:30px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.card h3{
    color:var(--gold);
    margin-bottom:12px;
}

.card p{
    color:var(--gray);
}

/* =========================
   PILLARS
   ========================= */

.pillars{
    padding:100px 0;
}

.pillars h2{
    text-align:center;
    margin-bottom:40px;
}

/* =========================
   ABOUT PREVIEW
   ========================= */

.about-preview{
    padding:100px 0;
}

.about-preview h2{
    text-align:center;
    margin-bottom:25px;
    font-size:2.5rem;
}

/* =========================
   NEWSLETTER
   ========================= */

.newsletter{
    padding:100px 0;
    text-align:center;

    background:
    linear-gradient(
        135deg,
        #131d31,
        #0b1220
    );
}

.newsletter h2{
    font-size:2.5rem;
    margin-bottom:15px;
}

.newsletter p{
    color:var(--gray);
    margin-bottom:30px;
}

.newsletter form{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.newsletter input{
    width:340px;
    padding:15px;
    border:none;
    border-radius:8px;
}

.newsletter button{
    background:var(--gold);
    color:black;
    border:none;
    border-radius:8px;
    padding:15px 25px;
    font-weight:bold;
    cursor:pointer;
}

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

footer{
    text-align:center;
    padding:60px 20px;
    border-top:1px solid rgba(255,255,255,.08);
}

footer h3{
    color:var(--gold);
    margin-bottom:12px;
}

footer p{
    color:var(--gray);
}

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

@media(max-width:768px){

    .nav{
        flex-direction:column;
        gap:15px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:2.8rem;
    }

    .hero p{
        font-size:1rem;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .section h2{
        font-size:2rem;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:320px;
    }

    .logo img{
        height:50px;
    }
}
