:root {
    --warna-utama: #ff4d6d; /* Pink kemerahan */
    --warna-gelap: #2b2d42;
    --warna-putih: #ffffff;
    --warna-bg: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--warna-bg);
    color: var(--warna-gelap);
    scroll-behavior: smooth;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: var(--warna-putih);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span { color: var(--warna-utama); }

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { text-decoration: none; color: var(--warna-gelap); font-weight: 500; }

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1200x600');
    background-size: cover;
    color: white;
    padding: 0 20px;
}

.hero h1 { font-size: 3rem; margin-bottom: 10px; }

.btn-utama {
    display: inline-block;
    padding: 12px 30px;
    background: var(--warna-utama);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 20px;
    transition: 0.3s;
}

.menu-container { padding: 50px 5%; text-align: center; }
.grid-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    position: relative;
}

.card:hover { transform: translateY(-10px); }
.card img { width: 100%; border-radius: 10px; margin-bottom: 15px; }
.harga { display: block; font-size: 1.2rem; font-weight: bold; color: var(--warna-utama); margin: 10px 0; }

.btn-pesan {
    width: 100%;
    padding: 10px;
    border: none;
    background: var(--warna-gelap);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-pesan:hover { background: var(--warna-utama); }

.cara-pesan { background: #fff; padding: 60px 10%; text-align: center; }
.langkah-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.langkah { flex: 1; min-width: 200px; padding: 20px; }
.langkah i { font-size: 2.5rem; color: var(--warna-utama); margin-bottom: 15px; }

.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
}

footer { text-align: center; padding: 30px; background: var(--warna-gelap); color: white; }