/* ======================================================
   RESET & BASE
====================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}
/* =========================
   MOBILE FIXED BACKGROUND
   ========================= */
.mobile-fixed-bg {
    position: fixed;
    inset: 0;
    z-index: -1;

    background-image: url('/assets/images/bgmobile.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* supaya teks kebaca */
    filter: brightness(0.45);
}


section {
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    border-radius: 16px;
    margin-bottom: 24px;
}

/* konten di atas background */
.page-content {
    position: relative;
    z-index: 1;
}


a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


/* ======================================================
   NAVBAR
====================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 30px;
    background: transparent;
    z-index: 100;
    transition:
        background 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.4s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo img {
    height: 45px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.08);
}


/* ======================================================
   DESKTOP NAVIGATION
====================================================== */
.nav-menu-desktop {
    display: flex;
    gap: 25px;
}

.nav-menu-desktop a {
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu-desktop a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: orange;
    transition: width 0.3s ease;
}

.nav-menu-desktop a:hover {
    color: orange;
}

.nav-menu-desktop a:hover::after {
    width: 100%;
}

/* SOCIAL DESKTOP */
.nav-social-desktop {
    display: flex;
    gap: 18px;
    margin-left: 25px;
}

.nav-social-desktop a {
    font-size: 18px;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.nav-social-desktop a:hover {
    color: orange;
    transform: translateY(-2px);
}


/* ======================================================
   HAMBURGER (MOBILE)
====================================================== */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}


/* ======================================================
   FULLSCREEN MENU OVERLAY (MOBILE)
====================================================== */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* CLOSE BUTTON */
.close-menu {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 34px;
    cursor: pointer;
}

/* OVERLAY MENU */
.overlay-menu {
    text-align: center;
}

.overlay-menu li {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
    animation-delay: calc(var(--i) * 0.12s);
}

.overlay-menu a {
    font-size: 34px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.overlay-menu a:hover {
    color: orange;
}

/* OVERLAY SOCIAL */
.overlay-social {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 25px;
}

.overlay-social a {
    font-size: 22px;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.overlay-social a:hover {
    color: orange;
    transform: translateY(-2px);
}


/* ======================================================
   HERO SECTION
====================================================== */
.hero {
    height: 100vh;
    background: url('/assets/images/background/cafe.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    color: orange;
}

.hero p {
    font-size: 18px;
    margin: 15px 0;
}

.btn {
    display: inline-block;
    background: orange;
    color: #000;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 5px;
    transition: opacity 0.3s ease;
}

.btn:hover {
    opacity: 0.85;
}


/* ======================================================
   ANIMATION
====================================================== */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================================================
   MENU SECTION
====================================================== */
.menu-section-home {
    padding: 100px 30px;
    background: #0e0e0e00;
}

.menu-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.menu-title {
    font-size: 40px;
    color: orange;
    margin-bottom: 10px;
}

.menu-subtitle {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 50px;
}

/* GRID */
.menu-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARD */
.menu-card {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* CONTENT */
.menu-content {
    padding: 20px;
    text-align: left;
}

.menu-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.menu-content p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 12px;
}

.price {
    font-size: 16px;
    font-weight: bold;
    color: orange;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .menu-title {
        font-size: 32px;
    }
}


/* ======================================================
   RESPONSIVE (MOBILE)
====================================================== */
@media (max-width: 768px) {

    /* NAVBAR */
    .nav-menu-desktop,
    .nav-social-desktop {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    /* HERO */
    .hero h1 {
        font-size: 36px;
    }

    /* OVERLAY */
    .overlay-menu a {
        font-size: 28px;
    }

    .close-menu {
        font-size: 30px;
        top: 25px;
        right: 30px;
    }
}

/* DETAIL OVERLAY */
.menu-card {
    position: relative;
    cursor: pointer;
}

.menu-overlay-detail {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    padding: 25px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    overflow-y: auto;
}

.menu-card:hover .menu-overlay-detail {
    opacity: 1;
    transform: translateY(0);
}

/* DETAIL CONTENT */
.menu-overlay-detail h3 {
    color: orange;
    font-size: 24px;
    margin-bottom: 15px;
}

.menu-overlay-detail .menu-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.menu-overlay-detail .price {
    color: orange;
    font-weight: bold;
}

.topping-title {
    margin-top: 15px;
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.8;
}

/* MOBILE CLICK SUPPORT */
@media (max-width: 768px) {
    .menu-card:hover .menu-overlay-detail {
        opacity: 0;
        transform: none;
    }

    .menu-card.active .menu-overlay-detail {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BUTTON MENU BOOK */
.btn-menu-book {
    display: inline-block;
    margin-bottom: 50px;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid orange;
    color: orange;
    font-weight: bold;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-menu-book:hover {
    background: orange;
    color: #000;
    transform: translateY(-2px);
}

.menu-book-item {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.menu-left img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.menu-center h3 {
    font-size: 18px;
}

.badge {
    background: orange;
    color: #000;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 8px;
    margin-left: 6px;
}

.price-list {
    margin-top: 8px;
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: orange;
}

.menu-book-list {
    display: none;
}

.menu-book-list.active {
    display: block;
}

/* TOGGLE CATEGORY */
.toggle-category {
    cursor: pointer;
    user-select: none;
    position: relative;
}

.toggle-category::after {
    content: '▾';
    position: absolute;
    right: -25px;
    transition: transform 0.3s ease;
}

.menu-book-category.active .toggle-category::after {
    transform: rotate(180deg);
}

.menu-book-list {
    display: none;
    margin-top: 20px;
}

.menu-book-category.active .menu-book-list {
    display: block;
}

/* ======================================================
   INDOMIE MENU (ISOLATED & SAFE)
====================================================== */

.indomie-section {
    background: #0e0e0e00;
    padding: 80px 5%;
    color: #fff;
}

/* TITLE */
.indomie-category {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    color: orange;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.indomie-desc {
    text-align: center;
    font-size: 14px;
    color: #bbb;
    margin-bottom: 45px;
}

/* GRID */
.indomie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

/* CARD */
.indomie-card {
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-align: center;
}

.indomie-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85);
}

/* IMAGE */
.indomie-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* TITLE */
.indomie-title {
    font-size: 16px;
    font-weight: 600;
    margin: 12px 10px 6px;
}

/* PRICE BADGE */
.indomie-price {
    display: inline-block;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ffb703, #ff8800);
    color: #000;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
}

/* ======================================================
   INDOMIE GRID - MOBILE 3 COLUMN
====================================================== */
@media (max-width: 768px) {
    .indomie-section{
        background: #0e0e0e00;
        padding: 10% 5% 0% 5%;
        color: #fff;
    }
    .indomie-grid {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
        gap: 12px;
    }

    .indomie-card img {
        height: 95px;
    }

    .indomie-title {
        font-size: 14px;
    }

    .indomie-price {
        font-size: 13px;
        padding: 4px 12px;
    }
}

/* ======================================================
   SEBLAK MENU (ISOLATED & SAFE)
====================================================== */

.seblak-section {
    background: #0e0e0e00;
    padding: 0px 5%;
    color: #fff;
}

/* TITLE */
.seblak-category {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    color: orange;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.seblak-desc {
    text-align: center;
    font-size: 14px;
    color: #bbb;
    margin-bottom: 45px;
}

/* GRID */
.seblak-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 18px;
    justify-content: center;
}

/* CARD */
.seblak-card {
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-align: center;
}

.seblak-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85);
}

/* IMAGE */
.seblak-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

/* TITLE */
.seblak-title {
    font-size: 16px;
    font-weight: 600;
    margin: 12px 10px 6px;
}

/* PRICE */
.seblak-price {
    display: inline-block;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ffb703, #ff8800);
    color: #000;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
}

/* MOBILE - 3 ITEM PER BARIS */
@media (max-width: 768px) {
    .seblak-section{
        padding: 15% 5% 0% 5%;
        background: #0e0e0e00;
    }
    .seblak-grid {
     grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .seblak-card img {
        height: 100px;
    }

    .seblak-title {
        font-size: 14px;
    }

    .seblak-price {
        font-size: 13px;
        padding: 4px 12px;
    }
}

/* EXTRA SMALL PHONE */
@media (max-width: 360px) {
    .seblak-card img {
        height: 90px;
    }

    .seblak-title {
        font-size: 13px;
    }
}

/* ======================================================
   PANGSIT MENU (ISOLATED & SAFE)
====================================================== */

.pangsit-section {
    background: #0e0e0e00;
    padding: 70px 5%;
    color: #fff;
}

/* TITLE */
.pangsit-category {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    color: orange;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.pangsit-desc {
    text-align: center;
    font-size: 14px;
    color: #bbb;
    margin-bottom: 45px;
}

/* GRID */
.pangsit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 18px;
    justify-content: center;
}

/* CARD */
.pangsit-card {
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-align: center;
}

.pangsit-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85);
}

/* IMAGE */
.pangsit-card img {
    width: 100%;
    height: 125px;
    object-fit: cover;
}

/* TITLE */
.pangsit-title {
    font-size: 16px;
    font-weight: 600;
    margin: 12px 10px 6px;
}

/* PRICE */
.pangsit-price {
    display: inline-block;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ffb703, #ff8800);
    color: #000;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
}

/* MOBILE - 3 ITEM PER BARIS */
@media (max-width: 768px) {
    .pangsit-section {
        background: #0e0e0e00;
        padding: 15% 5% 0% 5%;
        color: #fff;
    }
    .pangsit-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .pangsit-card img {
        height: 100px;
    }

    .pangsit-title {
        font-size: 14px;
    }

    .pangsit-price {
        font-size: 13px;
        padding: 4px 12px;
    }
}

/* EXTRA SMALL */
@media (max-width: 360px) {
    .pangsit-card img {
        height: 90px;
    }

    .pangsit-title {
        font-size: 13px;
    }
}

/* ======================================================
   NASI GORENG MENU (ISOLATED & SAFE)
====================================================== */

.nasgor-section {
    background: #0e0e0e00;
    padding: 90px 5%;
    color: #fff;
}

/* HEADER */
.nasgor-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: orange;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.nasgor-desc {
    text-align: center;
    font-size: 15px;
    color: #b5b5b5;
    margin-bottom: 45px;
}

/* GRID */
.nasgor-grid {
    display: flex;
    justify-content: center;
}

/* CARD */
.nasgor-card {
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border-radius: 24px;
    overflow: hidden;
    width: 720px;
    box-shadow: 0 25px 65px rgba(0,0,0,0.65);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.nasgor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 85px rgba(0,0,0,0.85);
}

/* IMAGE */
.nasgor-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

/* INFO */
.nasgor-info {
    padding: 32px 30px 36px;
    background: linear-gradient(70deg, #00000000, #565656);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* NAME */
.nasgor-name {
    font-size: 26px;
    font-weight: 600;
}

/* PRICE LIST */
.nasgor-price-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nasgor-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    font-size: 16px;
}
.nasgor-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nasgor-desc-row {
    margin: 0;
    font-size: 13px;
    color: #b5b5b5;
    line-height: 1.5;
}


.nasgor-label {
    color: #fff;
}

/* PRICE BADGE */
.nasgor-price {
    background: linear-gradient(135deg, #ffb703, #ff8800);
    color: #000;
    min-width: 58px;
    text-align: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
}

.nasgor-price.highlight {
    background: linear-gradient(135deg, #ffb703, #ff8800);
}

/* DIVIDER */
.nasgor-divider {
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,183,3,0.4),
        transparent
    );
}

/* ADD ON */
.nasgor-addon {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nasgor-subtitle {
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #aaa;
}

/* TOPPING */
.nasgor-topping {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nasgor-topping span:last-child {
    background: rgba(255, 183, 3, 0.15);
    color: #ffb703;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 13px;
    min-width: 50px;
    text-align: center;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 768px) {
    .nasgor-section{
    background: #0e0e0e00;
    padding: 22% 5% 0% 5%;
    color: #fff;
    }
    .nasgor-card {
        width: 100%;
    }

    .nasgor-image img {
        height: 220px;
    }

    .nasgor-name {
        font-size: 22px;
    }

    .nasgor-row {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .nasgor-image img {
        height: 190px;
    }

    .nasgor-info {
        padding: 22px;
        background: linear-gradient(70deg, #00000000, #565656);
    }
}

/* ======================================================
   PENYETAN MENU (INDOMIE STYLE CONCEPT)
====================================================== */

.penyetan-section {
    background: #0e0e0e00;
    padding: 80px 5%;
    color: #fff;
}

/* TITLE */
.penyetan-category {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    color:orange;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.penyetan-desc {
    text-align: center;
    font-size: 14px;
    color: #bbb;
    margin-bottom: 45px;
}

/* GRID */
.penyetan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

/* CARD */
.penyetan-card {
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.65);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-align: center;
}

.penyetan-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0,0,0,0.85);
}

/* IMAGE */
.penyetan-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* TITLE */
.penyetan-title {
    font-size: 16px;
    font-weight: 600;
    margin: 12px 10px 6px;
}

/* PRICE BADGE */
.penyetan-price {
    display: inline-block;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ffb703, #ff8800);
    color: #000000;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
}

/* ======================================================
   MOBILE – 3 COLUMN
====================================================== */
@media (max-width: 768px) {
    .penyetan-section {
    background: #0e0e0e00;
    padding: 20% 5% 0% 5%;
    color: #fff;
}

* 
    .penyetan-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .penyetan-card img {
        height: 95px;
    }

    .penyetan-title {
        font-size: 14px;
    }

    .penyetan-price {
        font-size: 13px;
        padding: 4px 12px;
    }
}

/* ======================================================
   BAKMIE JOWO MENU (INDOMIE STYLE CONCEPT)
====================================================== */

.bakmie-section {
    background: #0e0e0e00;
    padding: 80px 5%;
    color: #fff;
}

/* TITLE */
.bakmie-category {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    color:orange;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.bakmie-desc {
    text-align: center;
    font-size: 14px;
    color: #bbb;
    margin-bottom: 45px;
}

/* GRID */
.bakmie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

/* CARD */
.bakmie-card {
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.65);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-align: center;
}

.bakmie-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0,0,0,0.85);
}

/* IMAGE */
.bakmie-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* TITLE */
.bakmie-title {
    font-size: 16px;
    font-weight: 600;
    margin: 12px 10px 6px;
}

/* PRICE BADGE */
.bakmie-price {
    display: inline-block;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ffb703, #ff8800);
    color: #000;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
}

/* ======================================================
   MOBILE – 3 COLUMN
====================================================== */
@media (max-width: 768px) {
    .bakmie-section {
    background: #0e0e0e00;
    padding: 9% 5% 0% 5%;
    color: #fff;
}
    .bakmie-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .bakmie-card img {
        height: 95px;
    }

    .bakmie-title {
        font-size: 14px;
    }

    .bakmie-price {
        font-size: 13px;
        padding: 4px 12px;
    }
}
/* ======================================================
   ADD ON TOPPING (GLOBAL SECTION)
====================================================== */

.addon-section {
    background: #0e0e0e00;
    padding: 70px 5%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.addon-title {
    font-size: 30px;
    color: orange;
    margin-bottom: 6px;
}

.addon-desc {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 35px;
    text-align: center;
}

/* CARD */
.addon-card {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(145deg, #11111100, #1a1a1a);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 55px rgba(0,0,0,.65);
}

/* ROW */
.addon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255,255,255,.2);
    font-size: 16px;
}

.addon-row:last-child {
    border-bottom: none;
}

/* PRICE */
.addon-price {
    background: rgba(255, 183, 3, 0.15);
    color: #ffb703;
    padding: 5px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
}
@media (max-width: 768px) {
    .addon-section {
    background: #0e0e0e00;
    padding: 9% 5% 0% 5%;
    color: #fff;
}
}

.floating-category {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    transition:
        transform 0.35s cubic-bezier(.4,0,.2,1),
        opacity 0.25s ease;
    width: calc(100% - 32px);
    max-width: 520px;
    background: rgb(240 133 25);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    z-index: 999;
    padding: 8px 6px;
}
.floating-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;        /* Firefox */
    -ms-overflow-style: none;     /* IE */
}

.floating-scroll::-webkit-scrollbar {
    display: none;                /* Chrome */
}

.floating-scroll a {
    flex: 0 0 auto;               /* PENTING: agar tidak mengecil */
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgb(0 0 0);
    white-space: nowrap;
    transition: 0.3s ease;
}

.floating-scroll a:hover {
    background: linear-gradient(135deg, #ffb703, #ff8800);
    color: #000;
}
.floating-category.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(100px);
}
@media (min-width: 768px) {
    .floating-category {
        display: none !important;
    }
}
/* ======================================================
   KOPI MENU (ISOLATED & SAFE)
====================================================== */

.kopi-section {
    background: #0e0e0e00;
    padding: 90px 5%;
    color: #fff;
}

/* HEADER */
.kopi-header {
    text-align: center;
    margin-bottom: 45px;
}

.kopi-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffb703;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.kopi-desc {
    font-size: 15px;
    color: #b5b5b5;
}

/* GRID */
.kopi-grid {
    display: flex;
    justify-content: center;
}

/* CARD */
.kopi-card {
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border-radius: 24px;
    overflow: hidden;
    width: 720px;
    box-shadow: 0 25px 65px rgba(0,0,0,0.65);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.kopi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 85px rgba(0,0,0,0.85);
}

/* IMAGE */
.kopi-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
}

/* INFO */
.kopi-info {
    padding: 32px 30px 36px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* NAME */
.kopi-name {
    font-size: 26px;
    font-weight: 600;
}

/* DIVIDER */
.kopi-divider {
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,183,3,0.4),
        transparent
    );
}

/* LIST */
.kopi-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.kopi-subtitle {
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #aaa;
}

/* VARIAN */
.kopi-varian {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.kopi-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    font-size: 16px;
    gap: 12px;
}

/* PRICE */
.kopi-row .price {
    background: linear-gradient(135deg, #ffb703, #ff8800);
    color: #000;
    min-width: 58px;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 768px) {
    .kopi-section {
        padding: 15% 5% 0;
        background: #0e0e0e00;
    }

    .kopi-card {
        width: 100%;
    }

    .kopi-image img {
        height: 220px;
    }

    .kopi-name {
        font-size: 22px;
    }

    .kopi-row {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .kopi-image img {
        height: 190px;
    }

    .kopi-info {
        padding: 22px;
        background: linear-gradient(70deg, #00000000, #565656);
    }
}
/* ======================================================
   MILK BASED MENU
====================================================== */

.milk-section {
    background: #0e0e0e00;
    padding: 95px 5%;
    color: #fff;
}

.milk-header {
    text-align: center;
    margin-bottom: 45px;
}

.milk-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffb703;
}

.milk-desc {
    font-size: 15px;
    color: #b5b5b5;
}

/* GRID */
.milk-grid {
    display: flex;
    justify-content: center;
}

/* CARD */
.milk-card {
    width: 720px;
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 25px 65px rgba(0,0,0,0.65);
}

/* IMAGE */
.milk-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* INFO */
.milk-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.milk-name {
    font-size: 26px;
    font-weight: 600;
}

.milk-divider {
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,183,3,0.4),
        transparent
    );
}

/* LIST */
.milk-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ROW */
.milk-row {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 14px;
}

/* THUMB (kotak merah → gambar minuman) */
.milk-thumb {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.milk-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LABEL */
.milk-label {
    font-size: 16px;
}

/* PRICE */
.milk-price {
    background: linear-gradient(135deg, #ffb703, #ff8800);
    color: #000;
    min-width: 58px;
    padding: 6px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 768px) {
    .milk-card {
        width: 100%;
    }

    .milk-image img {
        height: 220px;
    }

    .milk-name {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .milk-info {
        padding: 22px;
        background: linear-gradient(70deg, #00000000, #565656);
    }

    .milk-row {
        grid-template-columns: 44px 1fr auto;
    }

    .milk-thumb {
        width: 40px;
        height: 40px;
    }
}
/* ======================================================
   DRINK MENU (PREMIUM LIST STYLE)
====================================================== */
/* ================================
   KOPI & MILK SIDE BY SIDE
================================ */

.drink-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Desktop optimasi */
@media (min-width: 1024px) {
    .kopi-card,
    .milk-card {
        width: 100%;
    }
}

/* Mobile & Tablet */
@media (max-width: 1023px) {
    .drink-duo {
        grid-template-columns: 1fr;
    }
}

.drink-section{
    background: #0e0e0e00;
    padding: 0px 5%;
    color: #fff;
}
.drink-title {
    font-size: 16px;
    font-weight: 600;
    margin: 12px 10px 6px;
    color: orange;
}
.drink-grid {
    display: flex;
    justify-content: center;
}
.drink-desc {
    text-align: center;
    font-size: 14px;
    color: #bbb;
    margin-bottom: 45px;
}

/* CARD */
.drink-card {
    width: 100%;
    background: linear-gradient(70deg, #00000000, #565656);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 55px rgba(0,0,0,.65);
    color: #fff;
}

/* CATEGORY TITLE */
.drink-category {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: orange;
}

/* DIVIDER (TETAP ADA & DIPERINDAH) */
.drink-divider {
    height: 1px;
    margin-bottom: 18px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,183,3,0.5),
        transparent
    );
}

/* LIST */
.drink-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ROW */
.drink-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0;
    border-bottom: 1px dashed rgba(255,255,255,.2);
    font-size: 16px;
}

.drink-row:last-child {
    border-bottom: none;
}

/* NAME */
.drink-name {
    color: #fff;
}

/* PRICE BADGE */
.drink-price {
    background: rgba(255, 183, 3, 0.15);
    color: #ffb703;
    padding: 5px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
}

/* ACCORDION WRAPPER */
.accordion {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ITEM */
.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* HEADER */
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;

    font-size: 15px;
    font-weight: 600;
    color: #ffffff;

    transition: color 0.25s ease;
}

.accordion-header:hover {
    color: #f5a623;
}

/* RIGHT AREA (JUMLAH + ICON) */
.accordion-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* JUMLAH */
.accordion-header small {
    font-size: 13px;
    font-weight: 500;
    color: #f5a623;
}

/* CHEVRON ICON */
.chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid #f5a623;
    border-bottom: 2px solid #f5a623;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* ROTATE SAAT ACTIVE */
.accordion-item.active .chevron {
    transform: rotate(-135deg);
}

/* BODY */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

/* LIST */
.accordion-body ul {
    list-style: none;
    padding: 6px 0 14px;
    margin: 0;
}

/* ITEM PRODUK */
.accordion-body li {
    font-size: 14px;
    padding: 6px 0;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.88);

    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.accordion-body li:last-child {
    border-bottom: none;
}

/* ACTIVE */
.accordion-item.active .accordion-body {
    max-height: 260px;
    overflow-y: auto;
}

/* SCROLLBAR (MINIMAL & DARK) */
.accordion-body::-webkit-scrollbar {
    width: 4px;
}

.accordion-body::-webkit-scrollbar-thumb {
    background: rgba(245, 166, 35, 0.6);
    border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .drink-card {
        padding: 30px 18px 32px;
        background: linear-gradient(70deg, rgba(0,0,0,0.4), rgba(86,86,86,0.6));
    }

    .accordion-header {
        font-size: 14.5px;
    }

    .accordion-body li {
        font-size: 13.5px;
    }
}


/* ======================================================
   BLOG PAGE (ARTICLE BASED)
====================================================== */

.blog-section {
    background: #0e0e0e00;
    padding: 90px 5%;
    color: #fff;
}

/* HEADER */
.blog-header {
    text-align: center;
    margin-bottom: 45px;
}

.blog-title {
    font-size: 36px;
    font-weight: 700;
    color: orange;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.blog-desc {
    font-size: 15px;
    color: #b5b5b5;
}

/* GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* CARD */
.blog-card {
    background: #111;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0,0,0,0.65);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 85px rgba(0,0,0,0.85);
}

/* IMAGE */
.blog-thumb img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

/* CONTENT */
.blog-content {
    padding: 22px;
}

.blog-date {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 6px;
}

.blog-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-excerpt {
    font-size: 14px;
    color: #bbb;
    line-height: 1.55;
    margin-bottom: 14px;
}

/* READ MORE */
.blog-link {
    font-size: 14px;
    font-weight: 600;
    color: orange;
    text-decoration: none;
}

.blog-link:hover {
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
    .blog-section {
        padding: 20% 5% 0;
    }

    .blog-thumb img {
        height: 160px;
    }

    .blog-name {
        font-size: 16px;
    }
}

/* ======================================================
   CONTACT SECTION (ISOLATED)
====================================================== */

.contact-section {
    background: #0e0e0e;
    padding: 100px 5%;
    color: #fff;
}

/* HEADER */
.contact-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: orange;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-desc {
    font-size: 15px;
    color: #b5b5b5;
    line-height: 1.6;
}

/* WRAPPER */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: auto;
}

/* INFO */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-item {
    background: #111;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.contact-label {
    display: block;
    font-size: 14px;
    color: orange;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-item p,
.contact-link {
    font-size: 15px;
    color: #ddd;
}

.contact-link {
    color: orange;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

/* FORM */
.contact-form {
    background: #111;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(0,0,0,0.7);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #ccc;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: #0e0e0e;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: orange;
}

/* BUTTON */
.contact-btn {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    background: orange;
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* ======================================================
   MOBILE
====================================================== */
@media (max-width: 768px) {

    .contact-section {
        padding: 20% 5% 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-title {
        font-size: 30px;
    }
}

