/* ===== IMPORT FONT MONTSERRAT ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&display=swap');

/* ===== RESET & BASE ===== */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FBFBFB;
    color: #2D2D2D;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #2D2D2D;
}

.logo-text span {
    color: #7C9A7C;
}

.logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #999;
    letter-spacing: 3px;
    display: block;
    margin-top: -4px;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-weight: 600;
    font-size: 15px;
    color: #555;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7C9A7C;
    transition: width 0.3s;
}

nav a:hover {
    color: #7C9A7C;
}

nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #2D2D2D;
    border-radius: 3px;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #f0f5f0 0%, #e8efe8 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🍜';
    position: absolute;
    right: -50px;
    top: -50px;
    font-size: 300px;
    opacity: 0.1;
    transform: rotate(15deg);
    max-width: 100%;
    overflow: hidden;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2D2D2D;
}

.hero h1 span {
    color: #7C9A7C;
}

.hero p {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero .tagline {
    display: inline-block;
    background: #7C9A7C;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.hero .tagline .libur {
    color: #FFD700;
    font-weight: 800;
}

/* ===== BUTTON WHATSAPP ===== */
.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 999;
    pointer-events: auto;
}

.btn-wa:hover {
    background: #1da851;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-wa svg {
    width: 28px;
    height: 28px;
    fill: white;
    flex-shrink: 0;
}

/* ===== MENU SECTION ===== */
.menu-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title span {
    color: #7C9A7C;
}

.section-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
    font-size: 18px;
}

/* ===== CATEGORY TABS ===== */
.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 24px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    border-color: #7C9A7C;
    color: #7C9A7C;
}

.tab-btn.active {
    background: #7C9A7C;
    border-color: #7C9A7C;
    color: white;
}

/* ===== MENU GRID ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.menu-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f0f0f0;
}

.menu-item .info {
    padding: 20px;
}

.menu-item .info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.menu-item .info .desc {
    font-size: 14px;
    color: #888;
    margin-bottom: 12px;
    min-height: 40px;
}

.menu-item .info .price {
    font-size: 20px;
    font-weight: 700;
    color: #7C9A7C;
}

.menu-item .info .price small {
    font-size: 14px;
    font-weight: 400;
    color: #999;
}

.category-badge {
    display: inline-block;
    background: #f0f5f0;
    color: #7C9A7C;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* ===== FOTO MENU ===== */
.foto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.foto-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #e8efe8;
}

.foto-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: #7C9A7C;
}

.foto-item img {
    width: 100%;
    height: auto;
    display: block;
    background: #f0f5f0;
}

.foto-label {
    padding: 14px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: #2D2D2D;
    background: #f8faf8;
    border-top: 1px solid #e8efe8;
}

/* ===== BANNER MIE ===== */
.mie-banner {
    background: #f0f5f0;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    text-align: center;
    border-left: 4px solid #7C9A7C;
}

.mie-banner p {
    font-size: 15px;
    color: #2D2D2D;
}

.mie-banner strong {
    color: #2D2D2D;
}

.mie-banner .note {
    color: #888;
    font-size: 13px;
}

/* ===== SOSIAL MEDIA ===== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    color: white;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.social-links .wa {
    background: #25D366;
}

.social-links .wa:hover {
    background: #1da851;
}

.social-links .ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-links .ig:hover {
    opacity: 0.9;
}

.social-links svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-links .ig svg {
    fill: white;
}

/* ===== FOOTER ===== */
footer {
    background: #2D2D2D;
    color: #ccc;
    padding: 50px 0 30px;
    margin-top: 40px;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

footer h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}

footer p, footer li {
    font-size: 14px;
    line-height: 2;
}

footer ul {
    list-style: none;
}

footer .libur {
    color: #d9534f;
    font-weight: 700;
}

footer .footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 13px;
    color: #888;
}

footer .social-footer {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

footer .social-footer a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ccc;
    transition: color 0.3s;
    font-size: 14px;
}

footer .social-footer a:hover {
    color: #7C9A7C;
}

footer .social-footer svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

footer .social-footer .ig-link svg {
    fill: #E1306C;
}

footer .social-footer .ig-link:hover {
    color: #E1306C;
}

.footer-wa {
    color: #25D366 !important;
}

.footer-wa:hover {
    color: #1da851 !important;
}

.footer-wa svg {
    fill: currentColor;
}

/* ======================================== */
/* ===== RESPONSIVE - TABLET & HP ===== */
/* ======================================== */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
        cursor: pointer;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        border-radius: 0 0 16px 16px;
    }

    nav.open {
        display: flex;
    }

    nav a {
        padding: 14px 24px;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        color: #2D2D2D;
        border-bottom: 1px solid #f0f0f0;
        transition: background 0.3s;
        width: 100%;
    }

    nav a:hover {
        background: #f5f5f5;
    }

    nav a:last-child {
        border-bottom: none;
    }

    nav a::after {
        display: none;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 17px;
    }

    .section-title {
        font-size: 28px;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .logo-text {
        font-size: 22px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .btn-wa {
        font-size: 16px;
        padding: 12px 25px;
    }

    .btn-wa svg {
        width: 24px;
        height: 24px;
    }

    .foto-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .mie-banner p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .menu-item img {
        height: 90px;
    }

    .menu-item .info {
        padding: 8px 10px;
    }

    .menu-item .info h3 {
        font-size: 11px;
        margin-bottom: 2px;
        line-height: 1.2;
    }

    .menu-item .info .desc {
        font-size: 9px;
        min-height: 20px;
        margin-bottom: 4px;
        line-height: 1.2;
    }

    .menu-item .info .price {
        font-size: 12px;
    }

    .category-badge {
        font-size: 7px;
        padding: 1px 6px;
        margin-bottom: 3px;
        letter-spacing: 0.5px;
    }

    .foto-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .hero {
        padding: 30px 0;
    }

    .hero h1 {
        font-size: 22px;
    }

    .hero p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .tab-btn {
        padding: 4px 10px;
        font-size: 10px;
    }

    .tabs {
        gap: 4px;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .menu-section {
        padding: 20px 0;
    }

    .btn-wa {
        font-size: 12px;
        padding: 8px 16px;
        gap: 8px;
    }

    .btn-wa svg {
        width: 16px;
        height: 16px;
    }

    .mie-banner p {
        font-size: 10px;
    }

    .mie-banner {
        padding: 8px 10px;
        margin-bottom: 12px;
    }

    footer .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo img {
        height: 35px;
    }

    .container {
        padding: 0 12px;
    }

    .social-links a {
        padding: 8px 16px;
        font-size: 12px;
        gap: 6px;
    }

    .social-links svg {
        width: 18px;
        height: 18px;
    }

    nav a {
        padding: 12px 20px;
        font-size: 14px;
    }
}
