/* ---------- RESET ---------- */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#ffffff;

    color:#111111;

}

/* ---------- HEADER ---------- */

header{

    width:100%;

    padding:35px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    position:fixed;

    top:0;

    left:0;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(14px);

    z-index:1000;

}

.logo{

    font-size:14px;

    letter-spacing:4px;

    font-weight:700;

}

nav{

    display:flex;

    gap:45px;

}

nav a{

    text-decoration:none;

    color:#111;

    font-size:15px;

    transition:.3s;

}

nav a:hover{

    opacity:.5;

}

/* ---------- HERO ---------- */

.hero{

    min-height:100vh;

    padding:140px 8% 80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

}

.hero-text{

    flex:1;

}

.small-title{

    font-size:13px;

    letter-spacing:3px;

    color:#888;

    margin-bottom:25px;

}

.hero h1{

    font-size:64px;

    line-height:1.08;

    max-width:720px;

    font-weight:600;

}

.description{

    margin-top:35px;

    font-size:20px;

    color:#666;

    line-height:1.8;

}

.buttons{

    margin-top:55px;

    display:flex;

    gap:20px;

}

.btn-dark{

    background:#111;

    color:#fff;

    padding:18px 34px;

    text-decoration:none;

    border-radius:100px;

    transition:.3s;

}

.btn-dark:hover{

    transform:translateY(-3px);

}

.btn-light{

    border:1px solid #ddd;

    color:#111;

    padding:18px 34px;

    border-radius:100px;

    text-decoration:none;

    transition:.3s;

}

.btn-light:hover{

    background:#f5f5f5;

}

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:100%;

    max-width:500px;

    border-radius:24px;

    object-fit:cover;

}/* ---------- PROJECTS ---------- */

.projects{

    padding:120px 8%;

}

.section-title{

    margin-bottom:90px;

}

.section-title p{

    color:#999;

    letter-spacing:3px;

    font-size:13px;

    margin-bottom:12px;

}

.section-title h2{

    font-size:52px;

    font-weight:600;

}

.project-card{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

    margin-bottom:140px;

}

.project-card.reverse{

    flex-direction:row-reverse;

}

.project-info{

    flex:1;

}

.project-info span{

    color:#777;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:13px;

}

.project-info h3{

    font-size:52px;

    margin:20px 0;

}

.project-info p{

    color:#666;

    line-height:2;

    margin-bottom:35px;

}

.project-info a{

    text-decoration:none;

    color:#111;

    font-weight:600;

}

.project-image{

    flex:1;

}

.project-image img{

    width:100%;

    border-radius:28px;

    transition:.5s;

}

.project-image img:hover{

    transform:scale(1.02);

}
