@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

:root {
    --h1: 76px;
    --h2: 56px;
    --h3: 42px;
    --h4: 28px;
    --h5: 26px;
    --h6: 22px;
    --standaard: 18px;

    --rood: #f44749;
    --geel: #f3af24;
    --grijs: #F9F9F9;
    --blauw: #0dcaf0;
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }
h5 { font-size: var(--h5); }
h6 { font-size: var(--h6); }

body {
    font-size: var(--standaard);
}

.container {
    width: 1400px;
    margin: 0 auto;
}

/* Navigation */
nav {
    background-color: white;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    position: relative;
}

nav > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

nav .logo {
    font-size: var(--h5);
    color: black;
    text-decoration: none;
    font-weight: bold;
}

nav .logo:hover {
    color: var(--rood);
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    padding: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: grey;
    font-size: var(--standaard);
}

nav ul li a:hover,
nav ul li a.actief {
    color: var(--rood);
}

.button {
    color: white;
    border: none;
    background-color: var(--rood);
    border-radius: 4px;
    padding: 10px 35px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

/* Hamburger-menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background-color: black;
    margin: 5px 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
    url('../video/production_ID_3769033.gif');
    width: 100%;
    height: 650px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-around; /* Aangepast: items naast elkaar */
    text-align: center;
    width: 100%;
}

.left-hero {
    color: white;
    width: 40%; /* Aangepast: vaste breedte */
}

.right-hero {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6)), 
    url('../images/slide/jay-wennington-N_Y88TWmGwA-unsplash.jpg');
    height: 500px;
    width: 800px;
    background-size: cover; 
    padding-left: 40px;
    padding-bottom: 85px;
    align-content: flex-end;
}

.fa-star, .fa-star-o {
    color: var(--geel);
}

.left-hero span {
    font-size: var(--standaard);
}

.img-div {
    display: flex;
    color: white;
    flex-direction: column;
    text-align: center;
}

.fa-map-marker {
    margin-right: 10px;
}

.text-container {
    display: flex;
    flex-direction: column; /* Zet de tekst onder elkaar */
    align-items: flex-start; /* Uitlijnen naar links */
}


.read-more-button {
    display: inline-block;
    padding: 10px 35px;
    background-color: var(--rood);
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

#Juul {
    color: white;
}

/* Special Items */
.specialItems {
    text-align: center;
    margin-top: 40px;
}

.specialItems h2 {
    font-size: var(--h4);
    font-weight: bold;
    color: black;
    background: white;
    padding: 10px 15px;
    display: inline-block;
    border-radius: 5px;
}

/* Mobiele navigatie verbetering */
@media screen and (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }

    nav {
        height: auto;
        padding: 10px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    /* Zorg ervoor dat de navigatie-items op mobiel goed gestapeld worden */
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px 0; /* Padding voor meer ruimte */
        border-radius: 8px; /* Ronde hoeken voor een mooiere uitstraling */
    }

    /* Wanneer de hamburger open is, toon de items */
    nav ul.active {
        display: flex;
    }

    nav ul li {
        text-align: center;
        padding: 15px 0; /* Meer padding voor een betere klikbare ruimte */
        border-bottom: 1px solid #ddd;
        font-size: var(--standaard); /* Maak de lettergrootte iets kleiner */
    }

    nav ul li:last-child {
        border-bottom: none; /* Verwijder de onderste rand van het laatste item */
    }

    nav ul li a {
        color: grey;
        font-size: var(--standaard); /* Zelfde kleinere lettergrootte voor de links */
        text-decoration: none;
        transition: color 0.3s ease; /* Vervagingseffect voor hover */
    }

    nav ul li a:hover,
    nav ul li a.actief {
        color: var(--rood);
    }

    /* Hamburger knop */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        margin-left: 10px; /* Voeg marge toe om de knoppen verder uit elkaar te plaatsen */
    }

    .hamburger div {
        width: 30px;
        height: 3px;
        background-color: black;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    /* Effect voor wanneer het menu geopend is */
    nav ul.active + .hamburger div {
        transform: rotate(45deg);
        background-color: var(--rood);
    }

    nav ul.active + .hamburger div:nth-child(2) {
        opacity: 0; /* Verberg het middelste balkje van de hamburger */
    }

    nav ul.active + .hamburger div:nth-child(3) {
        transform: rotate(-45deg);
        background-color: var(--rood);
    }

    /* Reserveren knop (als het een aparte knop is) */
    .button {
        margin-right: 20px; /* Voeg marge toe aan de rechterkant om de knoppen verder uit elkaar te plaatsen */
    }

    /* Hero sectie aanpassingen voor mobiel */
    .hero {
        height: auto;
        padding: 40px 0;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .right-hero {
        margin-top: 10px;
        width: 100%;
        height: 250px;
        padding: 20px;
    }

    .specialItems h2 {
        font-size: var(--h5);
        width: 100%;
        display: block;
        background: none;
        padding: 5px 10px;
    }

    /* Nieuws & Events aanpassingen voor mobiel */
    .Nieuws-Events .container {
        flex-direction: column;
    }

    .img {
        flex-direction: column;
    }

    .foot-container {
        flex-direction: column;
        text-align: center;
    }

    /* Zet sterren op één regel */
    .stars-row,
    .left-hero .fa-star,
    .left-hero .fa-star-o {
        display: inline-block;
        margin-right: 2px;
        vertical-align: middle;
    }
}

/* Media query voor schermen met een maximale breedte van 425px */
@media screen and (max-width: 425px) {
    /* Algemene aanpassingen */
    .container {
        width: 100%;
        padding: 0 10px; /* Kleinere padding voor meer ruimte */
    }

    /* Navigatie */
    nav {
        height: auto;
        padding: 10px; /* Kleinere padding */
    }

    nav .logo {
        font-size: var(--h6); /* Kleinere logo-grootte */
    }

    nav ul {
        padding: 10px 0; /* Kleinere padding voor mobiele navigatie */
    }

    nav ul li {
        padding: 10px 0; /* Kleinere padding voor navigatie-items */
    }

    nav ul li a {
        font-size: 16px; /* Kleinere tekstgrootte voor navigatielinks */
    }

    .hamburger {
        margin-left: 5px; /* Kleinere marge voor de hamburger-knop */
    }

    .hamburger div {
        width: 25px; /* Kleinere hamburger-iconen */
        height: 2px;
    }

    /* Hero Sectie */
    .hero {
        height: auto;
        padding: 20px 0; /* Kleinere padding */
    }

    .left-hero h1 {
        font-size: 42px; /* Kleinere h1-grootte */
    }

    .left-hero span {
        font-size: 16px; /* Kleinere tekstgrootte */
    }

    .right-hero {
        height: 200px; /* Kleinere hoogte voor de rechter sectie */
        padding: 10px; /* Kleinere padding */
    }

    .img-div h3 {
        font-size: 20px; /* Kleinere tekstgrootte */
    }

    .read-more-button {
        padding: 8px 25px; /* Kleinere knop */
        font-size: 12px; /* Kleinere tekstgrootte voor de knop */
    }

    /* Special Items Sectie */
    .specialItems h2 {
        font-size: var(--h5); /* Kleinere tekstgrootte */
        padding: 5px 10px; /* Kleinere padding */
    }

    /* Footer Sectie */
    footer {
        height: auto; /* Hoogte aanpassen naar automatisch */
        padding: 20px 10px; /* Kleinere padding */
    }

    .foot-container {
        flex-direction: column; /* Elementen onder elkaar plaatsen */
        text-align: center; /* Tekst centreren */
    }

    .brasserie {
        position: static; /* Absolute positionering verwijderen */
        width: 100%; /* Volledige breedte gebruiken */
        text-align: center; /* Tekst centreren */
        margin-bottom: 10px; /* Ruimte toevoegen */
    }

    .locatie,
    .opening,
    .social {
        padding-top: 10px; /* Kleinere padding */
        text-align: center; /* Tekst centreren */
    }

    .locatie p,
    .opening p,
    .social p {
        font-size: 14px; /* Kleinere tekstgrootte */
    }

    .route-btn {
        padding: 6px 12px; /* Kleinere knop */
        font-size: 12px; /* Kleinere tekstgrootte voor de knop */
    }

    .social i {
        font-size: 18px; /* Kleinere icoongrootte */
        margin: 0 5px; /* Kleinere marge tussen iconen */
    }

    /* Zet sterren op één regel */
    .stars-row,
    .left-hero .fa-star,
    .left-hero .fa-star-o {
        display: inline-block;
        margin-right: 2px;
        vertical-align: middle;
    }
}

.left-hero h4 span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px; /* ruimte tussen sterren */
}

.left-hero .fa-star,
.left-hero .fa-star-o {
    margin-right: 0; /* verwijder extra marge */
}

/* Zorg dat sterren altijd op één regel staan, ook op iPhone */
.stars-row {
    display: flex;
    align-items: center;
    gap: 2px;
}
.stars-row .fa-star,
.stars-row .fa-star-o {
    margin-right: 0;
}