@import url('https://fonts.googleapis.com/css2?family=Cabin+Sketch:wght@700&display=swap');

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center; /* Zentriert den Inhalt vertikal */
    justify-content: center; /* Zentriert den Inhalt horizontal */
    position: relative;
    width: 100%;
    height: 30vh; /* Begrenze die Höhe auf 30% des Bildschirms */
    overflow: hidden;
    text-align: center;
    color: #fff;
}

header video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: brightness(50%);
}

/* Cremefarbenes Overlay über das Video */
header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 228, 196, 0.3); /* Cremefarben mit 30% Transparenz */
    z-index: 0;
}

header img {
    width: 80%;
    max-width: 350px;
    height: auto;
    margin-top: 0;
    z-index: 1; /* Bringt das Bild über das Overlay */
}

header h1 {
    margin: 0;
    padding-top: 10px;
    font-family: 'Cabin Sketch', cursive;
    font-size: 3em;
    color: #BA3414;
    z-index: 1; /* Bringt den Text über das Overlay */
}
main {
    padding: 20px;
}

.section {
    padding: 20px;
    background-color: #fff;
    margin: 20px 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: left;
}

.section h2 {
    font-size: 2.5em;
    color: #D32F2F;
    font-family: 'Cabin Sketch', cursive;
    margin-bottom: 10px;
}

.section p, .section ul, .section li {
    line-height: 1.6;
    font-size: 1.1em;
}

.columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.column {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.column h3 {
    font-size: 1.5em;
    color: #8D6E63;
    font-family: 'Cabin Sketch', cursive;
    margin-bottom: 10px;
}

footer {
    background-color: #BA3414;
    color: #fff;
    text-align: center;
    padding: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

.recipe-card {
    border-radius: 8px;
    padding: 30px;
    background-color: #fff;
    margin: 20px 0;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.recipe-card h2 {
    font-size: 2.5em;
    color: #D32F2F;
    font-family: 'Cabin Sketch', cursive;
    margin-bottom: 10px;
}

.recipe-card h3 {
    font-size: 1.5em;
    color: #8D6E63;
    font-family: 'Cabin Sketch', cursive;
}

.recipe-card p, .recipe-card ul {
    line-height: 1.6;
    font-size: 1.1em;
}

.recipe-card ul {
    list-style-type: disc;
    padding-left: 20px;
}

.recipe-card ul li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    header {
        min-height: 30vh; /* Begrenze die Höhe auf 30% des Bildschirms */
    }

    header h1 {
        padding-top: 0;
        font-size: 2em;
    }
    
    .section p, .section ul, .section li {
        padding: 0 10px;
    }

    .columns {
        flex-direction: column;
    }

    .column {
        width: 100%;
    }
}