/* ==========================
RESET
========================== */

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

:root{

    --primary:#7A3DB8;
    --primary-light:#B98CE6;

    --dark:#131118;
    --dark2:#1C1824;
    --surface:#241D31;

    --white:#F8F6FC;
    --text:#D6D1E0;
}

/* ==========================
BASE
========================== */

html{
    scroll-behavior:smooth;
}

body{

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

    background:var(--dark);

    color:var(--white);

    line-height:1.7;
}

.container{

    width:90%;
    max-width:1280px;
    margin:auto;
}

img{
    width:100%;
    display:block;
}

h1,h2,h3{

    font-family:'Space Grotesk',sans-serif;
    font-weight:600;
}

a{
    text-decoration:none;
}

/* ==========================
HEADER
========================== */

header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:1000;

    background:rgba(19,17,24,.85);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,.05);
}

.nav{

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:82px;
}

/* SMALLER LOGO */

.logo img{

    width:165px;
    height:auto;
}

nav ul{

    list-style:none;

    display:flex;

    gap:32px;
}

nav a{

    color:var(--white);

    font-size:13px;

    letter-spacing:1px;

    text-transform:uppercase;

    transition:.3s;
}

nav a:hover{

    color:var(--primary-light);
}

.socials{

    display:flex;
    gap:18px;
}

.socials a{

    color:var(--text);
    font-size:14px;
}

/* ==========================
HERO
========================== */

.hero{

    min-height:100vh;

    background:
    linear-gradient(
        rgba(19,17,24,.70),
        rgba(19,17,24,.75)
    ),
    url('../images/hero/hero.png');

    background-size:cover;
    background-position:center;

    display:flex;

    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 20px 60px;
}

.hero-content{

    max-width:850px;
}

.hero-tag{

    display:inline-block;

    margin-bottom:25px;

    color:var(--primary-light);

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;
}

.hero h1{

    font-size:6rem;

    line-height:.95;

    margin-bottom:25px;
}

.hero p{

    max-width:700px;

    margin:auto;

    color:var(--text);

    font-size:1.2rem;

    margin-bottom:40px;
}

.hero-buttons{

    display:flex;
    justify-content:center;
    gap:18px;
}

.btn-primary{

    background:var(--primary);

    color:white;

    padding:15px 34px;

    border-radius:999px;

    transition:.3s;
}

.btn-primary:hover{

    transform:translateY(-2px);
}

.btn-secondary{

    border:1px solid rgba(255,255,255,.25);

    color:white;

    padding:15px 34px;

    border-radius:999px;
}

/* ==========================
SECTIONS
========================== */

section{

    padding:120px 0;
}

.section-number{

    font-size:6rem;

    opacity:.05;

    display:block;

    margin-bottom:10px;

    font-weight:700;
}

h2{

    font-size:3rem;

    margin-bottom:50px;
}

/* ==========================
PROJECTS
========================== */

.project-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.project-card{

    background:var(--surface);

    border-radius:24px;

    overflow:hidden;

    transition:.3s;
}

.project-card:hover{

    transform:translateY(-6px);
}

.project-card img{

    height:340px;

    object-fit:cover;
}

.project-info{

    padding:24px;
}

.project-info span{

    color:var(--primary-light);

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:1px;
}

.project-info h3{

    margin-top:8px;

    font-size:1.6rem;
}

/* ==========================
SERVICES
========================== */

.service-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;
}

.service-card{

    background:var(--surface);

    padding:35px;

    border-radius:20px;

    text-align:center;

    color:var(--white);
}

/* ==========================
PHILOSOPHY
========================== */

.philosophy{

    text-align:center;
}

.philosophy-text{

    max-width:850px;

    margin:auto;

    color:var(--text);

    font-size:1.15rem;
}

/* ==========================
ABOUT
========================== */

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.about img{

    border-radius:24px;
}

.about p{

    color:var(--text);

    font-size:1.1rem;
}

/* ==========================
CTA
========================== */

.cta{

    text-align:center;
}

.cta h2{

    max-width:850px;

    margin:auto;

    margin-bottom:40px;
}

/* ==========================
FOOTER
========================== */

footer{

    padding:80px 0;

    text-align:center;

    background:#0D0C11;
}

.footer-logo{

    width:180px;

    margin:0 auto 20px;
}

footer p{

    color:#8C8796;
}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:992px){

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

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

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

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

@media(max-width:768px){

    .nav{
        flex-direction:column;
        height:auto;
        padding:15px 0;
        gap:15px;
    }

    .logo img{
        width:130px;
    }

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

    .hero-buttons{
        flex-direction:column;
    }

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

    .socials{
        display:none;
    }

    h2{
        font-size:2rem;
    }
}
/* ==========================
COMING SOON PAGES
========================== */

.coming-soon{

    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:120px 20px;

    background:
    linear-gradient(
        rgba(19,17,24,.90),
        rgba(19,17,24,.90)
    );
}

.coming-soon .container{

    max-width:900px;
}

.coming-soon h1{

    font-size:5rem;

    line-height:1;

    margin-bottom:25px;
}

.coming-soon p{

    max-width:700px;

    margin:0 auto 40px;

    color:var(--text);

    font-size:1.15rem;
}

@media(max-width:768px){

    .coming-soon h1{

        font-size:2.8rem;
    }
}