:root{
    --navy:#071B35;
    --gold:#C8A46A;
    --white:#ffffff;
    --grey:#f5f5f5;
    --text:#2a2a2a;
}

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

body{
    font-family:'Montserrat',sans-serif;
    color:var(--text);
    overflow-x:hidden;
}

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

/* HEADER */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(7,27,53,.85);
    backdrop-filter:blur(10px);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img{
    height:60px;
    width:auto;
}

.nav{
    display:flex;
    gap:25px;
}

.nav a{
    color:white;
    text-decoration:none;
    font-weight:600;
}

.btn-gold{
    background:var(--gold);
    color:white;
    padding:12px 22px;
    text-decoration:none;
    border-radius:4px;
}

/* HERO */

.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
}

.hero-slider,
.slide{
    position:absolute;
    inset:0;
}

.slide{
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1s ease;
}

.slide.active{
    opacity:1;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.hero-wrapper{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.hero-content{
    max-width:700px;
    color:white;
}

.hero-content h1{
    font-family:'Playfair Display',serif;
    font-size:70px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.btn-outline{
    border:2px solid white;
    color:white;
    text-decoration:none;
    padding:12px 22px;
}

.hero-form{
    width:380px;
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.hero-form h3{
    margin-bottom:20px;
}

.hero-form input,
.hero-form select{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:1px solid #ddd;
}

.hero-form button{
    width:100%;
    padding:14px;
    background:var(--gold);
    color:white;
    border:none;
    cursor:pointer;
}

/* SECTIONS */

section{
    padding:80px 0;
}

.founder{
    padding-top:20px;
}

h2{
    font-family:'Playfair Display',serif;
    font-size:48px;
    text-align:center;
    margin-bottom:30px;
}

.about p{
    max-width:1000px;
    margin:auto;
    text-align:center;
    line-height:1.8;
}

.founder-grid{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:30px;
    align-items:center;
}

.founder-image img{
    width:100%;
    max-width:300px;
}

.section-tag{
    color:var(--gold);
    font-weight:700;
    text-transform:uppercase;
}

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

.project-card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.project-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.project-card h3{
    padding:20px;
}

.project-card p{
    padding:0 20px 20px;
}

/* DEVELOPERS */

.developers{
    background:#071B35;
    padding:100px 0;
}

.developers h2{
    color:white;
    text-align:center;
}

.developer-subtitle{
    text-align:center;
    color:#d8d8d8;
    margin-bottom:50px;
}

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

.developer-logo-grid img{

    background:white;

    width:100%;

    height:120px;

    object-fit:contain;

    padding:20px;

    border-radius:12px;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.developer-logo-grid img:hover{

    transform:translateY(-8px);

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

}
.contact{
    text-align:center;
}

.about{
    padding:80px 0 60px;
}

.about p{
    max-width:1000px;
    margin:0 auto 40px;
    line-height:1.9;
    font-size:18px;
}

