body, html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
	    height: 100%;
    flex-direction: column;
}


@keyframes backgroundSlide {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header {
    background: linear-gradient(270deg, #002244, #1a1a1a, #003366, #0d0d0d);
    background-size: 800% 800%;
    animation: backgroundSlide 15s ease infinite;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header .logo img {
    height: 100px;

}



/* NavbAR */
nav {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
    font-family: sans-serif;
}


nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2em;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav ul li a:hover, nav ul li a:focus {
    color: #ff4500;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Video */
.video-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.overlay h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.overlay p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

.overlay button {
    font-size: 1.2em;
    padding: 10px 20px;
    margin-top: 20px;
    color: #fff;
    background-color: #ff4500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.overlay button:hover {
    background-color: #e03e00;
}

    

h1, h2, h3, h4, h5, h6 {
    color: #fff;
    font-weight: normal;
    text-align: center;
    margin-top: 1rem;
    font-family: "Cairo", Arial, sans-serif;
}

p {
    font-size: 1.1em;
    line-height: 1.7;
    text-align: justify;
    margin: 0 2rem;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}


	
	
	
	
	/*Menu*/
	
.pizza-section {
    text-align: center;
    margin: 20px;
}

.pizza-title {
    margin-bottom: 30px;
    font-size: 2em;
    color: #ff4500;
}

.pizza-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}


.pizza-item {
    width: calc(33% - 20px);
    margin: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 10px;
    overflow: hidden;
	
}

.pizza-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pizza-item h3 {
    margin: 10px 0;
    color: #333;
}

.pizza-item p {
    color: #666;
}

.pizza-item button {
    background-color: #ff4500;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    width: 100%;
    font-size: 1em;
    transition: background-color 0.3s;
}

.pizza-item button:hover {
    background-color: #555555;
}

.cart {
    position: fixed;
    right: 20px;
    top: 20px;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    z-index: 1000;
}

.cart h3 {
    color: #333;
    margin-bottom: 20px;
}

.cart h3 i {
    margin-right: 10px;
}

.cart ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.cart li {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    color: #666;
}

.cart p {
    color: #333;
    font-size: 1.2em;
}

.cart button {
    background-color: #393939;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    width: 100%;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cart button:hover {
    background-color: #696969;
}




/* Blog */

.blog-title {
    margin-bottom: 30px;
    font-size: 2em;
    color: #ff4500;
}

.blog-section {
    text-align: center;
    margin: 40px 0;
}

.blog-section h2 {
    margin-bottom: 30px;
    font-size: 2em;
}

.blog-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post {
    width: calc(33% - 20px);
    margin: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 10px;
    overflow: hidden;
}

.blog-post img {
    width: 100%;
    height: auto;
}

.blog-post h3 {
    margin: 0.5em;
}

.blog-post p {
    padding: 0 1em;
}

.blog-post a {
    display: block;
    background-color: #4d4d4d;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 1em 0;
}

.blog-post a:hover {
    background-color: #e03e00;
}

    /* Contact */
	
.contact-title {
    margin-bottom: 30px;
    font-size: 2em;
    color: #ff4500;
}
	
.contact-section {
    display: flex;
    justify-content: space-around;
    padding: 100px;
    background-color: #f4f4f4;
	    flex: 1;

}

.contact-info, .contact-form {
    flex: 1;
    margin: 0 20px;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.contact-info h2, .contact-form h2 {
    color: #444;
    margin-bottom: 25px;
    font-size: 1.5em;
}

.contact-info p, .contact-form form {
    margin-bottom: 20px;
}

.contact-info p i {
    color: #ff4500;
    margin-right: 10px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1em;
}

.contact-form button {
    background-color: #ff4500;
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1em;
    width: 100%;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #eb6939;
}

    /* Over ons */
	

.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    margin: 0 auto; 
    max-width: 800px;
}


.about-text, .about-image {

    min-width: 250px;
}

.about-text {
    padding: 15px;
    text-align: center;
}


.about-text h2 {
    color: #ff4500;
    margin-bottom: 10px;
    font-size: 2.5em;
}


.about-text p {
    color: #333;
    line-height: 1.6;
}


.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

    
    /* Footer*/
footer {
    margin-top: auto;
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

footer p {
    margin: 0;
}
    

@media screen and (max-width: 768px) {

    body, html {
        flex-direction: column;
    }

    header .logo img {
        height: 80px;
    }

    nav ul li {
        margin: 0 10px;
    }

    nav ul li a {
        font-size: 1em;
    }

    .video-container {
        height: calc(100vh - 80px);
    }

    .overlay h2 {
        font-size: 1.5em;
    }

    .overlay p {
        font-size: 1em;
    }

    .pizza-item, .blog-post {
        width: calc(50% - 20px);
    }

    .contact-section {
        flex-direction: column;
    }

    .contact-info, .contact-form {
        margin: 0 10px;
    }

    .about-section {
        flex-direction: column;
    }
}

    .cart {
        display: none;
    }
