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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#0a0a0a;
    color:#ffffff;
}

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

/* NAVBAR */

nav{
    position:fixed;
    top:0;
    width:100%;
    background:rgba(10,10,10,.92);
    backdrop-filter:blur(12px);
    border-bottom:1px solid #222;
    z-index:1000;
}

.nav{
    max-width:1200px;
    margin:auto;
    height:70px;
    padding:0 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo{
    width:42px;
    height:42px;
    object-fit:cover;
    border-radius:50%;
    border:2px #d4af37;
    background:#111;
}

.logo-text{
    font-size:24px;
    font-weight:800;
}

.menu{
    font-size:32px;
    cursor:pointer;
}

/* SIDEBAR */

.sidebar{
    position:fixed;
    top:0;
    right:-320px;
    width:300px;
    height:100%;
    background:#111;
    z-index:2000;
    padding:24px;
    transition:.35s;
}

.sidebar.open{
    right:0;
}

.sidebar a{
    display:block;
    padding:18px 0;
    border-bottom:1px solid #222;
}

.close{
    font-size:34px;
    cursor:pointer;
    text-align:right;
    margin-bottom:20px;
}

.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:none;
    z-index:1500;
}

.overlay.show{
    display:block;
}

/* HERO */

.hero{
    height:100vh;
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.75)),
    url('/assets/hero.jpeg') center/cover;
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:1200px;
    margin:auto;
    padding:0 24px;
}

.label{
    color:#d4af37;
    letter-spacing:3px;
    font-size:13px;
    margin: 2%;
}

.hero h1{
    font-size:clamp(48px,10vw,88px);
    line-height:.95;
    max-width:760px;
    margin-top:12px;
}

.hero p{
    font-size:20px;
    color:#dddddd;
    max-width:650px;
    margin-top:20px;
}

/* BUTTONS */

.btns{
    margin-top:30px;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.btn{
    padding:14px 24px;
    border-radius:40px;
    border:1px solid #d4af37;
    transition:.3s;
}

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

.primary{
    background:#d4af37;
    color:#111;
    font-weight:700;
}

/* SECTIONS */

.section{
    max-width:1200px;
    margin:auto;
    padding:90px 24px;
}

.section-text{
    color:#aaa;
    font-size:20px;
    max-width:800px;
}

h2{
    font-size:46px;
    margin:15px 0 25px;
}

.row{
    display:block;
    padding:24px 0;
    border-bottom:1px solid #262626;
    font-size:34px;
    transition:.3s;
}

.row:hover{
    padding-left:10px;
    color:#d4af37;
}

/* FEATURED */

.feature-title{
    margin-bottom:28px;
}

.feature{
    background:#111;
    border:1px solid #222;
    border-radius:24px;
    padding:48px;
}

.feature h2{
    margin-bottom:20px;
}

.feature-tagline{
    font-size:28px;
    line-height:1.4;
    color:#ddd;
}

.feature-desc{
    margin-top:18px;
    color:#aaa;
    font-size:16px;
}

/* FOOTER */

.footer{
    margin-top:120px;
    border-top:1px solid #222;
    padding:60px 24px 30px;
    color:#aaa;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer h3,
.footer h4{
    color:#fff;
    margin-bottom:15px;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    margin-bottom:10px;
    transition:.3s;
}

.footer-links a:hover{
    color:#d4af37;
}

.footer-contact p{
    margin-bottom:10px;
}

.social-icons{
    display:flex;
    gap:12px;
    margin-top:15px;
}

.social-icons a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #333;
    border-radius:50%;
    color:#fff;
    font-size:13px;
    font-weight:600;
    transition:.3s;
}

.social-icons a:hover{
    border-color:#d4af37;
    color:#d4af37;
}

.footer-bottom{
    border-top:1px solid #222;
    margin-top:40px;
    padding-top:20px;
    text-align:center;
}

/* MOBILE */

@media(max-width:768px){

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

    .hero p{
        font-size:18px;
    }

    h2{
        font-size:30px;
    }

    .row{
        font-size:26px;
    }

    .feature-tagline{
        font-size:22px;
    }

    .section{
        padding:70px 20px;
    }

    .logo-text{
        font-size:20px;
    }
}
input,
textarea{
width:100%;
padding:14px;
background:#0f0f0f;
border:1px solid #222;
color:#ffffff;
border-radius:10px;
font-size:16px;
font-family:inherit;
}

input:focus,
textarea:focus{
outline:none;
border-color:#d4af37;
}

textarea{
resize:vertical;
min-height:150px;
}

button{
cursor:pointer;
}
.contact-buttons{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:25px;
}

.contact-buttons .btn{
    width:100%;
    text-align:center;
    display:block;
}