@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root{
    --bg:#0d0f14;
    --bg2:#131720;
    --card:#181d27;
    --gold:#c8a96b;
    --gold2:#e2c58f;
    --text:#f5f7fa;
    --muted:#aeb7c6;
    --line:#252b36;
    --white:#ffffff;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.7;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
}

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

/* HEADER */

header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(8,10,14,.72);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.06);
    box-shadow:0 8px 30px rgba(0,0,0,.35);
}

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

.logo img{
    height:64px;
    filter:
    brightness(1.18)
    contrast(1.15)
    drop-shadow(0 0 14px rgba(200,169,107,.18));
    transition:.35s;
}

.logo img:hover{
    transform:scale(1.03);
    filter:
    brightness(1.25)
    contrast(1.2)
    drop-shadow(0 0 20px rgba(200,169,107,.35));
}

.nav-links{
    display:flex;
    gap:30px;
    align-items:center;
}

.nav-links a{
    color:var(--white);
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color:var(--gold);
}

.menu-toggle{
    display:none;
    font-size:30px;
    color:white;
    cursor:pointer;
}

/* HERO */

.hero{
    min-height:88vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1600&auto=format&fit=crop') center/cover;
}

.hero-content{
    max-width:760px;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:24px;
}

.hero p{
    color:var(--muted);
    font-size:18px;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    padding:15px 28px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

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

.btn-primary:hover{
    background:var(--gold2);
}

.btn-outline{
    border:1px solid var(--gold);
    margin-left:12px;
}

.btn-outline:hover{
    background:var(--gold);
    color:#111;
}

/* SECTION */

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-title p{
    color:var(--muted);
}

/* CARDS */

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

.card{
    background:var(--card);
    padding:35px;
    border-radius:14px;
    border:1px solid var(--line);
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
    border-color:var(--gold);
}

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

/* ABOUT */

.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about img{
    border-radius:18px;
}

/* FOOTER */

footer{
    background:#090b10;
    border-top:1px solid var(--line);
    margin-top:80px;
}

.footer-top{
    padding:70px 0;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
}

.footer-logo img{
    height:70px;
    margin-bottom:20px;
}

.footer-links a{
    display:block;
    margin-bottom:14px;
    color:var(--muted);
    transition:.3s;
}

.footer-links a:hover{
    color:var(--gold);
}

.socials{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.socials a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--card);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.socials a:hover{
    background:var(--gold);
    color:#111;
}

.footer-bottom{
    border-top:1px solid var(--line);
    padding:20px 0;
    text-align:center;
    color:var(--muted);
}

.socials a i{
    font-size:18px;
}

.socials a{
    color:var(--gold);
    border:1px solid rgba(200,169,107,0.25);
}

.socials a:hover{
    background:var(--gold);
    color:#111;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(200,169,107,.35);
}

/* PAGE HERO */

.page-hero{
    padding:120px 0 70px;
    background:linear-gradient(135deg,#111722,#0d0f14);
    text-align:center;
}

.page-hero h1{
    font-size:52px;
}

/* CONTACT */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-box{
    background:var(--card);
    padding:35px;
    border-radius:14px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:18px;
    border:none;
    border-radius:8px;
    background:#0f131b;
    color:white;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero h1{
        font-size:48px;
    }

    .about,
    .contact-grid,
    .footer-top{
        grid-template-columns:1fr;
    }

    .nav-links{
        position:absolute;
        top:90px;
        left:0;
        width:100%;
        background:#111722;
        flex-direction:column;
        padding:25px 0;
        display:none;
    }

    .nav-links.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }
}