@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

*,
*::after,
*::before {
    box-sizing: border-box;

}

.html {
    font-size: 62.5%;
}

body {
    font-family: "Poppins", sans-serif;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

.btn {
    display: inline-block;
    padding: 0.5em 1.5em;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    outline: none;
    margin-top: 1em;
    text-transform: uppercase;
    font-weight: small;
}

.btn-primary {
    color: #fff;
    border-radius: 25px;
    border: 2px solid #ffffff;
}

.btn-primary2 {
    color: #c10000;
    border-radius: 25px;
    border: 2px solid #c10000;
}

.btn-primary:hover {
    background: #5b5656;
    transition: background 0.3s ease-in-out;
}

@keyframes MenubtnfadeAnimation {
    0% {
        background-color: transparent;
    }

    50% {
        background-color: #00FF00;
    }

    100% {
        background-color: transparent;
    }
}

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
    display: none;
}

.navbar {
    background: #fff;
    color: #000;
    height: 8rem;
    height: auto;
}

.navbar img {
    width: auto;
    height: 8rem;
    margin-left: 60px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 8rem;
    align-items: center;
}

.menu-items {
    order: 2;
    display: flex;
}

.menu-items li {
    list-style: none;
    margin-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.menu-items a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.menu-items a:hover {
    color: #FF0000;
    transition: color 0.3s ease-in-out;
}

.logo img {
    width: 100px;
    height: 100px;
    margin-left: 1.5rem;

}



/* ............//// Showcase styling ////......... */

.showcase-area {
    width: 100%;
    height: 600px;
    /* Verlaag de hoogte naar 600px */
    background: linear-gradient(rgba(77, 77, 77, 0.336),
            rgba(0, 0, 0, 0.336)),
        url("../Assets/FrontpageBG.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}


.showcase-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 1.6rem;
    color: #fff;
}

.main-title {
    text-transform: uppercase;
    margin-top: 1.5em;
}


/*..........//shopping-cart css//.......... */


/* ......//about us//...... */

#about {
    padding: 50px 0;
    background: #f5f5f7;
}

.about-wrapper {
    display: flex;
    flex-wrap: wrap;
}

#about h2 {
    font-size: 2.3rem;
}

#about p {
    font-size: 1.2rem;
    color: #555;
}

#about .small {
    font-size: 1.2rem;
    color: #666;
    font-weight: 600;
}

.about-img {
    flex: 1 1 400px;
    padding: 30px;
    transform: translateX(150%);
    animation: about-img-animation 1s ease-in-out forwards;
}

@keyframes about-img-animation {
    100% {
        transform: translate(0);
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    padding: 30px;
    transform: translateX(-150%);
    animation: about-text-animation 1s ease-in-out forwards;
    text-align: center
}


@keyframes about-text-animation {
    100% {
        transform: translate(0);
    }
}

.about-img img {
    display: block;
    height: 400px;
    max-width: 100%;
    margin: auto;
    object-fit: cover;
    object-position: right;
}

.img-container {
    margin: 0 1rem;
    position: relative;
}

.img-content {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
    text-align: center;
    transition: all 0.3s ease-in-out 0.1s;
}

.img-content h3 {
    color: #fff;
    font-size: 2.2rem;
}

.img-content a {
    font-size: 1.2rem;
}

.img-container::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.871);
    opacity: 0;
    z-index: 1;
    transform: scaleY(0);
    transform-origin: 100% 100%;
    transition: all 0.3s ease-in-out;
}

.img-container:hover::after {
    opacity: 1;
    transform: scaleY(1);
}

.img-container:hover .img-content {
    opacity: 1;
    top: 40%;
}

/* .........../Food Menu/............ */

.food-menu-heading {
    text-align: center;
    font-size: 3.4rem;
    font-weight: 400;
    color: #666;
}

.food-menu-container {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0px 30px 0px;
}

.food-menu-container img {
    display: block;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.food-menu-item {
    display: flex;
    flex: 1 1 600px;
    justify-content: space-evenly;
    margin-bottom: 3rem;
}

.food-description {
    margin: auto 1.5rem;
}

.font-title {
    font-size: 1.8rem;
    font-weight: 400;
    color: #444;
}

.food-description p {
    font-size: 1.4rem;
    color: #555;
    font-weight: 500;
}

.food-description .food-price {
    color: #117964;
    font-weight: 700;
}

#contact {
    padding: 5rem 0;
    background: rgb(226, 226, 226);
}

.contact-container {
    display: flex;
    background: #fff;
    border-radius: 47px;
}

.contact-img {
    width: 50%;
}

.contact-img img {
    display: block;
    height: 400px;
    width: 100%;
    object-position: center;
    object-fit: cover;
}

.form-container {
    padding: 1rem;
    width: 50%;
    margin: auto;
}

.form-container input {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 1rem 0;
    box-shadow: none;
    outline: none;
    margin-bottom: 1rem;
    color: #444;
    font-weight: 500;
}

.form-container textarea {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    color: #444;
    outline: none;
    padding: 1rem 0;
    resize: none;
}

.form-container h2 {
    font-size: 2.7rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 1rem;
    margin-top: -1.2rem;
}

.form-container a {
    font-size: 1.3rem;
}




/* Style the sidebar - fixed full height */
.sidebar {
    height: 100%;
    width: 167px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #ffffff;
    overflow-x: hidden;
    padding-top: 16px;
}

/* Style sidebar links */
.sidebar a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 20px;
    color: #000000;
    display: block;
}

/* Style links on mouse-over */
.sidebar a:hover {
    color: #f1f1f1;
}


.main {
    margin-left: 160px;
    /* Same as the width of the sidenav */
    padding: 0px 10px;

}

.admin-panel {
    color: grey;
    padding: 15px;
}

.container {
    /* display: flex; */
    width: auto;
    max-width: none;
    background-color: #f0f0f0;
}

.sidebar {
    width: 200px;
    background-color: #fff;
    height: 100vh;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
    transform: translateX(-250px);
    /* Beginpositie buiten het zicht */
    transition: transform 0.3s ease-in-out;
    /* Soepele overgang */
}

.sidebar.open {
    transform: translateX(0);
    /* Breng de zijbalk terug in het zicht */
}

.toggle-btn {
    background-color: rgb(193, 39, 39);
    color: #FFFFFF;
    font-size: 13px;
    padding: 10px 15px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    margin-top: auto;
    margin-left: 14%;
}


.sidebar img {
    width: 70px;
    display: block;
    margin: 0 auto;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.sidebar ul li {
    margin: 15px 0;
}

.sidebar ul li a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.sidebar ul li a i {
    margin-right: 10px;
}

.content {
    flex-grow: 1;
    padding: 30px;
    background-color: #f0f0f0;
}

.text {
    font-size: 20px;
    color: #d9534f;
    margin-bottom: 10px;
}

.card {
    background-color: #fcfcfc;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card h2 {
    margin-top: 0;
    font-size: 16px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-group button {
    width: 100%;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px;
}

.form-group button {
    background-color: #d9534f;
    color: #fff;
    border: none;
    cursor: pointer;
}

.form-group button:hover {
    background-color: #c9302c;
}

.form-group .flex-input {
    display: flex;
    gap: 10px;
}

.form-group .flex-input select {
    width: 60px;
    padding: 6px;
}

.form-group .flex-input input {
    flex-grow: 1;
    padding: 6px;
}


.wrapper {
    width: 100%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.nav-button {
    background-color: #ec1111;
    color: white;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
    width: 150px;
    /* Add this line to make the button wider */
}

.nav-items a {
    margin-left: 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-card {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-right: 100px;
}

.menu-card img {
    width: 150px;
    height: auto;
    margin-right: 100px;
}

.menu-description {
    flex: 1;
}

.menu-description h2 {
    margin: 0;
    color: #ec1111;
    display: flex;
    justify-content: center;
    /* Hier wordt de tekst gecentreerd */
    align-items: center;
}

.menu-list {
    list-style-type: none;
    /* Verwijder de standaard opsommingstekens */
    padding-left: 0;
    /* Verwijder de linkermarge */
}

.menu-list li {
    position: relative;
    /* Maakt de positie van het pseudo-element relatief aan het list-item */
    padding-left: 20px;
    /* Ruimte tussen het pseudo-element en de tekst */
}

.menu-list li::before {
    content: "-";
    /* Tekst voor het pseudo-element */
    position: absolute;
    /* Maakt het pseudo-element absoluut gepositioneerd */
    left: 0;
    /* Plaats het pseudo-element aan de linkerkant van het list-item */
}


.menu-description h2 {
    margin: 0;
    color: #ec1111;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: #333;
    font-size: 20px;

}

.menu-description ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
}

.menu-description ul li {
    margin-bottom: 5px;
}

.add-button {
    background-color: #ec1111;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 15px;
    float: right;
}


footer {
    margin-top: 20px;
    text-align: center;
}

.footer-links a {
    margin: 0 10px;
}

.footer-links img {
    width: 200px;
    height: auto;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%
        /* Verminder de breedte om plaats te maken voor twee items naast elkaar */

}

.menu-text {
    padding: 10px;
    border: 2px solid #c10000;
    border-radius: 30px;
    margin-right: 20px;
    /* Voeg ruimte toe tussen de items */
    margin-bottom: 20px;
    /* Voeg ruimte toe onder de items */
}

.menu-text p {
    margin: 0;
}

.menu-image {
    width: 100px;
    height: 100px;
}

img {
    max-width: 100%;
    /* Zorg ervoor dat de afbeelding niet groter wordt dan zijn container */
    height: auto;
    /* Behoud de aspectverhouding van de afbeelding */
}




/* ......../ media query /.......... */


@media screen and (max-height: 450px) {
    .sidebar {
        padding-top: 15px;
    }

    .sidebar a {
        font-size: 18px;
    }
}

@media (max-width: 768px) {



    .about-img img {
        max-width: 100%;
        height: auto;
        width: 90%;
        /* Adjust image width for better mobile layout */
        margin: auto;
        /* Center the image horizontally */
    }

    .about-text {
        padding: 1rem;
        text-align: center;
        /* Center align the text */
    }

    .showcase-container {
        text-align: center;
        /* Center align the text */
        font-size: 2rem;
    }

    #about h2 {
        font-size: 2rem;
        /* Adjust heading size for mobile */
    }

    #about p {
        font-size: 1rem;
        /* Adjust paragraph font size for mobile */
    }

    .navbar {
        opacity: 0.95;
    }

    .navbar-container #hambar,
    .navbar-container .hamburger-lines {
        display: block;
    }

    .navbar-container {
        display: block;
        position: relative;
        height: 64px;
    }

    .navbar-container #hambar {
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
    }

    .navbar-container .hamburger-lines {
        display: block;
        height: 23px;
        width: 35px;
        position: absolute;
        top: 17px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line {
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #333;
    }

    .navbar-container .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }

    .navbar .menu-items {
        padding-top: 100px;
        background: #fff;
        height: auto;
        max-width: 300px;
        /* transform: translate(-150%); */

        display: flex;
        flex-direction: column;
        margin-left: -40px;
        padding-left: 50px;
        transition: transform 0.5s ease-in-out;
        box-shadow: 5px 0px 10px 0px #aaa;
        display: none;
    }

    .navbar .menu-items li {
        margin-bottom: 1.5rem;
        font-size: 1.3rem;
        font-weight: 500;
    }

    .navbar img {
        display: none;

    }

    .logo {
        position: absolute;
        top: 5px;
        right: 15px;
        font-size: 2rem;
    }

    .navbar-container #hambar:checked~.menu-items {
        display: flex;
        transform: translateX(0);
    }

    .navbar-container #hambar:checked~.hamburger-lines .line1 {
        transform: rotate(35deg);
    }

    .navbar-container #hambar:checked~.hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .navbar-container #hambar:checked~.hamburger-lines .line3 {
        transform: rotate(-35deg);
    }

}

@media (max-width: 500px) {
    html {
        font-size: 65%;
    }

    .navbar .menu-items li {
        font-size: 1.6rem;
    }

    .testimonial-container {
        flex-direction: column;
        text-align: center;
    }

    .food-menu-container img {
        margin: auto;
    }

    .food-menu-item {
        flex-direction: column;
        text-align: center;
    }

    .form-container {
        width: 90%;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
    }

    .contact-img {
        width: 90%;
        margin: 3rem auto;
    }

    .logo {
        position: absolute;
        top: 06px;
        right: 15px;
        font-size: 3rem;
    }

    .navbar .menu-items li {
        margin-bottom: 2.5rem;
        font-size: 1.8rem;
        font-weight: 500;
    }

    .navbar img {
        display: none;
    }

    ;
}

@media (max-width: 600px) {
    .logintxt {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .input-container {
        height: auto;
    }

    .input-container input[type="text"] {
        width: 90%;
        /* Make the input width responsive */
        font-size: 14px;
        margin-top: 10px;
    }

    .input-container input[type="password"] {
        width: 90%;
        /* Make the input width responsive */
        font-size: 14px;
        margin-top: 10px;
    }

    .button-21,
    .button-22 {
        padding: 5px 30px;
        /* Adjust padding for smaller screens */
        font-size: 14px;
        width: 100%;
    }
}

@media (max-width: 600px) {}

.logintxt {
    font-size: 18px;
    margin-bottom: 20px;
}

.input-container {
    height: auto;
}

.input-container input[type="text"] {
    width: 100%;
    /* Make the input width responsive */
    font-size: 18px;
    /* Maak de fontgrootte groter */
    margin-top: 10px;
}

@media screen and (max-width: 600px) {

    .input-container input[type="text"],
    .input-container input[type="password"] {
        width: 100%;
        /* Verander de breedte naar 80% van de beschikbare ruimte */
        max-width: none;
        /* Geen maximale breedte */
    }
}

/* Media query voor schermen kleiner dan 768px (bijvoorbeeld smartphones) */
@media screen and (max-width: 300px) {
    .menu-item {
        flex-direction: column;
        /* Items stapelen op kleinere schermen */
    }
}

@media (max-width: 600px) {
    .input-container {
        height: auto;
        /* Adjust height to fit content */
        margin-bottom: 10px;
        /* Adjust margin for smaller screens */
    }

    .input-container input[type="text"] {
        width: 100%;
        /* Make the input width responsive */
        font-size: 18px;
        /* Maak de fontgrootte groter */
        margin-top: 10px;
        /* Adjust top margin */
    }
}

@media screen and (max-width: 600px) {

    .input-container input[type="text"],
    .input-container input[type="password"] {
        width: 100%;
        /* Verander de breedte naar 80% van de beschikbare ruimte */
        max-width: none;
        /* Geen maximale breedte */
    }
}

/* Adjusted price size */


.add-button {
    font-size: 0.9rem;
    /* Smaller button size */
    padding: 0.4rem 0.8rem;
    /* Adjusted padding */
}


@media (max-width: 768px) {
    .menu-description h2 {
        font-size: 1.2rem;
        /* Smaller font size for smaller screens */
    }

    .price {
        font-size: 1rem;
        /* Adjusted price size */
    }
}

@media (max-width: 480px) {
    .menu-description h2 {
        font-size: 1rem;
        /* Even smaller font size for very small screens */
        flex-direction: column;
    }

    .price {
        font-size: 0.8rem;
        /* Adjusted price size */
        margin-left: 0;
        /* Remove left margin for centering */
        margin-top: 0.5rem;
        /* Add top margin for spacing */
    }
}