/* ==========================================
   NAMAMI VENTURES
   Premium Landing Page
========================================== */

:root{
    --bg:#07131f;
    --bg2:#0f2236;
    --gold:#d6b46b;
    --gold-light:#f4ddb0;
    --white:#ffffff;
    --text:#d9e2ef;
    --muted:#98a8b9;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(160deg,var(--bg),var(--bg2));
    color:var(--white);
    overflow-x:hidden;
}

/* Animated background */

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at 20% 30%,rgba(214,180,107,.12),transparent 30%),
        radial-gradient(circle at 80% 10%,rgba(255,255,255,.05),transparent 20%),
        radial-gradient(circle at 70% 80%,rgba(214,180,107,.08),transparent 35%);
    animation:floatBg 18s ease-in-out infinite alternate;
    z-index:-2;
}

@keyframes floatBg{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.15);
    }
}

#particles{
    position:fixed;
    inset:0;
    z-index:-1;
}

/* Header */

header{
    width:100%;
    padding:28px 8%;
    position:fixed;
    top:0;
    left:0;
    backdrop-filter:blur(8px);
    background:rgba(7,19,31,.35);
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
    font-weight:600;
    letter-spacing:1px;
}

.logo-circle{
    width:48px;
    height:48px;
    border:2px solid var(--gold);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:var(--gold);
    font-weight:700;
    font-size:20px;
    box-shadow:0 0 25px rgba(214,180,107,.25);
}

/* Hero */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:120px 30px;
}

.hero-content{
    max-width:900px;
}

.small-heading{
    letter-spacing:6px;
    color:var(--gold);
    margin-bottom:25px;
    font-size:14px;
    text-transform:uppercase;
}

h1{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    line-height:1.1;
    margin-bottom:35px;
}

.subtitle{
    color:var(--text);
    max-width:700px;
    margin:auto;
    line-height:1.9;
    font-size:20px;
}

.button{
    display:inline-block;
    margin-top:55px;
    padding:16px 42px;
    border:2px solid var(--gold);
    border-radius:50px;
    text-decoration:none;
    color:var(--gold);
    transition:.4s;
    font-weight:600;
}

.button:hover{
    background:var(--gold);
    color:#111;
    box-shadow:0 0 35px rgba(214,180,107,.45);
}

/* Sections */

section{
    padding:110px 8%;
}

.container{
    max-width:1100px;
    margin:auto;
}

h2{
    font-family:'Cormorant Garamond',serif;
    font-size:52px;
    margin-bottom:30px;
    text-align:center;
}

.vision p{
    max-width:820px;
    margin:auto;
    text-align:center;
    color:var(--text);
    line-height:2;
    font-size:19px;
}

.quote{
    text-align:center;
}

blockquote{
    font-family:'Cormorant Garamond',serif;
    font-size:40px;
    color:var(--gold-light);
    line-height:1.5;
    max-width:900px;
    margin:auto;
}

/* Footer */

footer{
    text-align:center;
    padding:90px 20px;
    background:#05101a;
}

footer h3{
    font-size:34px;
    margin-bottom:18px;
    font-family:'Cormorant Garamond',serif;
}

footer p{
    color:var(--muted);
    margin:10px 0;
}

.footer-line{
    width:100px;
    height:2px;
    background:var(--gold);
    margin:35px auto;
}

/* Fade animation */

.hero-content,
.vision,
.quote,
footer{
    animation:fadeUp 1.5s ease;
}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* Mobile */

@media(max-width:900px){

h1{

font-size:48px;

}

.subtitle{

font-size:17px;

}

blockquote{

font-size:28px;

}

h2{

font-size:38px;

}

.logo span{

display:none;

}

}
/* ============================
   Floating Particles
============================ */

.particle{

position:absolute;

border-radius:50%;

background:rgba(214,180,107,.65);

box-shadow:0 0 12px rgba(214,180,107,.7);

animation:float infinite linear;

}

@keyframes float{

0%{

transform:translateY(0px);

opacity:0;

}

10%{

opacity:.8;

}

100%{

transform:translateY(-120vh);

opacity:0;

}

}