/* ===================================================
   K K Furniture & Manufacturing
   Premium Furniture Website
   Part 2A
=================================================== */

/* ---------------- Google Font ---------------- */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ---------------- Root ---------------- */

:root{

    --primary:#8B5E3C;
    --primary-dark:#6B4423;
    --secondary:#F8F5F1;
    --accent:#C8A46A;
    --white:#ffffff;
    --black:#1d1d1d;
    --text:#555;
    --border:#ececec;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s ease;

    --container:1200px;

}

/* ---------------- Reset ---------------- */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:#fff;

    color:var(--black);

    line-height:1.7;

    overflow-x:hidden;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(92%,var(--container));

    margin:auto;

}

/* ---------------- Common ---------------- */

.section{

    padding:110px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--primary);

    letter-spacing:3px;

    font-size:.9rem;

    font-weight:600;

}

.section-title h2{

    margin-top:12px;

    font-size:2.8rem;

    font-weight:700;

}

p{

    color:var(--text);

}

/* ---------------- Buttons ---------------- */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 35px;

    border-radius:999px;

    transition:var(--transition);

    font-weight:600;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

}

.btn-outline{

    border:2px solid #fff;

    color:#fff;

}

.btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

.big-btn{

    padding:18px 45px;

    font-size:1.1rem;

}

/* ---------------- Header ---------------- */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.82);

    border-bottom:1px solid rgba(0,0,0,.05);

}

.nav{

    height:85px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    font-size:1.7rem;

    font-weight:700;

    color:var(--primary);

}

.nav-links{

    display:flex;

    gap:34px;

}

.nav-links a{

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:var(--primary);

}

.menu-btn{

    display:none;

    font-size:1.8rem;

    cursor:pointer;

}

/* ---------------- Hero ---------------- */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:linear-gradient(135deg,#fdfaf6,#f3ede7);

}

.hero::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    border-radius:50%;

    background:rgba(200,164,106,.12);

    top:-180px;

    right:-180px;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to right,
            rgba(255,255,255,.96),
            rgba(255,255,255,.55));

}

.hero-content{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:48% 52%;
    gap:70px;
    align-items:center;
    min-height:90vh;
}

.tag{

    display:inline-block;

    background:#fff;

    padding:10px 20px;

    border-radius:999px;

    box-shadow:var(--shadow);

    color:var(--primary);

    margin-bottom:25px;

    font-weight:600;

}

.hero h1{

    font-size:4rem;

    line-height:1.15;

    margin-bottom:25px;

}

.hero p{

    max-width:560px;

    margin-bottom:40px;

    font-size:1.05rem;

}

.hero-buttons{

    display:flex;

    gap:18px;

    

}

.hero-right{

    position:relative;

}

.hero-right img{

    border-radius:20px;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

    transition:.10s;

}

.hero-right img:hover{

    transform:scale(1.03);

}

/* ---------------- Features ---------------- */

.features{

    margin-top:-70px;

    position:relative;

    z-index:3;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.feature-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-8px);

}

.feature-card h3{

    margin-bottom:10px;

    color:var(--primary);

}

/* ---------------- Scroll Reveal ---------------- */

.reveal{

    opacity:0;

    transform:translateY(50px);

    transition:all .8s ease;

}

.reveal.active{

    opacity:1;

    transform:none;

}
/* ===================================================
   ABOUT SECTION
=================================================== */

.about{

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-grid img{

    width:100%;

    border-radius:28px;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.about-grid img:hover{

    transform:scale(1.03);

}

.about-grid p{

    margin-bottom:22px;

    font-size:1.05rem;

}

.about-grid ul{

    margin-top:30px;

}

.about-grid ul li{

    margin-bottom:18px;

    color:#444;

    font-weight:500;

    padding-left:8px;

}

/* ===================================================
   CATEGORY SECTION
=================================================== */

.categories{

    background:var(--secondary);

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.category-card{

    background:#fff;

    overflow:hidden;

    border-radius:22px;

    box-shadow:var(--shadow);

    transition:.4s;

    cursor:pointer;

}

.category-card:hover{

    transform:translateY(-10px);

}

.category-card img{

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.category-card:hover img{

    transform:scale(1.08);

}

.category-card h3{

    padding:25px 25px 8px;

    color:var(--primary);

    font-size:1.4rem;

}

.category-card p{

    padding:0 25px 28px;

    color:#666;

}

/* ===================================================
   GALLERY
=================================================== */

.gallery{

    background:#fff;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.gallery-grid img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:18px;

    box-shadow:var(--shadow);

    cursor:pointer;

    transition:.45s;

}

.gallery-grid img:hover{

    transform:scale(1.05);

    box-shadow:0 18px 40px rgba(0,0,0,.18);

}

/* Masonry Effect */

.gallery-grid img:nth-child(2){

    height:420px;

}

.gallery-grid img:nth-child(5){

    height:420px;

}

.gallery-grid img:nth-child(7){

    height:380px;

}

/* ===================================================
   WHY CHOOSE US
=================================================== */

.why{

    background:linear-gradient(to bottom,#ffffff,#f8f5f1);

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-grid div{

    background:#fff;

    border-radius:22px;

    padding:45px 30px;

    text-align:center;

    font-weight:600;

    font-size:1.1rem;

    box-shadow:var(--shadow);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.why-grid div::before{

    content:"✓";

    width:55px;

    height:55px;

    border-radius:50%;

    background:rgba(139,94,60,.12);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    margin:0 auto 18px;

}

.why-grid div:hover{

    transform:translateY(-8px);

    background:var(--primary);

    color:#fff;

}

.why-grid div:hover::before{

    background:#fff;

}

/* ===================================================
   SECTION SPACING
=================================================== */

.about,
.categories,
.gallery,
.why{

    position:relative;

}

.about::after,
.categories::after,
.gallery::after{

    content:"";

    position:absolute;

    bottom:0;

    left:50%;

    transform:translateX(-50%);

    width:120px;

    height:4px;

    background:var(--accent);

    border-radius:20px;

    opacity:.25;

}

/* ===================================================
   IMAGE HOVER GLOW
=================================================== */

.category-card img,
.gallery-grid img,
.about-grid img{

    backface-visibility:hidden;

}

.category-card:hover{

    box-shadow:0 20px 50px rgba(139,94,60,.18);

}

.gallery-grid img:hover{

    outline:3px solid rgba(200,164,106,.18);

}
/*====================================================
REVIEWS
====================================================*/

.reviews{
    background:var(--secondary);
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.review-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:.35s ease;
    position:relative;
}

.review-card:hover{
    transform:translateY(-10px);
}

.review-card h4{
    margin:18px 0 10px;
    color:var(--primary);
    font-size:1.2rem;
}

.review-card p{
    color:#666;
    font-size:.96rem;
}

.review-card::before{
    content:"★★★★★";
    position:absolute;
    top:25px;
    right:25px;
    color:gold;
    font-size:14px;
}

/*====================================================
CONTACT
====================================================*/

.contact{

    background:#fff;

}

.contact-box{

    display:grid;

    grid-template-columns:1fr auto;

    gap:50px;

    align-items:center;

    padding:60px;

    border-radius:25px;

    background:linear-gradient(135deg,#8B5E3C,#6B4423);

    color:#fff;

    box-shadow:0 20px 60px rgba(0,0,0,.18);

}

.contact-box h2{

    font-size:2.3rem;

    margin-bottom:20px;

}

.contact-box p{

    color:#ffffff;

    margin-bottom:20px;

}

.contact-box h3{

    font-size:1.3rem;

}

.contact-box .btn-primary{

    background:#25D366;

    color:var(--primary);

}

.contact-box .btn-primary:hover{

    background:#F6EFE6;

}

/*====================================================
FOOTER
====================================================*/

footer{

    background:#1d1d1d;

    color:#ddd;

    padding:60px 0;

}

.footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

}

.footer h3{

    color:#fff;

    margin-bottom:10px;

}

.footer p{

    color:#bbb;

}

/*====================================================
FLOATING WHATSAPP
====================================================*/

.whatsapp{

    position:fixed;

    bottom:30px;

    right:30px;

    width:65px;

    height:65px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    text-decoration:none;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;

    animation:float 2.5s infinite;

}

.whatsapp:hover{

    transform:scale(1.12);

}

/*====================================================
SCROLLBAR
====================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#eee;

}

/*====================================================
ANIMATIONS
====================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(60px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

.hero-left{

    animation:fadeUp .9s ease;

}

.hero-right{

    animation:fadeUp 1.2s ease;

}

/*====================================================
HOVER EFFECTS
====================================================*/

img{

    transition:.45s ease;

}

button,
.btn{

    transition:.35s ease;

}

.section{

    overflow:hidden;

}

/*====================================================
TABLET
====================================================*/

@media(max-width:991px){

.hero-content{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-right{

order:-1;

}

.about-grid{

grid-template-columns:1fr;

}

.category-grid{

grid-template-columns:repeat(2,1fr);

}

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

.why-grid{

grid-template-columns:repeat(2,1fr);

}

.review-grid{

grid-template-columns:1fr;

}

.contact-box{

grid-template-columns:1fr;

text-align:center;

}

.footer{

flex-direction:column;

text-align:center;

}

.nav-links{

display:none;

}

.menu-btn{

display:block;

}

.hero h1{

font-size:3rem;

}

.section-title h2{

font-size:2.2rem;

}

}

/*====================================================
MOBILE
====================================================*/

@media(max-width:768px){

.hero{

padding:130px 0 80px;

}

.hero h1{

font-size:2.3rem;

}

.hero-buttons{

flex-direction:column;

}

.feature-grid{

grid-template-columns:1fr;

}

.category-grid{

grid-template-columns:1fr;

}

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-grid img{

height:260px !important;

}

.why-grid{

grid-template-columns:1fr;

}

.contact-box{

padding:35px;

}

.contact-box h2{

font-size:1.8rem;

}

.big-btn{

width:100%;

}

.section{

padding:80px 0;

}

.whatsapp{

width:58px;

height:58px;

font-size:26px;

right:18px;

bottom:18px;

}

}

/*====================================================
SMALL MOBILE
====================================================*/

@media(max-width:480px){

.container{

width:94%;

}

.logo{

font-size:1.3rem;

}

.hero h1{

font-size:2rem;

}

.section-title h2{

font-size:1.8rem;

}

.feature-card,
.category-card,
.review-card{

padding:25px;

}

.contact-box{

border-radius:18px;

}

}
/* WhatsApp Button */

.btn-whatsapp{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 35px;
    background:#25D366;
    color:#fff;
    border-radius:999px;
    font-weight:600;
    transition:0.35s ease;
    box-shadow:0 10px 25px rgba(37,211,102,.35);
}

.btn-whatsapp:hover{
    background:#1EBE5D;
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(37,211,102,.45);
}
/* Location Button */

.btn-location{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 35px;
    background:#ffffff;
    color:#8B5E3C;
    border:2px solid #8B5E3C;
    border-radius:999px;
    font-weight:600;
    transition:.35s ease;
}

.btn-location:hover{
    background:#8B5E3C;
    color:#ffffff;
    transform:translateY(-4px);
}

/* =======================
   Videos Section
======================= */

.videos{
    background:#f8f5f1;
}

.video-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

    margin-top:50px;

}

.video-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.10);

    transition:.35s;

}

.video-card:hover{

    transform:translateY(-8px);

}

.video-card video{

    width:100%;

    height:260px;

    object-fit:cover;

    display:block;

    background:#000;

}

.video-card h3{

    padding:20px;

    text-align:center;

    font-size:20px;

    color:#8B5E3C;

}

.videos p{

    text-align:center;

    color:#666;

    max-width:700px;

    margin:15px auto 0;

}

/* Mobile */

@media(max-width:768px){

.video-grid{

grid-template-columns:1fr;

}

.video-card video{

height:220px;

}

}
/*====================================================
END OF STYLE.CSS
====================================================*/