/* ===========================
   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;
}

html{
    scroll-behavior:smooth;
}

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

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

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

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

.header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#4E342E;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

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

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

}

.logo{

    text-decoration:none;

    color:white;

    font-size:32px;

    font-weight:700;

}

.logo span{

    color:#D4A373;

}

.nav-menu{

    display:flex;

    gap:35px;

    list-style:none;

}

.nav-menu a{

    color:white;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

}

.nav-menu a:hover{

    color:#D4A373;

}

.nav-link:hover{

    color:#D4A373;

}

.btn-primary{

    text-decoration:none;

    background:#D4A373;

    color:white;

    padding:12px 26px;

    border-radius:8px;

    transition:.3s;

    display:inline-block;

}

.btn-primary:hover{

    background:#bc8555;

}

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

#hero{

    min-height:90vh;

    display:flex;

    align-items:center;

}

.hero-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

}

.hero-content{

    flex:1;

}

.hero-subtitle{

    color:#D4A373;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:20px;

    text-transform:uppercase;

}

.hero-content h1{

    font-size:64px;

    line-height:1.2;

    margin-bottom:25px;

}

.hero-description{

    font-size:18px;

    color:#666;

    line-height:1.8;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-secondary{

    text-decoration:none;

    border:2px solid #4E342E;

    color:#4E342E;

    padding:12px 26px;

    border-radius:8px;

    transition:.3s;

}

.btn-secondary:hover{

    background:#4E342E;

    color:white;

}

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:100%;

    max-width:500px;

    border-radius:25px;

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

}

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

section{

    padding:100px 0;

}

section h2{

    font-size:36px;

    margin-bottom:20px;

}

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

.about-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

}

.about-image{

    flex:1;

}

.about-image img{

    width:100%;

    border-radius:20px;

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

}

.about-content{

    flex:1;

}

.section-subtitle{

    color:#D4A373;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:15px;

}

.about-content h2{

    font-size:42px;

    margin-bottom:25px;

}

.about-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

.about-features{

    display:grid;

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

    gap:20px;

}

.feature{

    background:white;

    padding:15px;

    border-radius:12px;

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

    transition:.3s;

}

.feature:hover{

    transform:translateY(-5px);

}

/* ===========================
   MENU
=========================== */

#menu{

    background:#fff8f2;

}

.section-title{

    font-size:42px;

    margin-bottom:60px;

}

.menu-grid{

    display:grid;

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

    gap:30px;

}

.menu-card{

    background:white;

    padding:30px;

    border-radius:20px;

    text-align:center;

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

    transition:.3s;

}

.menu-card:hover{

    transform:translateY(-10px);

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

}

.menu-card img{

    width:180px;

    height:180px;

    object-fit:cover;

    border-radius:50%;

    margin-bottom:20px;

}

.menu-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.menu-card p{

    color:#666;

    margin-bottom:20px;

    line-height:1.7;

}

.rating{

    margin-bottom:20px;

}

.price{

    display:block;

    font-size:22px;

    font-weight:bold;

    color:#4E342E;

    margin-bottom:25px;

}

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

#why-us{

    background:#ffffff;

}

.why-grid{

    display:grid;

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

    gap:30px;

}

.why-card{

    background:white;

    padding:35px 25px;

    border-radius:20px;

    text-align:center;

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

    transition:.3s;

}

.why-card:hover{

    transform:translateY(-10px);

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

}

.why-icon{

    font-size:55px;

    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:15px;

    color:#4E342E;

}

.why-card p{

    color:#666;

    line-height:1.8;

}

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

#testimonial{

    background:#fff8f2;

}

.testimonial-grid{

    display:grid;

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

    gap:30px;

}

.testimonial-card{

    background:white;

    padding:35px;

    border-radius:20px;

    text-align:center;

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

    transition:.3s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

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

}

.testimonial-card img{

    width:100px;

    height:100px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#666;

    line-height:1.8;

    margin:20px 0;

    font-style:italic;

}

.testimonial-card h4{

    color:#4E342E;

}

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

#gallery{

    background:#ffffff;

}

.gallery-grid{

    display:grid;

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

    gap:25px;

}

.gallery-item{

    overflow:hidden;

    border-radius:20px;

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

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.4s;

    display:block;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

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

#contact{

    background:#fff8f2;

}

.contact-container{

    display:flex;

    justify-content:space-between;

    gap:60px;

}

.contact-info{

    flex:1;

}

.contact-box{

    background:white;

    padding:25px;

    border-radius:15px;

    margin-bottom:20px;

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

}

.contact-box h3{

    color:#4E342E;

    margin-bottom:10px;

}

.contact-box p{

    color:#666;

    line-height:1.7;

}

.contact-form{

    flex:1;

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    padding:16px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

    outline:none;

    font-family:inherit;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#D4A373;

}

.contact-form button{

    border:none;

    cursor:pointer;

}

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

footer{

    background:#2D1B16;

    color:white;

    margin-top:100px;

}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

    padding:70px 0;

}

.footer-about h2{

    font-size:32px;

    margin-bottom:20px;

}

.footer-about span{

    color:#D4A373;

}

.footer-about p{

    color:#cccccc;

    line-height:1.8;

}

.footer-links h3,
.footer-contact h3,
.footer-social h3{

    margin-bottom:20px;

}

.footer-links ul{

    list-style:none;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a,
.footer-social a{

    text-decoration:none;

    color:#cccccc;

    transition:.3s;

    display:block;

    margin-bottom:12px;

}

.footer-links a:hover,
.footer-social a:hover{

    color:#D4A373;

}

.footer-contact p{

    color:#cccccc;

    margin-bottom:15px;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.1);

    text-align:center;

    padding:25px;

    color:#bbbbbb;

}

/* ===========================
   HAMBURGER
=========================== */

.hamburger{

    display:none;

    flex-direction:column;

    cursor:pointer;

    gap:6px;

}

.hamburger span{

    width:28px;

    height:3px;

    background:white;

    border-radius:5px;

    transition:.3s;

}

/* Animasi */

.hamburger.active span:nth-child(1){

    transform:rotate(45deg) translate(6px,6px);

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:rotate(-45deg) translate(7px,-7px);

}

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

@media (max-width: 992px) {

    /* Navbar */

    .navbar{

    position:relative;

}

.hamburger{

    display:flex;

}

.nav-menu{

    position:absolute;

    top:80px;

    left:0;

    width:100%;

    background:#4E342E;

    flex-direction:column;

    align-items:center;

    padding:25px 0;

    gap:20px;

    display:none;

    border-radius:0 0 15px 15px;

}

.nav-menu.active{

    display:flex;

}

    /* Hero */

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* About */

    .about-container {
        flex-direction: column;
        text-align: center;
    }

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

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

    .menu-grid{

    grid-template-columns:1fr;
    }

    .why-grid{

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

    .testimonial-grid{

        grid-template-columns:1fr;

    }

    .gallery-grid{

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

    }

    .contact-container{

    flex-direction:column;

    }

    .footer-container{

    grid-template-columns:1fr 1fr;

    }
}

@media (max-width: 576px) {

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 220px;
        text-align: center;
    }

    .logo {
        font-size: 26px;
    }

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

    .why-grid{

    grid-template-columns:1fr;

    }

    .gallery-grid{

    grid-template-columns:1fr;

    }

    .footer-container{

    grid-template-columns:1fr;

    text-align:center;

    }
}

/* ===========================
   BACK TO TOP
=========================== */

#backToTop{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#D4A373;

    color:white;

    font-size:22px;

    cursor:pointer;

    display:none;

    transition:.3s;

    z-index:999;

}

#backToTop:hover{

    background:#4E342E;

}

/* ===========================
   MENU SEARCH
=========================== */

.menu-search{

    display:flex;

    justify-content:center;

    margin-bottom:40px;

}

.menu-search input{

    width:100%;

    max-width:500px;

    padding:15px 20px;

    border:2px solid #D4A373;

    border-radius:50px;

    outline:none;

    font-size:16px;

    transition:.3s;

}

.menu-search input:focus{

    border-color:#4E342E;

    box-shadow:0 0 15px rgba(212,163,115,.3);

}