  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f7f5;
    color:#333;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    width:100%;
    display:block;
}

button{
    font-family:inherit;
}

/* HEADER */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(29,21,53,.08);
}

.navbar{
    width:92%;
    max-width:1280px;
    height:82px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    width:105px;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:32px;
    list-style:none;
}

.nav-links a{
    position:relative;
    color:#333;
    font-size:.92rem;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#d4a017;
}

.nav-links a.active{
    color:#d4a017;
}

.nav-links a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-9px;
    width:100%;
    height:2px;
    background:#d4a017;
}

.menu-toggle{
    display:none;
    border:none;
    background:none;
    color:#1d1535;
    font-size:1.7rem;
    cursor:pointer;
}

/* BUTTONS */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:15px 28px;
    border-radius:50px;
    font-size:.92rem;
    font-weight:600;
    transition:.35s ease;
}

.btn-primary{
    background:#d4a017;
    color:#fff;
}

.btn-primary:hover{
    background:#b8860b;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(212,160,23,.25);
}

.btn-outline{
    border:1px solid rgba(255,255,255,.7);
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#1d1535;
}

.btn-dark{
    background:#1d1535;
    color:#fff;
}

.btn-dark:hover{
    background:#d4a017;
    transform:translateY(-3px);
}

/* SHARED TEXT */

.section-label{
    display:inline-block;
    color:#d4a017;
    font-size:.75rem;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

/* FOOTER */

footer{
    background:#111;
    color:#fff;
    padding:70px 0 25px;
}

.footer-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1.5fr 1fr 1.5fr;
    gap:70px;
    padding-bottom:50px;
}

.footer-brand img{
    width:100px;
    margin-bottom:15px;
}

.footer-brand p{
    color:#999;
    font-size:.85rem;
}

.footer-column{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-column h4{
    color:#d4a017;
    margin-bottom:10px;
}

.footer-column a{
    color:#aaa;
    font-size:.85rem;
    transition:.3s;
}

.footer-column a:hover{
    color:#d4a017;
}

.footer-column p{
    color:#aaa;
    font-size:.82rem;
    line-height:1.8;
}

.footer-bottom{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding-top:25px;
    border-top:1px solid #292929;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.footer-bottom p{
    color:#777;
    font-size:.75rem;
}

.footer-bottom a{
    color:#d4a017;
    font-size:1.3rem;
    transition:.3s;
}

.footer-bottom a:hover{
    color:#fff;
}

/* MOBILE */

@media(max-width:768px){

    .navbar{
        width:90%;
        height:75px;
    }

    .logo img{
        width:90px;
    }

    .menu-toggle{
        display:block;
    }

    .nav-links{
        display:none;
        position:absolute;
        top:75px;
        left:0;
        width:100%;
        padding:25px 0;
        background:#fff;
        flex-direction:column;
        gap:22px;
        box-shadow:0 10px 25px rgba(0,0,0,.1);
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links a.active::after{
        display:none;
    }

    .btn{
        padding:14px 24px;
    }

    footer{
        padding:55px 0 25px;
    }

    .footer-container{
        width:88%;
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-bottom{
        width:88%;
        flex-direction:column;
        gap:15px;
        text-align:center;
    }
}