/* ===========================
   GOOGLE FONT
=========================== */

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

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

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

body{
    font-family:'Poppins',sans-serif;
    background:#f8f8f8;
    color:#333;
}

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

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

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

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#ffffff;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

    z-index:999;

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:85px;

}

/* ===========================
   LOGO
=========================== */

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    width:65px;

    height:65px;

    object-fit:cover;

    border-radius:50%;

}

.logo h2{

    color:#6d2d00;

    font-size:26px;

    font-weight:700;

}

.logo p{

    color:#b47b27;

    font-size:14px;

}

/* ===========================
   NAVIGATION
=========================== */

nav ul{

    display:flex;

    list-style:none;

    gap:35px;

}

nav ul li a{

    text-decoration:none;

    color:#333;

    font-weight:600;

    transition:.3s;

}

nav ul li a:hover{

    color:#c68a2b;

}
/*==================================
 HERO SECTION
==================================*/

.hero{

    width:100%;

    height:100vh;

    background:url("images/hero.jpg") center center/cover no-repeat;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-top:85px;

}

.hero-overlay{

    width:100%;

    height:100%;

    background:rgba(0,0,0,.55);

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-content{

    text-align:center;

    color:#fff;

    width:90%;

    max-width:900px;

}

.hero-content h1{

    font-size:60px;

    line-height:75px;

    margin-bottom:20px;

}

.hero-content h1 span{

    color:#ffcc66;

}

.hero-content p{

    font-size:20px;

    line-height:35px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    background:#c68a2b;

    color:white;

    text-decoration:none;

    padding:16px 40px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.btn:hover{

    background:#8d5d16;

}

.btn2{

    background:white;

    color:#333;

    text-decoration:none;

    padding:16px 40px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.btn2:hover{

    background:#f2f2f2;

}




/*================ PRODUCTS =================*/

.products{
padding:90px 8%;
background:#f9f9f9;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:42px;
color:#3b1f08;
margin-bottom:15px;
line-height:1.3;
}

.section-title p{
color:#777;
font-size:18px;
}

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

.product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s ease;

    cursor:pointer;

    display:flex;

    flex-direction:column;

    height:100%;

}

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

.product-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.4s;

}

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

.product-card h3{

    padding:22px;
    text-align:center;
    font-size:22px;
    color:#3b1f08;
    font-weight:600;

}

/*================ GALLERY =================*/

.gallery{
padding:90px 8%;
background:#ffffff;
}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.gallery-item{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.10);

    cursor:pointer;

    transition:.35s ease;

}

.gallery-item img{

    width:100%;

    height:300px;

    object-fit:cover;

    display:block;

    transition:.4s ease;

}

.gallery-item:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.gallery-item:hover img{

    transform:scale(1.08);

}

/*================ BRANCHES =================*/

.branches{
padding:90px 8%;
background:#f8f8f8;
}

.branch-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:30px;

}

.branch-card{

    background:#fff;

    padding:30px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s ease;

    height:100%;

    display:flex;

    flex-direction:column;

}

.branch-card:hover{

transform:translateY(-8px);

}

.branch-card h3{

color:#3b1f08;

margin-bottom:15px;

font-size:28px;

}

.branch-card p{

margin:10px 0;

font-size:17px;

color:#555;

}

.branch-btn{

display:inline-block;

margin:20px 0;

padding:14px 28px;

background:#25D366;

color:#fff;

text-decoration:none;

border-radius:40px;

font-weight:bold;

transition:.3s;

}

.branch-btn:hover{

background:#128C7E;

}

.branch-card iframe{

    width:100%;

    height:260px;

    border:none;

    border-radius:15px;

    margin-top:20px;

}


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

.contact{

padding:90px 8%;

background:#ffffff;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin-bottom:50px;

    align-items:stretch;

}

.contact-card{

    background:#fff8ef;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s ease;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

}
.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.contact-card h3{

color:#3b1f08;

margin-bottom:20px;

}

.contact-card p{

margin:10px 0;

font-size:17px;

}

.contact-btn{

display:inline-block;

margin-top:20px;

padding:14px 30px;

background:#25D366;

color:white;

text-decoration:none;

border-radius:50px;

font-weight:bold;

transition:.3s;

}

.contact-btn:hover{

background:#128C7E;

}

.social-links{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:20px;

}

.social-btn{

padding:15px 35px;

border-radius:50px;

text-decoration:none;

color:white;

font-weight:bold;

transition:.3s;

}

.tiktok{

background:#000;

}

.facebook{

background:#1877F2;

}

.youtube{

background:#FF0000;

}

.social-btn:hover{

transform:translateY(-5px);

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

footer{
    background:#2b1707;
    color:#fff;
    margin-top:70px;
}

.footer-container{

    width:90%;

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:35px;

    padding:60px 20px;

}

.footer-logo{

    width:90px;

    margin-bottom:18px;

}

.footer-box h3{
    margin-bottom:20px;
    color:#f7c66b;
}

.footer-box p{

    line-height:30px;

    color:#ddd;

    margin-bottom:8px;

}

.footer-box ul{
    list-style:none;
}

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

.footer-box ul li a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#f7c66b;
}

.footer-social-links{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-social-links a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-social-links a:hover{
    color:#f7c66b;
}

.footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.15);
    color:#ccc;
}

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

.about{
    padding:90px 8%;
    background:#fff;
}

.about-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.about-content span{
    color:#d08a18;
    font-weight:bold;
    font-size:18px;
}

.about-content h2{
    font-size:42px;
    color:#3d1f00;
    margin:15px 0 25px;
    line-height:1.3;
}

.about-content p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
    font-size:17px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:30px 0;
}

.feature{
    background:#fff8ef;
    padding:15px;
    border-radius:10px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.about-btn{
    display:inline-block;
    background:#d08a18;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}

.about-btn:hover{
    background:#3d1f00;
    transform:translateY(-3px);
}

/* Mobile */

@media(max-width:768px){

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

    .about-content{
        text-align:center;
    }

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

    .about-content h2{
        font-size:32px;
    }

}
/*==============================
        WHY CHOOSE US
==============================*/

.why-us{
    padding:90px 8%;
    background:#fff8ef;
}

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

.section-title h2{
    font-size:42px;
    color:#3d1f00;
}

.section-title p{
    color:#666;
    margin-top:10px;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.why-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

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

.icon{
    font-size:45px;
    margin-bottom:20px;
}

.why-card h3{
    color:#3d1f00;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:28px;
}

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

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#3d1f00;
}

@media (max-width:992px){

    header .container{
        height:75px;
    }

    .logo img{
        width:55px;
        height:55px;
    }

    .logo h2{
        font-size:22px;
    }

    .logo p{
        font-size:13px;
    }

    .menu-toggle{
        display:block;
    }

    nav ul{

        position:absolute;

        top:75px;

        left:0;

        width:100%;

        background:#ffffff;

        flex-direction:column;

        align-items:center;

        gap:0;

        display:none;

        box-shadow:0 10px 20px rgba(0,0,0,.08);

    }

    nav ul.active{
        display:flex;
    }

    nav ul li{
        width:100%;
        text-align:center;
        border-bottom:1px solid #eee;
    }

    nav ul li a{
        display:block;
        padding:18px;
    }

}


/*====================================
      HERO RESPONSIVE DESIGN
====================================*/

/* Large Desktop */
@media (max-width:1200px){

    .hero-content h1{
        font-size:52px;
        line-height:65px;
    }

}

/* Laptop */
@media (max-width:992px){

    .hero{
        margin-top:75px;
    }

    .hero-content h1{
        font-size:44px;
        line-height:56px;
    }

    .hero-content p{
        font-size:18px;
        line-height:30px;
    }

}

/* Tablet */
@media (max-width:768px){

    .hero{
        height:auto;
        min-height:100vh;
        padding:70px 20px;
    }

    .hero-content h1{

        font-size:36px;

        line-height:48px;

    }

    .hero-content p{

        font-size:17px;

        line-height:30px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

    .btn,
    .btn2{

        width:240px;

        text-align:center;

    }

}

/* Mobile */
@media (max-width:480px){

    .hero{

        padding:60px 15px;

    }

    .hero-content h1{

        font-size:28px;

        line-height:38px;

    }

    .hero-content p{

        font-size:16px;

        line-height:28px;

    }

    .btn,
    .btn2{

        width:100%;

        max-width:280px;

        padding:14px;

        font-size:16px;

    }

}


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

@media (max-width:992px){

    .about{
        padding:70px 20px;
    }

    .about-container{
        gap:40px;
    }

}

@media (max-width:768px){

    .about{
        padding:60px 20px;
    }

    .about-image{
        text-align:center;
    }

    .about-image img{
        max-width:450px;
    }

    .about-content{
        text-align:center;
    }

    .about-content span{
        font-size:16px;
    }

    .about-content h2{
        font-size:32px;
    }

    .about-content p{
        font-size:16px;
    }

    .about-btn{
        width:220px;
        text-align:center;
    }

}

@media (max-width:480px){

    .about{
        padding:50px 15px;
    }

    .about-content h2{
        font-size:28px;
    }

    .about-content p{
        font-size:15px;
        line-height:1.7;
    }

    .about-btn{
        width:100%;
        max-width:260px;
    }

}

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

@media (max-width:992px){

    .products{
        padding:70px 20px;
    }

}

@media (max-width:768px){

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

    .section-title p{
        font-size:16px;
    }

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

    .product-card img{
        height:180px;
    }

    .product-card h3{
        font-size:20px;
    }

}

@media (max-width:576px){

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

    .product-card img{
        height:220px;
    }

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

}


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

@media (max-width:992px){

    .gallery{
        padding:70px 20px;
    }

}

@media (max-width:768px){

    .gallery-grid{

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

        gap:20px;

    }

    .gallery-item img{

        height:220px;

    }

}

@media (max-width:576px){

    .gallery{

        padding:60px 15px;

    }

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .gallery-item img{

        height:250px;

    }

}

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

@media (max-width:992px){

    .branches{
        padding:70px 20px;
    }

}

@media (max-width:768px){

    .branch-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .branch-card{
        padding:25px;
    }

    .branch-card h3{
        font-size:24px;
    }

    .branch-card p{
        font-size:16px;
    }

    .branch-btn{
        width:100%;
        text-align:center;
    }

}

@media (max-width:480px){

    .branches{
        padding:60px 15px;
    }

    .branch-card iframe{
        height:220px;
    }

}

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

@media (max-width:992px){

    .contact{
        padding:70px 20px;
    }

}

@media (max-width:768px){

    .contact-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .contact-card{
        padding:25px;
    }

    .contact-btn{
        width:100%;
        text-align:center;
    }

    .social-links{
        gap:15px;
    }

}

@media (max-width:480px){

    .contact{
        padding:60px 15px;
    }

    .social-btn{
        width:100%;
        text-align:center;
    }

}

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

@media(max-width:768px){

    .footer-container{

        grid-template-columns:1fr;

        text-align:center;

        padding:50px 20px;

    }

    .footer-logo{

        margin:auto auto 20px;

    }

    .footer-box{

        margin-bottom:20px;

    }

    .footer-box ul{

        padding:0;

    }

    .footer-box ul li{

        margin-bottom:10px;

    }

}

@media(max-width:480px){

    .footer-bottom{

        font-size:14px;

        line-height:24px;

        padding:18px;

    }

}