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

:root{
    --bg:#0a0f0c;
    --section:#101713;
    --green:#5f8f73;
    --green-light:#84b296;
    --grey:#a6afaa;
    --white:#f4f7f5;
    --border:#243029;
}

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

body{
    background:var(--bg);
    color:var(--white);
    font-family:'Arsenal', serif;
    overflow-x:hidden;
}

nav{
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:28px 7%;
    background:rgba(10,15,12,0.58);
    backdrop-filter:blur(16px);
}

.logo{
    font-size:1.7rem;
    color:var(--green-light);
    letter-spacing:1px;
}

nav ul{
    display:flex;
    gap:35px;
    list-style:none;
}

nav a{
    text-decoration:none;
    color:var(--white);
    font-size:0.95rem;
    letter-spacing:1px;
    transition:0.3s;
}

nav a:hover{
    color:var(--green-light);
}

.hero{
    height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    padding:0 7%;
    background:
    linear-gradient(rgba(10,15,12,0.45), rgba(10,15,12,0.8)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=2070&auto=format&fit=crop')
    center/cover no-repeat;
}

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

.hero-sub{
    color:var(--green-light);
    margin-bottom:25px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:0.9rem;
}

.hero h1{
    font-size:7rem;
    line-height:0.9;
    margin-bottom:35px;
    font-weight:700;
}

.hero p{
    max-width:650px;
    color:var(--grey);
    font-size:1.1rem;
    line-height:2;
}

.btn{
    display:inline-block;
    margin-top:40px;
    padding:16px 34px;
    border-radius:50px;
    border:1px solid var(--green-light);
    text-decoration:none;
    color:var(--white);
    transition:0.35s;
}

.btn:hover{
    background:var(--green);
    border-color:var(--green);
    transform:translateY(-3px);
}

section{
    padding:140px 7%;
}

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

.editorial.reverse{
    direction:rtl;
}

.editorial.reverse > *{
    direction:ltr;
}

.editorial-image{
    height:700px;
    border-radius:30px;
    overflow:hidden;
    position:relative;
}

.editorial-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.editorial-text small{
    color:var(--green-light);
    letter-spacing:3px;
    text-transform:uppercase;
}

.editorial-text h2{
    font-size:4rem;
    line-height:1;
    margin:25px 0;
}

.editorial-text p{
    color:var(--grey);
    line-height:2;
    margin-bottom:20px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:70px;
}

.card{
    padding:45px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.05);
    border-radius:30px;
    backdrop-filter:blur(10px);
    transition:0.35s;
}

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

.card h3{
    color:var(--green-light);
    margin-bottom:18px;
    font-size:1.8rem;
}

.price{
    font-size:2.4rem;
    margin-bottom:20px;
}

.center{
    text-align:center;
}

.center h2{
    font-size:4rem;
    margin-bottom:25px;
}

.center p{
    color:var(--grey);
    max-width:750px;
    margin:auto;
    line-height:2;
}

.banner{
    height:65vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:
    linear-gradient(rgba(10,15,12,0.45), rgba(10,15,12,0.8)),
    url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?q=80&w=2070&auto=format&fit=crop')
    center/cover;
}

.banner h1{
    font-size:6rem;
}

form{
    max-width:850px;
    margin:auto;
    margin-top:60px;
}

input, textarea, select{
    width:100%;
    padding:20px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.06);
    background:rgba(255,255,255,0.03);
    margin-bottom:22px;
    color:white;
    font-size:1rem;
    font-family:'Arsenal', serif;
}

textarea{
    resize:none;
}

button{
    padding:18px 36px;
    border:none;
    border-radius:50px;
    background:var(--green);
    color:white;
    cursor:pointer;
    font-family:'Arsenal', serif;
    transition:0.3s;
}

button:hover{
    background:var(--green-light);
}

footer{
    padding:50px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.05);
    color:var(--grey);
}

@media(max-width:950px){

    .hero h1{
        font-size:4rem;
    }

    .editorial{
        grid-template-columns:1fr;
    }

    .editorial-image{
        height:500px;
    }

    .editorial-text h2{
        font-size:3rem;
    }

    .banner h1{
        font-size:3.5rem;
    }

    nav{
        flex-direction:column;
        gap:18px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }
}
