/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

/* Fontss */
@font-face {
    font-family: 'MyFont';
    src: url('../font/sunborn.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MyFont2';
    src: url('../font/sunborn.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Body Background */
body {
    background-color: #ffcf53;
    background-image: url('../images/test.svg');
    background-repeat: repeat;
    background-size: 1200px;
    font-family: 'MyFont', Arial, sans-serif;
    letter-spacing: 1px;
}

/* Header */
header {
    background-color: #d1321b;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}
.logo {
    position: relative; /* Nodig voor de teller */
    display: flex;
    align-items: center;
}


/* Logo */
.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.hamburger .bar {
    background-color: #ffc107;
    height: 8px;
    width: 100%;
    border-radius: 2px;
}

/* Mobile Navbar */
.nav-links {
    display: flex;
    list-style: none;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: #ffc107;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s;
    margin-left: 15px;
}
.hero-content h1 {
    font-size: 6rem;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 10px;
}
.hero-content h5 {
    font-size: 1.3rem;
    line-height: 1.2;
    font-weight: lighter;
}


/* Mobile Styles: Hide Navigation Links and Show Hamburger Icon */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 40px; /* Adjust the width */
        height: 35px; /* Adjust the height */
        cursor: pointer;
    }


    .hamburger span {
        background-color: #ffc107; /* Kleur van de streepjes */
        height: 4px;
        width: 100%;
        border-radius: 2px;
        display: block;

    }


    .nav-links {
        display: none; /* Verberg standaard */
        flex-direction: column;
        align-items: center;
        background-color: #d1321b;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        padding: 20px 0;
        z-index: 1000000;
    }

    .nav-links.active {
        display: flex; /* Toon het menu als het actief is */
    }


    .nav-links a {
        font-size: 18px;
        margin: 8px 0;
        color: #fff;
        transition: color 0.3s ease-in-out;
    }


    .nav-links.active a {
        opacity: 1;
        transform: translateY(0); /* Move to original position */
    }

    /* Change color of the hamburger icon when clicked */
    .hamburger.active .bar {
        background-color: #ffffff;
    }

    /* Hamburger Icon Rotation (Cross Effect) */
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg);
        transform-origin: top left;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg);
        transform-origin: bottom left;
    }
}


/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(50%);
    /* iOS Safari video fixes */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* iOS Safari specific video fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .hero-video {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-buttons {
    display: flex;
    gap: 20px; /* Space between buttons */
    justify-content: center;
    margin-top: 20px;
}

.btn-primary {
    background-color: #d1321b; /* Red button color */
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 5px;
    border: 2px solid #d1321b;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #a12615; /* Darker red on hover */
    transform: scale(1.05); /* Slight scaling effect */
}

.btn-secondary {
    background-color: #ffc107; /* Yellow button color */
    color: #d1321b;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 5px;
    border: 2px solid #ffc107;
    margin-left: 10px; /* Adds extra space between buttons */
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #e0a805; /* Darker yellow on hover */
    transform: scale(1.05); /* Slight scaling effect */
}

/* Best Dishes Section */
.best-dishes {
    padding-top: 40px;
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
}

.dishes-header {
    margin-bottom: 30px;
}

.dishes-title {
    font-size: 3rem;
    color: #d1321b;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.bedankt-titel {
    font-size: 3rem;
    color: #fae52d;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.dishes-subtitle {
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
}

/* Carousel container */
.carousel {
    overflow: hidden; /* Hide overflowed content */
    position: relative;
    width: 100%; /* Set the width of the carousel */
    height: auto;
}


.carousel-track {
    margin: 20px 20px;
    display: flex;
    transition: transform 0.3s ease; /* Smooth snap animation */
    will-change: transform;
}
/* Each card styling */
.dish-card {
    flex: 0 0 auto; /* Prevent cards from shrinking or growing */
    width: 200px; /* Set a fixed width for cards */
    margin-right: 20px; /* Space between cards */
}

/* Additional styling for visual effect */
.carousel img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


.dish-card {
    padding-top: 40px;
    padding-bottom: 40px;
    flex: 0 0 250px;
    background-color: #d1321b;
    color: white;
    border-radius: 20px;
    /* padding: 20px; */
    height: 60%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 3px solid white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.dish-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.dish-card img {
    width: 80%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid white;
    background-color: #ffc107;
    padding: 5px;
}

.dish-card h2 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.dish-card p {
    font-size: 14px;
    margin-bottom: 0;
}
/* New Additions */
.btn-menukaart {
    display: inline-block;
    background-color: #d1321b; /* Matches the button color */
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 20px;
}

.btn-menukaart:hover {
    background-color: #a92916; /* Slightly darker red for hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

/* MENU.HTML GEDEELTE */

/* General Styles for Menu Page */
.menu-tabs {
    display: flex;
    justify-content: center;
    background-color: #d1321b;
    padding: 10px 0;
}

.tab {
    padding: 10px 20px;
    margin: 0 5px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border: none;
    background-color: transparent;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab.active {
    border-bottom: 3px solid #ffc107;
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.menu-item {
    background-color: #d1321b;
    color: white;
    width: 250px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s;
}

.menu-item:hover {
    transform: scale(1.05);
}

.menu-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

.menu-item .price {
    font-size: 18px;
    margin-top: 10px;
    color: #ffc107;
}

/* Popup Modal */
.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    text-align: center;
}

.popup-modal.hidden {
    display: none;
}

/* Cart Section */
.cart {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 300px;
    background: white;
    border-top-left-radius: 20px;
    padding: 15px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.cart.hidden {
    display: none;
}

.cart-summary {
    margin-top: 20px;
    text-align: center;
}
.footer {
    width: 100%;
    background-color: #d1321b;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative; /* ✅ Voorkomt dat de footer te dicht op de knoppen komt */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon img:hover {
    transform: scale(1.2); /* Vergroot de iconen bij hover */
    opacity: 0.8; /* Maak de iconen iets transparanter */
}

.copyright {
    font-size: 14px;
    margin-top: 10px;
}

