@import url('https://fonts.googleapis.com/css2?family=Delius&display=swap');

:root {
    --font-title: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-title: "Playfair Display", serif;
    --font-body: "Inter", system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
    scroll-behavior: smooth;
}

/* NAVBAR WRAPPER */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 64px;

    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);

    border-radius: 100px;
    z-index: 1000;

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.35);
}

/* INNER LAYOUT */
.navbar-inner {
    height: 100%;
    padding: 0 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

/* LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #e5e5e5;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.25s ease;
}

/* HOVER EFFECT */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #ffb703;
    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: #ffb703;
}

.nav-links a:hover::after {
    width: 100%;
}

/* --------------------------
   MOBILE SIDEBAR <= 768px
   -------------------------- */
@media (max-width: 768px) {

    .navbar {
        width: 100%;
        left: 0;
        top: 0;
        transform: none;
        border-radius: 0;
        padding: 0 20px;
        height: 60px;
    }

    .navbar-inner {
        justify-content: space-between;
    }

    /* HIDE LINKS UNTIL OPEN */
    .nav-links {
        position: fixed;
        top: 0;
        left: -50%;
        /* start hidden di kiri */
        width: 50%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding-top: 80px;
        gap: 20px;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-links li {
        text-align: left;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 10px 20px;
    }

    /* BURGER BUTTON */
    .burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        cursor: pointer;
    }

    .burger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #fff;
        border-radius: 3px;
    }

    /* ACTIVE STATE SIDEBAR OPEN */
    .nav-links.active {
        left: 0;
    }
}

.home {
    height: 100vh;
    width: 100%;
    background: url('image/background1.png') no-repeat center;
    background-size: cover;
}

.home-content {
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;

    /* background-color: aquamarine; */
}

.home-content h1 {
    align-self: flex-start;
    /* ini kuncinya */
    text-align: left;

    font-family: var(--font-title);
    font-size: clamp(10rem, 20vw, 15rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 16px;
    text-shadow:
        0 4px 12px rgba(0, 0, 0, 0.726);
}

@media (max-width: 768px) {
    .home-content {
        width: 100%;
        padding: 0 16px;
    }

    .home-content h1 {
        font-size: 3.2rem;
        line-height: 1.15;
    }
}




/* menu */
.menu {
    height: 100vh;
    width: 100%;
    background-color: rgb(255, 255, 255);

}

.menu-judul {
    height: 20%;
    padding: 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;


}

.menu-judul h2 {
    
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.2px;
}

.list-menu {
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #181b256b, #b89f30);
    box-shadow: 0 -20px 90px rgba(0, 0, 0, 0.589);
    border-radius: 100px 100px 0 0;
}

.menu-content {
   
    position: relative;
    width: 20%;
    height: 70%;
    background-color: #2f2f2f;
    margin: 16px;
    margin-top: 80px;
    border-radius: 50px 0 50px 0px;
    padding-top: 120px;
    /* ruang untuk gambar */
    overflow: visible;
    box-shadow: 30px 70px 22px rgba(0, 0, 0, 0.596);
}

.menu-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
}

.menu-image img {
    width: 100%;
    display: block;
    border-radius: 50%;
}

.menu-text {
    height: 95%;
    padding: 26px 26px 32px;
    gap: 14px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.menu-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.2px;
}

.menu-text p {
    font-family: "Delius", cursive;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #cfcfcf;
    max-width: 95%;
}
.menu-text .harga {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffdd57;
    margin-top: auto;
}

.btn-order {
    margin-top: auto;
    position: relative;
    display: inline-block;
    bottom: 1px;
    padding: 10px 22px; 
    background: linear-gradient(135deg, #2b59ff, #e9bf07);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;

    transition: all 0.3s ease;

}

.btn-order:hover {
    background: linear-gradient(135deg, #ffe98a, #8da5ff);
    box-shadow: 0 8px 20px rgba(7, 5, 5, 0.74);
}

@media (max-width: 1024px) {

    .menu {
        height: auto;
        /* penting: biar tidak nabrak about */

    }

    .list-menu {
        height: auto;
        padding: 80px 20px 60px;
        border-radius: 60px 60px 0 0;
    }

    .menu-content {
        width: 45%;
        height: auto;
        padding-top: 100px;
    }

    .menu-image {
        width: 260px;
    }
}

@media (max-width: 768px) {

    .menu-judul h2 {
        font-size: 2rem;
    }

    .list-menu {
        height: auto;
        flex-direction: column;
        padding: 100px 16px 60px;
        border-radius: 48px 48px 0 0;
    }

    .menu-content {
        
        width: 90%;
        margin-bottom: 80px;
        padding-top: 90px;
        border-radius: 36px 0 36px 0;
    }

    .menu-image {
        width: 220px;
    }

    .menu-text h2 {
        font-size: 1.3rem;
        text-align: center;
    }

    .menu-text p {
        font-size: 0.88rem;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .menu-image {
        width: 180px;
    }

    .menu-content {
        padding-top: 80px;
    }

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

.about {
    height: 100vh;
    width: 100%;
    background: url('image/background3.png') no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {

    /* penting */
    background-image: url('image/paper-texture.svg');
    width: 70%;
    height: 90%;
    background-repeat: no-repeat;
    /* kunci utama */
    background-position: center;
    /* posisikan di tengah */
    background-size: contain;

    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.about-text {
    width: 80%;
    height: 80%;
}

.about-container h2 {
    font-family: 'Delius', cursive;
    font-size: 2rem;
    margin-bottom: 20px;
    padding-bottom: 14px;
    color: #2b2b2bc7;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.253);
}

.about-container p {

    font-family: 'Delius', cursive;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 18px;
    color: #2b2b2b;
}

.about-container::after {
    content: "";
    position: absolute;
    inset: 0;

    z-index: 0;
}

@media (max-width: 1024px) {
    .about {
        height: auto;
        /* penting: biar tidak nabrak about */
    }
    .about-container {
        /* container lebih lebar untuk mobile */
        height: auto;
        /* tinggi menyesuaikan konten */
        flex-direction: column;
        /* vertical stack */
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px;
        /* beri padding agar tidak mepet */
        background-size: cover;
        /* background tetap terlihat */
    }

    .about-text {
        margin-top: 10vh;
        width: 100%;
        height: auto;
        text-align: center;
        /* teks lebih rapi di tengah */
    }

}

@media (max-width: 768px) {
.about {
        height: auto;
        /* penting: biar tidak nabrak about */
    }
    .about-container {
        width: 90%;
        /* container lebih lebar untuk mobile */
        height: auto;
        /* tinggi menyesuaikan konten */
        flex-direction: column;
        /* vertical stack */
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px;
        /* beri padding agar tidak mepet */
        background-size: cover;
        /* background tetap terlihat */
    }

    .about-text {
        margin-top: 20vh;
        width: auto;
        height: auto;
        text-align: center;
        /* teks lebih rapi di tengah */
    }

    .about-container h2 {
        font-size: 1.6rem;
        /* lebih kecil agar muat layar */
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .about-container p {
        font-size: 0.95rem;
        /* lebih nyaman dibaca */
        line-height: 1.6;
        margin-bottom: 12px;
    }

    /* Hilangkan pseudo-element jika mengganggu di mobile */
    .about-container::after {
        display: none;
    }
}

/* ================= CONTACT SECTION ================= */
.contact {
    padding: 100px 20px;
    background-image: url('image/background4.svg');
    display: flex;
    justify-content: end;
    align-items: end;
    background-size: cover;

}

/* Card utama */
.contact-card {
    width: 100%;
    max-width: 820px;
    padding: 48px 40px;

    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

/* Judul */
.contact-card h2 {
    font-family: var(--font-title, 'Segoe UI', sans-serif);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #eeeeee;
}

/* Deskripsi */
.contact-card p {
    font-size: 1rem;
    color: #ebebeb;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Wrapper card kecil */
.contact-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card kecil */
.contact-item {
    background-color: #f5f6fa;
    border-radius: 18px 0 18px 18px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-items a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
/* Icon */
.contact-item img {
    width: 40px;
    height: 40px;
}

/* Text icon */
.contact-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2b2b2b;
}

/* Hover effect */
.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(255, 255, 255, 0.74);
}

/* Responsive */
@media (max-width: 640px) {
    .contact-items {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 36px 24px;
    }
}

.contact-item i {
    font-size: 36px;
    color: #2b59ff;
}

/* Warna khas tiap platform */
.contact-item:nth-child(1) i {
    color: #25D366;
    /* WhatsApp */
}

.contact-item:nth-child(2) i {
    color: #E1306C;
    /* Instagram */
}

.contact-item:nth-child(3) i {
    color: #EA4335;
    /* Gmail */
}