* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #f8f4ed;
    color: #2b2118;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    height: 80px;
    padding: 0 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #211710;
    color: white;

    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 3px;
    color: white;
}

.logo-text small {
    font-size: 11px;
    color: #d8b88a;
}

.navbar nav {
    display: flex;
    gap: 35px;
}

.navbar nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: #d8b88a;
}


/* =========================
   HERO
========================= */

.hero {
    height: 650px;
    padding: 0px 0%;
}

.slider {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    display: none;
    height: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(45%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;
    color: white;
    width: 90%;
}

.hero-content p {
    color: #d8b88a;
    font-size: 18px;
}

.hero-content h1 {
    font-size: 52px;
    margin: 15px 0;
}

.hero-content span {
    font-size: 17px;
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 13px 28px;

    background: #b47b42;
    color: white;

    text-decoration: none;
    border-radius: 3px;
}

.prev,
.next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    background: rgba(0,0,0,.4);
    border: none;

    color: white;
    font-size: 30px;

    padding: 10px 18px;
    cursor: pointer;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}


/* =========================
   SECTION
========================= */

section {
    padding: 90px 8%;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    color: #a66a32;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: bold;
}

.section-heading h2 {
    font-size: 36px;
    margin: 10px 0;
}

.section-heading p {
    color: #766b61;
}


/* =========================
   ABOUT
========================= */

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

.about-text h2 {
    font-size: 38px;
    margin: 15px 0 25px;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #665b51;
}


/* =========================
   MENU
========================= */

.menu {
    background: #eee5d8;
}

.menu-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.menu-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    transition: .3s;
}

.menu-card:hover {
    transform: translateY(-8px);
}

.menu-image {
    height: 220px;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-info {
    padding: 22px;
}

.menu-info h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.menu-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #766b61;
    margin-bottom: 15px;
}

.menu-info strong {
    color: #a66a32;
}


/* =========================
   GALLERY
========================= */

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #211710;
    color: white;
}

.footer-container {
    padding: 70px 8%;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand h2 {
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.footer-brand p,
.footer-info p {
    color: #c7bdb2;
    font-size: 14px;
    line-height: 1.8;
}

.footer-info h3 {
    margin-bottom: 15px;
    color: #d8b88a;
}

.copyright {
    border-top: 1px solid #44372d;
    padding: 20px 8%;
    text-align: center;
    color: #a99e94;
    font-size: 13px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .hero-content h1 {
        font-size: 38px;
    }

    .menu-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .navbar {
        padding: 0 5%;
    }

    .navbar nav {
        gap: 15px;
    }

    .navbar nav a {
        font-size: 13px;
    }

    .hero {
        height: 550px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .menu-container {
        grid-template-columns: 1fr;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

}
/* =========================
   MENU DETAIL
========================= */

.menu-detail {
    min-height: 650px;

    display: flex;
    align-items: center;

    padding: 100px 8%;

    background: #f8f4ed;
}


.menu-detail-container {

    width: 100%;
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}


/* GAMBAR */

.menu-detail-image {

    width: 100%;
    height: 500px;

    overflow: hidden;

    border-radius: 6px;
}


.menu-detail-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;

}


.menu-detail-image:hover img {

    transform: scale(1.05);

}


/* INFORMASI */

.menu-detail-info {

    padding: 20px 0;

}


.menu-detail-info h1 {

    font-size: 48px;

    margin: 15px 0 25px;

    color: #2b2118;

}


.menu-detail-description {

    font-size: 17px;

    line-height: 1.9;

    color: #766b61;

    margin-bottom: 30px;

}


.menu-detail-price {

    font-size: 28px;

    font-weight: bold;

    color: #a66a32;

    margin-bottom: 35px;

}


.back-button {

    display: inline-block;

    padding: 13px 25px;

    background: #211710;

    color: white;

    text-decoration: none;

    border-radius: 3px;

    transition: .3s;

}


.back-button:hover {

    background: #a66a32;

}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .menu-detail {

        padding: 70px 6%;

    }


    .menu-detail-container {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .menu-detail-image {

        height: 350px;

    }


    .menu-detail-info h1 {

        font-size: 36px;

    }

}