/* Custom Fonts (opsional) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa; /* Warna latar belakang cerah */
}

/* Navbar Customization */
.navbar {
    background-color: rgba(110, 54, 54, 0.95); /* Sedikit transparan */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.navbar .navbar-brand {
    font-weight: 700;
    color: #ff6f61; /* Warna merah-oranye cerah */
    font-size: 1.5rem;
}

.navbar .nav-link {
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #ff6f61; /* Warna hover yang sama dengan brand */
}

/* Hero Banner */
.hero-banner {
    background: url('https://images.pexels.com/photos/1640777/pexels-photo-1640777.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay gelap */
}

.hero-banner .container {
    position: relative;
    z-index: 10;
}

.hero-banner h1 {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-banner .btn-warning {
    background-color: #ff9933; /* Oranye cerah */
    border-color: #ff9933;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.hero-banner .btn-warning:hover {
    transform: scale(1.05);
    background-color: #ff7e00;
    border-color: #ff7e00;
}

/* Menu Card Customization */
.menu-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-card img {
    height: 200px;
    object-fit: cover;
}

.menu-card .card-body {
    padding: 1.5rem;
}

.menu-card .card-title {
    font-weight: 600;
    color: #333;
}

.menu-card .card-text {
    color: #666;
}

.menu-card .btn-success {
    background-color: #25D366; /* Hijau WhatsApp */
    border-color: #25D366;
    transition: transform 0.3s ease;
}

.menu-card .btn-success:hover {
    transform: scale(1.05);
}

/* Filter Buttons */
.btn-outline-primary {
    color: #ff6f61;
    border-color: #ff6f61;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
    background-color: #ff6f61;
    color: white;
}

/* Carousel Promosi & Testimoni */
.carousel-item img {
    height: 400px;
    object-fit: cover;
    filter: brightness(0.8);
}

.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.2rem;
}

.testimonial-card cite {
    font-weight: 600;
    color: #ff6f61;
}

/* Footer Customization */
footer {
    background-color: #222;
}

footer li {
    margin-bottom: 0.5rem;
}

footer i {
    margin-right: 10px;
    color: #ff6f61;
}

/* Responsiveness */
@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .carousel-item img {
        height: 250px;
    }
}