* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #fcfbfa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

header {
    /* Hier ist der Link zum Hintergrundbild, den du später anpassen kannst */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=1000') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-call {
    display: inline-block;
    background-color: #d4a373;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.btn-call:active {
    transform: scale(0.95);
}

.info-section {
    background-color: #f0eae1;
    text-align: center;
    padding: 30px 20px;
}

.info-section h2 {
    margin-bottom: 10px;
    color: #4a3b32;
}

.menu-section {
    padding: 40px 20px;
}

.menu-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #4a3b32;
    border-bottom: 2px solid #e6dfd5;
    padding-bottom: 10px;
}

.menu-item {
    margin-bottom: 25px;
}

.menu-item .title {
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
}

.menu-item .price {
    float: right;
    font-weight: bold;
    color: #d4a373;
}

.menu-item .desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

footer {
    background-color: #2b2b2b;
    color: #ccc;
    padding: 40px 20px;
    margin-top: 40px;
    font-size: 0.95rem;
}

.footer-contact {
    margin-bottom: 30px;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
}

.footer-contact h3 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    color: #d4a373;
    text-decoration: none;
}

.footer-credits {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
}

.my-link {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.2s;
}

.my-link:hover {
    color: #d4a373;
}