/* ==========================================
   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;
    font-family:'Poppins',sans-serif;
}

body{
    background:#fffdf8;
    color:#333;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

section{
    padding:90px 0;
}

/* ==========================================
   COLOR
========================================== */

:root{

    --primary:#6f4e37;
    --secondary:#b98b5f;
    --cream:#fff8f1;
    --white:#ffffff;
    --dark:#2d2d2d;
    --shadow:0 10px 30px rgba(0,0,0,.08);

}

/* ==========================================
   NAVBAR
========================================== */

.navbar{

    background:#fff;
    padding:18px 0;
    transition:.4s;
    z-index:999;

}

.navbar.scrolled{

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.navbar-brand{

    display:flex;
    align-items:center;

}

.navbar-brand img{

    width:55px;
    margin-right:12px;

}

.logo-text h5{

    font-size:21px;
    color:var(--primary);
    margin:0;
    font-weight:700;

}

.logo-text span{

    font-size:12px;
    color:#777;

}

.nav-link{

    color:#555 !important;
    font-weight:500;
    margin:0 12px;
    position:relative;
    transition:.3s;

}

.nav-link:hover{

    color:var(--primary) !important;

}

.nav-link::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-link:hover::after{

    width:100%;

}

/* Tombol WhatsApp */

.btn-wa{

    background:#25D366;
    color:#fff;
    border-radius:50px;
    padding:13px 28px;
    font-weight:600;
    transition:.3s;

}

.btn-wa:hover{

    background:#1ebe5d;
    color:#fff;
    transform:translateY(-2px);

}

/* ==========================================
   HERO
========================================== */

.hero{

    padding-top:150px;
    background:var(--cream);
    overflow:hidden;

}

.hero-left h5{

    color:var(--secondary);
    font-size:26px;
    margin-bottom:15px;
    font-weight:600;

}

.hero-left h1{

    font-size:72px;
    color:var(--primary);
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;

}

.hero-left p{

    font-size:18px;
    color:#666;
    line-height:32px;
    margin-bottom:35px;

}

.hero-button{

    display:flex;
    gap:15px;
    flex-wrap:wrap;

}

.btn-dark-custom{

    background:var(--primary);
    color:#fff;
    padding:15px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;

}

.btn-dark-custom:hover{

    background:#5d412d;
    color:#fff;
    transform:translateY(-4px);

}

.btn-outline-custom{

    border:2px solid var(--primary);
    color:var(--primary);
    padding:15px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;

}

.btn-outline-custom:hover{

    background:var(--primary);
    color:#fff;

}

/* HERO IMAGE */

.hero-right{

    text-align:right;

}

.hero-img{

    width:100%;
    max-width:720px;
    animation:floatImage 4s ease-in-out infinite;

}

/* FLOAT */

@keyframes floatImage{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0px);

    }

}

/* ==========================================
   TITLE
========================================== */

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title span{

    color:var(--secondary);
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;

}

.section-title h2{

    font-size:42px;
    font-weight:700;
    color:var(--primary);
    margin:12px 0;

}

.section-title p{

    color:#777;
    max-width:650px;
    margin:auto;
    line-height:30px;

}
/* ==========================================
   PRODUK
========================================== */

.produk{
    background:#ffffff;
}

.produk-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.produk-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.produk-img{

    height:250px;

    overflow:hidden;

}

.produk-img img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.produk-card:hover img{

    transform:scale(1.08);

}

.produk-body{

    padding:25px;

    text-align:center;

}

.produk-body h4{

    color:var(--primary);

    font-size:24px;

    margin-bottom:10px;

    font-weight:700;

}

.produk-body span{

    display:block;

    color:#c97d27;

    font-size:22px;

    font-weight:700;

    margin-bottom:20px;

}

.btn-detail{

    display:inline-block;

    padding:12px 25px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    transition:.3s;

}

.btn-detail:hover{

    background:#4f3625;

    color:#fff;

}

.btn-semua{

    display:inline-block;

    margin-top:30px;

    background:#c98d58;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-semua:hover{

    background:#b87940;

    color:#fff;

}

/* ==========================================
   TENTANG
========================================== */

.tentang{

    background:#fff8f1;

}

.about-img{

    border-radius:30px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.sub-title{

    color:#b67c42;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

}

.tentang h2{

    font-size:46px;

    color:var(--primary);

    margin:15px 0;

    font-weight:700;

}

.tentang p{

    color:#666;

    line-height:32px;

    margin-bottom:20px;

}

.fitur{

    background:#fff;

    padding:15px;

    border-radius:15px;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

    transition:.3s;

}

.fitur:hover{

    transform:translateY(-5px);

}

.fitur i{

    color:#2bbf6d;

    margin-right:10px;

}

/* ==========================================
   GALERI
========================================== */

.galeri{

    background:#fff;

}

.gallery{

    border-radius:20px;

    transition:.4s;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.gallery:hover{

    transform:scale(1.05);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

/* ==========================================
   ANIMASI
========================================== */

.produk-card,
.about-img,
.gallery{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/* ==========================================
   LOKASI
========================================== */

.lokasi{

    background:#fff8f1;

}

.contact-box{

    background:#fff;

    border-radius:25px;

    padding:40px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-box h3{

    color:var(--primary);

    font-size:32px;

    margin-bottom:25px;

    font-weight:700;

}

.contact-box p{

    margin-bottom:18px;

    font-size:17px;

    color:#666;

}

.contact-box i{

    width:35px;

    color:#c58b57;

}

/* ==========================================
   ORDER
========================================== */

.order{

    background:#ffffff;

}

.order img{

    animation:floatImage 4s ease-in-out infinite;

}

.order h2{

    font-size:46px;

    color:var(--primary);

    font-weight:700;

    margin:18px 0;

}

.order p{

    line-height:32px;

    color:#666;

    margin-bottom:35px;

}

/* ==========================================
   FOOTER
========================================== */

footer{

    background:#3f2a1d;

    color:#fff;

    padding:70px 0 25px;

}

footer h4{

    font-weight:700;

    margin-bottom:15px;

}

footer h5{

    margin-bottom:25px;

    font-weight:600;

}

footer p{

    color:#ddd;

    line-height:30px;

}

.footer-menu{

    list-style:none;

    padding:0;

}

.footer-menu li{

    margin-bottom:12px;

}

.footer-menu a{

    color:#ddd;

    transition:.3s;

}

.footer-menu a:hover{

    color:#fff;

    padding-left:8px;

}

footer hr{

    border-color:rgba(255,255,255,.15);

    margin:40px 0 20px;

}

/* ==========================================
   BUTTON EFFECT
========================================== */

.btn{

    transition:.35s;

}

.btn:hover{

    transform:translateY(-3px);

}

/* ==========================================
   SCROLLBAR
========================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#a66b3d;

    border-radius:30px;

}

::-webkit-scrollbar-track{

    background:#f3f3f3;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1200px){

.hero-left h1{

    font-size:58px;

}

.hero-img{

    max-width:620px;

}

}

@media(max-width:992px){

.navbar{

    padding:15px 0;

}

.hero{

    text-align:center;

    padding-top:140px;

}

.hero-left{

    margin-bottom:50px;

}

.hero-left h1{

    font-size:48px;

}

.hero-button{

    justify-content:center;

}

.hero-right{

    text-align:center;

}

.section-title h2{

    font-size:36px;

}

.order{

    text-align:center;

}

.contact-box{

    margin-top:30px;

}

}

@media(max-width:768px){

.hero{

    padding-top:120px;

}

.hero-left h1{

    font-size:40px;

}

.hero-left p{

    font-size:16px;

}

.tentang h2{

    font-size:34px;

}

.order h2{

    font-size:34px;

}

.section-title h2{

    font-size:30px;

}

}

@media(max-width:576px){

.hero-left h1{

    font-size:34px;

}

.hero-left h5{

    font-size:22px;

}

.hero-button{

    flex-direction:column;

}

.hero-button a{

    width:100%;

}

.btn-wa{

    width:100%;

    text-align:center;

    margin-top:15px;

}

.contact-box{

    padding:25px;

}

footer{

    text-align:center;

}

}
/*=========================================
ANIMATION
=========================================*/

.hidden{

    opacity:0;

    transform:translateY(60px);

    transition:1s;

}

.show{

    opacity:1;

    transform:translateY(0);

}

/*=========================================
BACK TO TOP
=========================================*/

.top-btn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#6f4e37;

    color:#fff;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:999;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

}

.top-btn.show{

    opacity:1;

    visibility:visible;

}

.top-btn:hover{

    transform:translateY(-5px);

    background:#8b5a2b;

}

.nav-link.active{

    color:#6f4e37 !important;

    font-weight:700;

}