/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    /* Ganti warna bengkel ke tema Restoran Malam */
    --primary-blue: #1a237e; /* Midnight Blue */
    --secondary-blue: #283593;
    --accent-orange: #ffc107; /* Gold / Makanan */
    --light-gray: #fdfbf7; /* Sedikit krem agar hangat */
    --dark-text: #2c3e50;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--light-gray);
    color: var(--dark-text);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-blue);
    border-bottom: 2px solid var(--accent-orange); /* Tambahan style aktif */
}

/* Tombol Musik */
.btn-music {
    padding: 8px 15px;
    border: 1px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-music:hover, .btn-music.playing {
    background: var(--primary-blue);
    color: white;
}

/* Hero Section */
.hero {
    /* Ganti background jadi nuansa restoran/malam */
    background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(0, 0, 0, 0.8)), url('https://source.unsplash.com/1600x900/?restaurant,dinner,food');
    background-size: cover;
    background-position: center;
    color: white;
    height: 450px; /* Sedikit lebih tinggi */
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    width: 100%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.typing-container {
    font-size: 1.2rem;
    margin-bottom: 30px;
    min-height: 1.5em;
    color: var(--accent-orange);
    font-weight: 600;
}

.cursor {
    animation: blink 1s infinite;
    color: white;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.btn-primary {
    background-color: var(--accent-orange);
    color: #000; /* Text hitam di tombol gold agar kontras */
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #ffca28;
    transform: translateY(-2px);
}

/* Form Section */
.form-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.form-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary-blue);
    transition: transform 0.3s;
}

.form-card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-blue);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #444;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #f9f9f9;
}

.form-control:focus {
    border-color: var(--primary-blue);
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.form-action {
    margin-top: 30px;
    text-align: center;
}

.btn-submit {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-submit:hover {
    background-color: var(--secondary-blue);
}

/* Footer */
.corporate-footer {
    background-color: #0d1b2a; /* Lebih gelap */
    color: #ccc;
    padding-top: 60px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-info h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.footer-contact h3 {
    color: var(--accent-orange);
    font-size: 1.8rem;
    margin: 5px 0;
    font-weight: 700;
}

.copyright {
    text-align: center;
    padding: 25px;
    font-size: 0.9rem;
    background-color: #050a10;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-menu.active { display: flex; }
    .nav-menu li { margin: 15px 0; }
    .hamburger { display: block; cursor: pointer; }
    .hamburger span { display: block; width: 25px; height: 3px; background: var(--primary-blue); margin: 5px 0; }
    .hero h1 { font-size: 2.2rem; }
}
