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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#F8F6F2;
    color:#1E1E1E;
    line-height:1.7;
    overflow-x:hidden;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ========================================
   CONTAINER
======================================== */

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

.section-space{
    padding:120px 0;
}

.bg-light{
    background:#F1EEE8;
}

.center{
    text-align:center;
}

/* ========================================
   TYPOGRAPHY
======================================== */

h1,h2,h3,h4{
    font-family:'Cormorant Garamond',serif;
    font-weight:600;
    line-height:1.1;
    color:#1E1E1E;
}

h1{
    font-size:90px;
    margin-bottom:30px;
}

h2{
    font-size:56px;
    margin-bottom:25px;
}

h3{
    font-size:30px;
    margin-bottom:15px;
}

p{
    font-size:16px;
    color:#555;
}

.section-label{
    display:inline-block;
    margin-bottom:20px;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#8C715A;
}

/* ========================================
   BUTTON
======================================== */

.btn-primary,
.btn-secondary,
.btn-light{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 36px;
    border-radius:100px;
    font-size:14px;
    font-weight:500;
    transition:.4s ease;
}

.btn-primary{
    background:#5B4636;
    color:#fff;
}

.btn-primary:hover{
    background:#3B2B21;
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.4);
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#000;
}

.btn-light{
    background:#fff;
    color:#000;
}

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

.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    padding:30px 0;
    transition:.4s;
}

.main-header.sticky{
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    padding:20px 0;
}

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

.logo{
    font-size:38px;
    font-family:'Cormorant Garamond',serif;
    color:#fff;
}

.main-header.sticky .logo{
    color:#1E1E1E;
}

nav ul{
    display:flex;
    align-items:center;
    gap:40px;
}

nav ul li a{
    color:#fff;
    font-size:14px;
    letter-spacing:1px;
    transition:.3s;
}

.main-header.sticky nav ul li a{
    color:#1E1E1E;
}

nav ul li a:hover{
    opacity:.6;
}

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

.hero-section{
    position:relative;
    height:100vh;
    display:flex;
    align-items:center;
    background:url('/assets/images/hero.jpg') center center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:750px;
}

.hero-content h1{
    color:#fff;
}

.hero-content p{
    color:#ddd;
    max-width:600px;
    margin-bottom:40px;
    font-size:18px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

/* ========================================
   GRID
======================================== */

.grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:80px;
    align-items:center;
}

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

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

.about-image{
    border-radius:24px;
    overflow:hidden;
}

.about-image img{
    height:700px;
    object-fit:cover;
}

/* ========================================
   PRODUCT
======================================== */

.section-heading{
    margin-bottom:70px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:.5s;
}

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

.product-image{
    overflow:hidden;
}

.product-image img{
    height:420px;
    object-fit:cover;
    transition:.6s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-content{
    padding:30px;
}

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

.project-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.project-item{
    position:relative;
    overflow:hidden;
    border-radius:24px;
}

.project-item.large{
    grid-row:span 2;
}

.project-item img{
    height:100%;
    min-height:400px;
    object-fit:cover;
    transition:.6s;
}

.project-item:hover img{
    transform:scale(1.06);
}

.project-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:40px;
    color:#fff;
    background:linear-gradient(to top, rgba(0,0,0,.75), transparent);
}

.project-overlay h3{
    color:#fff;
}

/* ========================================
   WHY
======================================== */

.why-card{
    background:#fff;
    padding:50px;
    border-radius:24px;
}

/* ========================================
   TESTIMONIAL
======================================== */

.dark-section{
    background:#1A1A1A;
    color:#fff;
}

.dark-section h2{
    color:#fff;
    max-width:900px;
    margin:20px auto;
}

.dark-section p{
    color:#aaa;
}

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

.cta-section{
    background:#5B4636;
    color:#fff;
    padding:140px 0;
}

.cta-section h2{
    color:#fff;
    margin:20px 0 40px;
}

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

.main-footer{
    background:#111;
    color:#fff;
    padding:100px 0 40px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
}

.footer-grid h3,
.footer-grid h4{
    color:#fff;
    margin-bottom:20px;
}

.footer-grid p,
.footer-grid a{
    color:#aaa;
}

.footer-grid ul li{
    margin-bottom:12px;
}

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

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

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

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

@media(max-width:991px){

    h1{
        font-size:60px;
    }

    h2{
        font-size:42px;
    }

    .grid-2,
    .grid-3,
    .product-grid,
    .project-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    nav{
        display:none;
    }

    .hero-section{
        height:auto;
        padding:180px 0 120px;
    }

    .section-space{
        padding:80px 0;
    }

}

@media(max-width:768px){

    h1{
        font-size:46px;
    }

    h2{
        font-size:34px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

}