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

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

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

html{
    scroll-behavior:smooth;
}

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

.container{
    width:92%;
    max-width:1320px;
    margin:auto;
}

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

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

.nav{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    min-height:78px;
    padding:0 0 16px 0;
    gap:110px;
}

.logo{
    margin-left:-20px;
}

.logo img{
    height:155px;
    width:auto;
    display:block;
}

nav{
    display:flex;
    align-items:center;
    gap:46px;
}

nav a{
    color:var(--white);
    text-decoration:none;
    font-family:"Poppins",sans-serif;
    font-weight:700;
    font-size:18px;
    letter-spacing:.6px;
    line-height:1;
    position:relative;
    transition:all .3s ease;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-11px;
    width:0;
    height:2px;
    border-radius:20px;
    background:linear-gradient(90deg,#D4AF37,#F3D57A,#D4AF37);
    transition:width .35s ease;
}

nav a:hover{
    color:#F3D57A;
}

nav a:hover::after{
    width:100%;
}

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

.hero{

    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:flex-start;

    background:
    linear-gradient(
        90deg,
        rgba(7,13,24,.98) 0%,
        rgba(7,13,24,.92) 28%,
        rgba(7,13,24,.75) 52%,
        rgba(7,13,24,.35) 100%
    ),
    url("herobanner.png");

    background-size:cover;

    /* Moves the people farther right so the text has clean space */
    background-position:82% center;

    background-repeat:no-repeat;
}
.hero-content{

    width:100%;
    max-width:560px;

    margin-left:40px;

    position:relative;
    z-index:2;
}
.hero-badge{
    display:inline-block;

    padding:12px 22px;

    border-radius:50px;

    margin-bottom:25px;

    color:var(--gold);

    background:rgba(200,164,93,.15);

    border:1px solid rgba(200,164,93,.35);

    font-size:.85rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;
}

.hero h1{
    font-size:4.6rem;

    font-weight:800;

    line-height:1.1;

    margin-bottom:25px;

    color:#fff;

    text-shadow:
    0 10px 30px rgba(0,0,0,.5);
}
.hero h1 .gold{
    color:#d8b46b;
}

.hero p{
    max-width:600px;

    font-size:1.2rem;

    color:#f0f0f0;

    margin-top:20px;

    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-top:35px;
}
.btn-primary{
    background:var(--gold);
    color:#08101d;

    text-decoration:none;

    padding:16px 32px;

    border-radius:10px;

    font-weight:700;

    transition:.3s;
}

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

.btn-secondary{
    border:2px solid var(--gold);

    color:white;

    text-decoration:none;

    padding:16px 32px;

    border-radius:10px;

    font-weight:700;

    transition:.3s;
}

.btn-secondary:hover{
    background:var(--gold);
    color:#08101d;
}

/* =========================
   TRUST BAR
   ========================= */

.stats-bar{
    background:#10192c;
    padding:60px 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:25px;
}

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

.stat-item h3{
    color:var(--gold);
    font-size:1.3rem;
    margin-bottom:10px;
}

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

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

.section{
    padding:140px 0;
}

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

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

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

/* =========================
   GRID
   ========================= */

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

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

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

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

    border-radius:22px;

    padding:40px;

    transition:.3s;

    backdrop-filter:blur(12px);
}

.card:hover{
    transform:translateY(-10px);

    border-color:var(--gold);

    box-shadow:
    0 20px 45px rgba(0,0,0,.25);
}

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

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

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

.pillars{
    padding:140px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

footer{
    text-align:center;

    padding:90px 20px;

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

    background:#08101d;
}

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

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

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

@media(max-width:768px){

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

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .logo img{
        height:135px;
    }

   .hero{
    min-height:90vh;

    display:flex;
    align-items:center;
    justify-content:flex-start;

    padding-left:5%;
    }

    .hero-content{
        text-align:center;
        max-width:100%;
        padding-left:0;
    }

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

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

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

    .section{
        padding:90px 0;
    }

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