

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== COLOR VARIABLES ===== */
:root {
    --orange: #E85D04;
    --orange-dark: #DC2F02;
    --green: #2D6A4F;
    --green-light: #40916C;
    --cream: #FFF3E0;
    --brown: #5C4033;
    --dark: #1B1B1B;
    --gray: #6B7280;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(27, 27, 27, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
    padding: 8px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.navbar-nav {
    display: flex;
    gap: 5px;
}

.navbar-nav .nav-link {
    color: #ccc;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white);
    background: var(--orange);
}

.btn-order {
    background: var(--orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-order:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-light {
    background: var(--white);
    color: var(--orange);
}

.btn-light:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
    background: var(--orange);
    color: var(--white);
}

.btn-sm:hover {
    background: var(--orange-dark);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1200&h=800&fit=crop') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,27,27,0.9) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 700px;
    padding: 100px 0;
}

.hero-badge {
    display: inline-block;
    background: var(--orange);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--orange);
}

.hero-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

.feature-item i {
    color: var(--orange);
    font-size: 1.1rem;
}

/* ===== CATEGORIES ===== */
.categories {
    padding: 40px 0;
    background: var(--cream);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.category-card {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.category-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.category-card p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: var(--cream);
    color: var(--orange);
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-badge.light {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1rem;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== MENU SECTION ===== */
.menu-section {
    padding: 80px 0;
    background: var(--white);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 24px;
    border: 2px solid #ddd;
    background: var(--white);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.menu-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-item.hidden {
    display: none;
}

.menu-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-img img {
    transform: scale(1.05);
}

.menu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
}

.menu-badge.hot { background: #FF4D4D; }
.menu-badge.new { background: #4CAF50; }
.menu-badge.best { background: #FF9800; }

.menu-info {
    padding: 20px;
}

.menu-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.menu-info p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.menu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange);
}

/* ===== PROMO SECTION ===== */
.promo-section {
    padding: 60px 0;
}

.promo-card {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    border-radius: var(--radius);
    padding: 50px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.promo-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.promo-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* ===== BEST SELLER SECTION ===== */
.best-seller-section {
    padding: 80px 0;
    background: var(--cream);
}

.best-seller-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.bs-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.bs-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.bs-rank {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.bs-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid var(--orange);
}

.bs-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.bs-item p {
    font-size: 0.85rem;
    color: var(--gray);
}

.testimoni-section {
    padding: 80px 0;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimoni-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimoni-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimoni-stars {
    color: #FFC107;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimoni-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimoni-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimoni-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimoni-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
}

.testimoni-author span {
    font-size: 0.8rem;
    color: var(--gray);
}

.lokasi-section {
    padding: 80px 0;
    background: var(--cream);
}

.lokasi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.lokasi-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    margin-top: 15px;
}

.lokasi-info p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 25px;
}

.lokasi-detail li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #555;
}

.lokasi-detail li i {
    color: var(--orange);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.lokasi-map img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.order-section {
    padding: 80px 0;
    background: var(--dark);
}

.order-section .section-header h2 {
    color: var(--white);
}

.order-section .section-header p {
    color: #ccc;
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.order-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--radius);
    color: var(--white);
    transition: var(--transition);
}

.order-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.order-card i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.order-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.order-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.order-card.whatsapp { background: #25D366; }
.order-card.gofood { background: #FF4D4D; }
.order-card.grabfood { background: #00B14F; }
.order-card.shopeefood { background: #EE4D2D; }

.footer {
    background: #111;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 0.9rem;
    color: #aaa;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #aaa;
}

.footer-contact ul li i {
    color: var(--orange);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #777;
}

.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.go-top.show {
    opacity: 1;
    visibility: visible;
}

.go-top:hover {
    background: var(--orange-dark);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .best-seller-grid { grid-template-columns: repeat(2, 1fr); }
    .order-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .navbar-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(27, 27, 27, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
    }
    
    .navbar-nav.show {
        transform: translateY(0);
    }
    
    .navbar-toggler { display: block; }
    
    .btn-order { display: none; }
    
    .hero-content h1 { font-size: 2.2rem; }
    
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    
    .menu-grid { grid-template-columns: 1fr; }
    
    .testimoni-grid { grid-template-columns: 1fr; }
    
    .lokasi-grid { grid-template-columns: 1fr; }
    
    .order-grid { grid-template-columns: repeat(2, 1fr); }
    
    .footer-grid { grid-template-columns: 1fr; }
    
    .best-seller-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .category-grid { grid-template-columns: 1fr 1fr; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; }
    .order-grid { grid-template-columns: 1fr; }
    .best-seller-grid { grid-template-columns: 1fr; }
}