/* General Styling */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header and Navigation */
header {
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px; /* Jarak antara logo dan teks */
}

.logo img {
    height: 50px; /* Sedikit lebih besar untuk visibilitas */
    width: auto;
    transform: scale(1.7);
    margin-right: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-weight: bold;
    color: #d9232a; /* Warna Merah Khas Bensu */
    font-size: 1.2em;
}

.logo-text span {
    font-size: 0.8em;
    font-weight: normal;
    color: #555;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-bottom-color 0.3s;
}

nav ul li a:hover {
    color: #d9232a;
    border-bottom-color: #d9232a;
}

/* Banner Section */
.banner-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/img/banner1.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.banner-content h1 {
    font-size: 3.2em;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.banner-content p {
    font-size: 1.3em;
    margin-top: 10px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: 2.5em;
    color: #d9232a;
    margin-top: 0;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* Page Links Section */
.page-links {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.page-links h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #333;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.link-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-icon {
    background-color: #d9232a;
    padding: 30px;
}

.card-icon svg {
    width: 50px;
    height: 50px;
    fill: #ffffff;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
    color: #d9232a;
}

.card-content p {
    font-size: 1em;
    line-height: 1.6;
    margin: 0 0 20px 0;
    color: #555;
}

.card-content a {
    display: inline-block;
    text-decoration: none;
    background-color: #ffc400;
    color: #333;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.card-content a:hover {
    background-color: #e6b100;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 25px 0;
}

.footer-container p {
    margin: 0;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        justify-content: center;
        width: 100%;
    }

    nav ul li {
        margin: 0 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }

    .banner-content h1 {
        font-size: 2.5em;
    }

    .banner-content p {
        font-size: 1.1em;
    }
}

/* ===== Styling untuk Konten Baru ===== */

/* Judul Section Umum */
.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #333;
}

/* --- Bagian Keunggulan Kami --- */
.advantages-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.advantage-item .advantage-icon {
    margin-bottom: 20px;
}

.advantage-item .advantage-icon svg {
    width: 60px;
    height: 60px;
    fill: #d9232a; /* Warna merah bensu */
}

.advantage-item h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #333;
}

.advantage-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
}


/* --- Bagian Testimoni --- */
.testimonials-section {
    padding: 80px 0;
    background-color: #f4f4f4; /* Warna latar yang sama dengan body */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #ffc400; /* Aksen kuning bensu */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-card .quote {
    font-style: italic;
    color: #555;
    margin: 0 0 20px 0;
    line-height: 1.7;
}

.testimonial-card .quote::before {
    content: '"';
    font-size: 1.5em;
    color: #ffc400;
    margin-right: 5px;
}

.testimonial-card .author {
    font-weight: bold;
    text-align: right;
    color: #333;
    margin: 0;
}


/* --- Bagian Call to Action (CTA) --- */
.cta-section {
    padding: 60px 0;
    background-color: #d9232a; /* Warna merah bensu sebagai latar */
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #ffc400; /* Warna kuning bensu */
    color: #333;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s, background-color 0.3s;
}

.cta-button:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
}

/* Penyesuaian pada .page-links agar konsisten */
.page-links {
    background-color: #ffffff; /* Ganti jika sebelumnya abu-abu */
}

/* Penyesuaian pada about-us agar konsisten */
.about-us h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #d9232a;
    margin-top: 0;
}

/*
========================================
 STYLING UNTUK HALAMAN MENU
========================================
*/

/* Banner Khusus Halaman Menu */
.menu-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1574071318508-1cdbab80d002?q=80&w=2069&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    height: 40vh; /* Sedikit lebih pendek dari banner utama */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.menu-page-content {
    background-color: #f9f9f9; /* Warna latar yang lembut */
    padding-top: 1px;
    padding-bottom: 80px;
}

.menu-category {
    margin-top: 60px;
}

.category-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #d9232a; /* Garis bawah berwarna merah */
    display: inline-block; /* Agar border-bottom tidak full width */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Untuk posisi badge */
}

.menu-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.menu-item-card img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Agar gambar tidak gepeng */
}

.menu-item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Membuat konten memenuhi sisa ruang */
}

.menu-item-content h3 {
    font-size: 1.4em;
    color: #d9232a; /* Warna merah khas bensu */
    margin: 0 0 10px 0;
}

.menu-item-content .description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #555;
    flex-grow: 1; /* Mendorong harga ke bawah */
    margin-bottom: 15px;
}

.menu-item-content .price {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    text-align: right;
    margin-top: auto; /* Mendorong harga ke paling bawah */
    border-top: 1px dashed #eee;
    padding-top: 15px;
}

/* Badge untuk item terlaris */
.bestseller-badge {
    position: absolute;
    top: 15px;
    left: -1px;
    background-color: #ffc400; /* Warna kuning khas bensu */
    color: #333;
    padding: 6px 15px 6px 12px;
    font-size: 0.9em;
    font-weight: bold;
    border-radius: 0 20px 20px 0;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

/*
========================================
 STYLING UNTUK HALAMAN PROMOSI
========================================
*/

/* Banner Khusus Halaman Promo */
.promo-banner {
    background-image: linear-gradient(rgba(217, 35, 42, 0.8), rgba(217, 35, 42, 0.8)), url('/img/background-promo.jpg'); /* Ganti dengan gambar latar yang sesuai */
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.promo-banner h1 {
    font-size: 3em;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.promo-banner p {
    font-size: 1.3em;
    opacity: 0.9;
}

.promo-page-content {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.promo-page-content .section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #333;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default 1 kolom untuk mobile */
    gap: 40px;
}

/* Tampilan 2 kolom untuk layar lebih besar */
@media (min-width: 992px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.promo-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: scale(1.03);
}

.promo-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
}

.promo-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: -1px;
    color: white;
    padding: 8px 20px 8px 15px;
    font-weight: bold;
    font-size: 0.9em;
    border-radius: 20px 0 0 20px;
    box-shadow: -2px 2px 8px rgba(0,0,0,0.3);
}

.promo-badge.hot-deal { background-color: #d9232a; /* Merah */ }
.promo-badge.online-exclusive { background-color: #2a7decc4; /* Biru */ }
.promo-badge.limited-time { background-color: #e67e22; /* Oranye */ }

.promo-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.promo-content h3 {
    font-size: 1.8em;
    margin: 0 0 15px 0;
    color: #333;
}

.promo-content .promo-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.promo-details {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-bottom: 25px;
}

.promo-details .promo-validity {
    font-weight: bold;
    color: #d9232a;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.promo-details .promo-terms {
    list-style: disc;
    padding-left: 20px;
    font-size: 0.85em;
    color: #666;
    margin: 0;
}

.promo-cta-button {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #ffc400; /* Kuning */
    color: #333;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    margin-top: auto; /* Mendorong tombol ke bawah */
}

.promo-cta-button:hover {
    background-color: #e6b100;
}

/*
========================================
 STYLING UNTUK HALAMAN HUBUNGI KAMI
========================================
*/

/* Banner Khusus Halaman Kontak */
.contact-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/img/background-kontak.jpg'); /* Ganti dengan gambar latar yang sesuai */
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.contact-banner h1 {
    font-size: 3em;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.contact-banner p {
    font-size: 1.3em;
    opacity: 0.9;
}

.contact-page-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* Grid Informasi Kontak */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.contact-info-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.contact-info-card .info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d9232a; /* Merah */
}

.contact-info-card .info-icon svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.contact-info-card h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Formulir Kontak */
.feedback-section {
    background-color: #f9f9f9;
    padding: 60px;
    border-radius: 15px;
    margin-bottom: 80px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form .form-group {
    width: 100%;
}

.contact-form .full-width {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d9232a;
    box-shadow: 0 0 0 3px rgba(217, 35, 42, 0.2);
}

.contact-form textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #ffc400; /* Kuning */
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #e6b100;
}

/* Bagian Layanan Pesan Antar */
.delivery-section .section-title {
    margin-bottom: 40px;
}

.delivery-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px; /* Jarak antar logo diperbesar */
    flex-wrap: wrap;
}

.partner-logo {
    display: block;
}

.partner-logo img {
    height: 85px; /* TINGGI GAMBAR DIPERBESAR */
    max-width: 220px; /* Lebar maksimal disesuaikan */
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo img:hover {
    transform: scale(1.1);
}

/* Penyesuaian untuk Mobile */
@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
}