/* Allgemeine Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #ffffff;
}

/* Header */
header {
    text-align: center;
    background-color: #1F1F1F; /* schwarz */
    color: #ffffff;
    padding: 20px 0;
    position: relative;
}

header .header-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
}

header h1 {
    font-size: 2.7rem;
    margin: 0;
    font-family: 'Georgia', serif;
}

/* Willkommenstext */
.welcome {
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
    font-size: 1.4rem;
}

/* Speisekarte */
.menu {
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
}

.menu h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #141414; /* grau */
}

/* PDF Button */
.pdf-button {
    display: inline-block;
    background-color: #141414;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.pdf-button:hover {
    background-color: #141414;
    transform: translateY(-2px);
}

/* PDF Vorschau */
.pdf-preview {
    max-width: 800px;
    margin: 20px auto;
    border: 3px solid black;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    overflow: hidden;
}

/* Footer */
footer {
    background-color: #1F1F1F;
    color: #ffffff;
    padding: 30px 20px;
    text-align: center;
}

footer .contact p,
footer .social p,
footer .legal p {
    margin: 5px 0;
}

footer a {
    color: #000000;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
