/*============================

    GLOBAL STYLES

=============================*/

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

:root{

    --primary:#111111;
    --secondary:#555555;
    --accent:#C89B3C;
    --light:#F8F8F8;
    --white:#FFFFFF;

    --shadow:0 12px 35px rgba(0,0,0,.08);

    --transition:.35s ease;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--primary);
    line-height:1.8;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(1180px,90%);
    margin:auto;

}

section{

padding:110px 0;

}

h1,h2,h3{

    font-family:"Playfair Display",serif;
    line-height:1.2;

}

.section-tag{

    color:var(--accent);
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:.9rem;
    margin-bottom:15px;

}

/*============================

        HEADER

=============================*/

header{

    position:fixed;
    width:100%;
    top:0;
    left:0;

    background:rgba(255,255,255,.95);
    backdrop-filter:blur(15px);

    z-index:1000;

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

}

nav{

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

    height:85px;

}

.logo{

    font-size:2rem;

    font-weight:700;

    letter-spacing:1px;

}

.logo span{

    color:var(--accent);

}

.nav-links{

    display:flex;
    gap:40px;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--accent);

    transition:.35s;

}

.nav-links a:hover::after{

    width:100%;

}

.nav-links a{

    font-weight:500;
    transition:var(--transition);

}

.nav-links a{

    position:relative;

}

.nav-links a:hover{

    color:var(--accent);

}

.nav-btn,
.btn{

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

   padding:15px 34px;

    border-radius:50px;

    background:var(--accent);

    color:white;

    transition:var(--transition);

    font-weight:500;

}

.nav-btn:hover,
.btn:hover{

    transform:translateY(-3px);

    box-shadow:var(--shadow);

}

.btn-outline{

    display:inline-flex;

    padding:14px 32px;

    border-radius:50px;

    border:2px solid var(--primary);

    transition:var(--transition);

}

.btn-outline:hover{

    background:var(--primary);
    color:white;

}

/*============================

          HERO

=============================*/

.hero{

    min-height:100vh;

    display:flex;
    align-items:center;

    padding-top:80px;

}

.hero-content{

    display:grid;

    grid-template-columns:1.1fr 1fr;

    align-items:center;

    gap:80px;

}

.hero-tag{

    color:var(--accent);

    letter-spacing:2px;

    font-size:.9rem;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:4.5rem;

    margin-bottom:30px;

}

.hero-description{

    max-width:550px;

    color:var(--secondary);

    margin-bottom:40px;

    font-size:1.05rem;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.hero-image{

    display:flex;
    justify-content:center;

}

.hero-image img{

    width:100%;

    max-width:620px;

    border-radius:22px;

    box-shadow:var(--shadow);

    transition:.4s;

}

.hero-image img:hover{

    transform:translateY(-8px);

}

/*============================

      TECH STACK

=============================*/

.tech-stack{

    background:white;

}

.tech-stack .container{

    text-align:center;

}

.tech-grid{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:40px;

}

.tech-grid span{

    padding:14px 28px;

    background:var(--light);

    border-radius:40px;

    font-weight:500;

    transition:var(--transition);

}

.tech-grid span:hover{

    background:var(--accent);

    color:white;

}

/*======================================
        SECTION HEADINGS
======================================*/

.section-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 70px;
}

.section-heading h2{
    font-size:3rem;
    margin:15px 0;
}

.section-heading p{
    color:var(--secondary);
}

.process-card{

    background:#fff;

    padding:40px;

    border-radius:18px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-8px);

}

.process-card h1{

    color:var(--accent);

    font-size:3.5rem;

    margin-bottom:20px;

}

.process-card h3{

    margin-bottom:15px;

}

.process-card p{

    color:var(--secondary);

}

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

.projects{
    background:#fff;
}

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

.project-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s;
}

.project-card:hover{
    transform:translateY(-10px);
}

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

.project-content{
    padding:30px;
}

.project-content span{
    color:var(--accent);
    font-weight:600;
    font-size:.9rem;
}

.project-content h3{
    margin:15px 0;
    font-size:1.8rem;
}

.project-content p{
    color:var(--secondary);
    margin-bottom:25px;
}

.project-links{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:20px;
}

.project-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin:20px 0;

}

.project-tags span{

    background:var(--light);

    padding:8px 16px;

    border-radius:30px;

    font-size:.8rem;

    font-weight:500;

    color:var(--primary);

    transition:var(--transition);

}

.project-tags span:hover{

    background:var(--accent);

    color:white;

}

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

.services{
    background:var(--light);
}

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

.service-card{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:var(--shadow);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card h3{
    margin-bottom:20px;
}

.service-card p{
    color:var(--secondary);
}

/*======================================
        PROCESS
======================================*/

.process{
    background:#fff;
}


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

.about{
    background:var(--light);
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

.about h2{
    font-size:3rem;
    margin-bottom:25px;
}

.about p{
    color:var(--secondary);
    margin-bottom:20px;
}

/*======================================
        CONTACT
======================================*/

.contact{
    background:#fff;
    text-align:center;
}

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:40px;
}

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

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:60px 0;
}

footer h2{
    font-size:2rem;
    margin-bottom:20px;
}

footer span{
    color:var(--accent);
}

footer p{
    color:#bbb;
    margin:10px 0;
}

/*======================================
        SCROLL ANIMATION
======================================*/

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/*======================================
        MOBILE
======================================*/

@media(max-width:900px){

.hero-content,
.about-container{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-description{
    margin:auto auto 40px;
}

.hero-buttons,
.contact-buttons,
.project-links{
    justify-content:center;
    flex-wrap:wrap;
}

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

.section-heading h2{
    font-size:2.3rem;
}

.about h2{
    font-size:2.3rem;
}

.process-grid{
    grid-template-columns:repeat(2,1fr);
}

.nav-links,
.nav-btn{
    display:none;
}

}

@media(max-width:600px){

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

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

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

section{
    padding:90px 0;
}

}

