:root {
    --bg-color: #121212;          /* Deep dark street background */
    --text-color: #ffffff;        /* White text for dark sections */
    --text-dark: #222222;         /* Dark text inside menu cards */
    --text-muted: #666666;        /* Slate text for descriptions */
    --primary-color: #ffb703;     /* Vibrant webshop orange-yellow color */
    --accent-color: #e30613;      /* Accent red */
    --card-bg: #ffffff;           /* Clean white menu item cards */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Segoe UI', Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Hero Header Area */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(18, 18, 18, 1)), 
                url('https://images.unsplash.com/photo-1569058242253-92a9c755a0ec?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 60px 20px 40px 20px;
}

header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

header p {
    font-size: 1.3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Main Layout Container */
.container {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}

/* Main Section Title Styling */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 3px;
}

/* Category Headers */
.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

/* Flexbox/Grid Layout Systems */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Individual Menu Item Cards */
.menu-card {
    background-color: var(--card-bg);
    color: var(--text-dark);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease; /* Kaart beweegt niet meer, krijgt alleen subtiele gloed */
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Houdt de zoomende afbeelding netjes binnen de kaart */
}

/* Alleen extra schaduw/gloed bij hover, geen beweging van de kaart */
.menu-card:hover {
    box-shadow: 0 15px 30px rgba(255, 183, 3, 0.25);
}

/* Product Card Images met vloeiende zoom-animatie */
.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #222;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Vloeiende overgang voor de zoom */
}

/* ALLEEN DE AFBEELDING ZOOMT NU (scale 1.12) */
.menu-card:hover .card-image {
    transform: scale(1.12);
}

.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.menu-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Card Bottom Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eeeeee;
}

.price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Order Interaction Buttons */
.order-btn {
    background-color: var(--primary-color);
    color: #121212; 
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 4px 10px rgba(255, 183, 3, 0.2);
}

.order-btn:hover {
    background-color: #e0a102;
    transform: scale(1.05);
}

/* Business Info Component Layout */
.info-section {
    background-color: #1e1e1e;
    padding: 60px 0;
    margin-top: 60px;
    border-top: 1px solid #2a2a2a;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.info-column {
    flex: 1;
    min-width: 280px;
}

.info-column h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.info-column p {
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 6px;
}

/* Review Stars formatting */
.rating-stars {
    margin-top: 25px;
    margin-bottom: 5px;
}

.star {
    font-size: 1.5rem;
    margin-right: 2px;
}

.star.gold {
    color: #ffffff; 
}

.star.grey {
    color: #555555;
}

.review-count {
    font-size: 0.9rem !important;
    color: #777777 !important;
}

/* Time table grid styling lists */
.time-list {
    list-style: none;
}

.time-list li {
    display: flex;
    justify-content: space-between;
    padding: 6px 12px;
    color: #999999;
    font-size: 0.95rem;
    border-radius: 4px;
}

.time-list li span:first-child {
    color: #b0b0b0;
}

/* Highlight style for the day of today */
.time-list li.today-highlight {
    background-color: #444444;
    color: #ffffff;
}

.time-list li.today-highlight span:first-child {
    color: #ffffff;
    font-weight: bold;
}

/* Footer Section Area */
footer {
    text-align: center;
    padding: 50px 20px;
    background-color: #0a0a0a;
    color: #888888;
    margin-top: 80px;
    border-top: 1px solid #1a1a1a;
    font-size: 0.95rem;
}

footer a {
    font-weight: 700;
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* Responsive collapse rule */
@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* STYLING VOOR DE GEAUTOMATISEERDE VAKANTIEBANNER (EXTRA OPVALLEND & 2X ZO HOOG) */
.vacation-banner {
    background-color: #ffb703; /* Je opvallende, heldere merkkleur */
    color: #121212;            /* Diepzwart voor maximaal contrast en leesbaarheid */
    padding: 30px 20px;        /* 2x zo hoog gemaakt (van 12px naar 30px padding boven en onder) */
    font-weight: 800;          /* Extra dikgedrukte letters */
    text-align: center;
    font-size: 1.4rem;         /* Flink grotere tekst (was 1.05rem) */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 3px solid #ffffff;
    position: relative;
    z-index: 2000;
}

.vacation-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

/* Zorg dat de taalwissel-knop netjes meezakt met de grotere banner */
.vacation-banner + .lang-switch {
    top: 115px; /* Aangepast aan de nieuwe hoogte */
}

/* Responsive optimalisatie voor mobiele schermen */
@media (max-width: 768px) {
    .vacation-banner {
        font-size: 1.15rem;     /* Iets compacter op mobiel zodat het mooi past */
        padding: 24px 15px;
    }
    .vacation-banner + .lang-switch {
        top: 135px;
    }
}