:root {
    --primary-color: #2c3e50; /* Dunkles Schieferblau/Grün */
    --accent-color: #d4af37;  /* Gold */
    --bg-color: #fdf5e6;      /* Altes Weiß / Beige */
    --text-color: #333333;
    --font-main: 'Georgia', serif;
    --spacing-unit: 20px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    font-family: var(--font-main);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: var(--spacing-unit);
}

.restaurant-container {
    max-width: 600px;
    width: 100%;
    background: white;
    padding: calc(var(--spacing-unit) * 2);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid var(--accent-color);
}

header {
    margin-bottom: 40px;
}

#main-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    color: var(--accent-color);
    font-style: italic;
    letter-spacing: 2px;
}

#text-display {
    min-height: 150px;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-container {
    margin-top: 20px;
}

button, 
.download-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover, 
.download-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}


     a {
    text-decoration: none;
}


footer {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #888;
}

/* Animation */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobiloptimierung */
@media (max-width: 480px) {
    #main-title { font-size: 1.8rem; }
    #text-display { font-size: 1.1rem; }
}