/*
Theme Name: NextOps Premium
Author: OpenAI
Version: 1.0
Text Domain: nextops
*/

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

:root{
  --gold:#C4912A;
  --gold2:#DDA83C;
  --ink:#0F1623;
  --ink2:#1A2236;
  --cream:#F9F8F5;
  --warm:#F3EFE6;
  --white:#FFFFFF;
  --mid:#5A6478;
  --border:#E4DED4;
}

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

body{
    font-family:'Sora',sans-serif;
    background:var(--cream);
    color:var(--ink);
    line-height:1.7;
}

.container{
    width:92%;
    max-width:1280px;
    margin:auto;
}

header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(249,248,245,.96);
    backdrop-filter:blur(12px);
    border-bottom:1px solid var(--border);
}

.navbar{
    height:72px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    font-weight:700;
    color:var(--ink);
}

.logo span{
    color:var(--gold);
}

.menu{
    display:flex;
    gap:28px;
}

.menu a{
    text-decoration:none;
    color:var(--mid);
    font-size:14px;
    font-weight:500;
    transition:.3s;
}

.menu a:hover{
    color:var(--gold);
}

.hero{
    min-height:92vh;
    display:grid;
    grid-template-columns:55% 45%;
    align-items:center;
}

.hero-content{
    padding:80px 0;
}

.hero-tag{
    display:inline-block;
    background:#FBF4E6;
    border:1px solid #F0DDB0;
    color:var(--gold);
    padding:8px 18px;
    border-radius:30px;
    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:26px;
    font-weight:600;
}

.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:92px;
    line-height:0.95;
    margin-bottom:28px;
    font-weight:700;
}

.hero h1 em{
    color:var(--gold);
    font-style:italic;
}

.hero p{
    font-size:18px;
    color:var(--mid);
    max-width:650px;
    margin-bottom:36px;
    font-weight:300;
}

.btn{
    display:inline-block;
    background:var(--ink);
    color:#fff;
    padding:15px 34px;
    border-radius:8px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:var(--gold);
}

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

.section{
    padding:90px 0;
}

.section-title{
    margin-bottom:50px;
}

.eyebrow{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:11px;
    font-weight:600;
    margin-bottom:18px;
}

.section-title h2{
    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    line-height:1.1;
    margin-bottom:16px;
}

.section-title h2 em{
    color:var(--gold);
}

.section-title p{
    font-size:17px;
    color:var(--mid);
    max-width:720px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:34px 28px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.card h3{
    font-size:22px;
    margin-bottom:12px;
    font-family:'Cormorant Garamond',serif;
}

.card p{
    color:var(--mid);
    font-size:14px;
}

footer{
    background:var(--ink2);
    padding:60px 0;
    color:#fff;
    margin-top:60px;
}

footer p{
    color:rgba(255,255,255,.6);
}

@media(max-width:980px){

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

    .hero-image{
        display:none;
    }

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

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

    .menu{
        display:none;
    }

    .section-title h2{
        font-size:42px;
    }
}
