body {
    font-family: Arial, sans-serif;
}

.hero {
    background-color: #6f4e37;
    color: white;
    padding: 60px 20px;
}

.footer {
    background-color: #222;
    color: white;
    padding: 15px;
    margin-top: 50px;
}
.menu-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card .card-title {
    font-weight: bold;
    color: #6f4e37;
}

.menu-card .price {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: #333;
    font-size: 18px;
}

/* Custom Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

h1, h2, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* Hero Section Styling */
.hero-section {
    height: 80vh;
    /* Menggunakan overlay gelap agar teks mudah dibaca */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('assets/img/latte.jpg'); /* Ganti dengan gambar kopi yang bagus */
    background-size: cover;
    background-position: center;
}

.btn-warning {
    background-color: #d4a373;
    border: none;
    color: white;
}

.btn-warning:hover {
    background-color: #bc8a5f;
    color: white;
}

.navbar-dark .navbar-nav .nav-link {
    font-weight: 500;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}