﻿/* Reset styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Header Section */
header {
    background-color: #3e3e3e;
    padding: 20px 20px;
    color: white;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.buttons {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

    .buttons:hover {
        text-decoration: underline;
    }

.cart {
    font-size: 2em;
    text-decoration: none;
}

.logo {
    width: auto;
    height: 90px;
}

/* Order Section */
.order-section {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    background-color: white;
}

.order-option {
    text-align: center;
    font-size: 1.5em;
}

    .order-option p {
        margin-top: 5px;
        font-weight: bold;
    }

.order-button {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
}

    .order-button:hover {
        background-color: darkred;
    }

/* Offers Section */
.offers {
    text-align: center;
    padding: 20px;
}

    .offers h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }

.pizza-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-left: 12%;
    margin-right: 12%;
}

.pizza-item {
    background-color: #e0e0e0;
    padding: 10px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

    .pizza-item img {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 10px;
    }

.pizza-description {
    margin-top: 10px;
    padding: 10px;
    background-color: #f8f8f8;
    border-radius: 10px;
    font-size: 1.5vw;
}

    .pizza-description p {
        margin: 5px 0 0;
        font-size: 14px;
    }

/* Bottom Order Button */
.offers .bottom-button {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    margin: 10px;
}

    .bottom-button:hover {
        background-color: darkred;
    }

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

/* Basisstijl voor de footer */
.footer {
    background-color: #555; /* Donkergrijze achtergrondkleur */
    padding: 20px 0;
    text-align: center;
    color: white;
    font-size: 18px;
    
}

/* Stijl voor de links in de footer */
.footer-content a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: normal;
}

    /* Afstand tussen de links */
    .footer-content a:hover {
        text-decoration: underline;
    }
