:root {
    --primary: #2c3e50;
    --accent: #e67e22;
    --text: #2c3e50;
    --light: #ecf0f1;
    --glass: rgba(255, 255, 255, 0.9);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text);
    background-color: #f9f9f9;
    line-height: 1.6;
}

.hero-section {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/burger_real.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    margin: 10px 0;
}

.hero-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 20px auto;
}

.intro-grid {
    max-width: 1100px;
    margin: -50px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.glass {
    background: var(--glass);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.intro-text {
    padding: 40px 0;
}

.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.status-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 20px;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Bewertungen Styles */
.reviews-section {
    max-width: 1100px;
    margin: 0 auto 50px;
    text-align: center;
}

.reviews-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 30px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.review-card {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: left;
}

.stars {
    color: #f1c40f;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.author {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent);
}

/* Fun Section Styles */
.fun-section {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.fun-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--accent);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.fact-item {
    padding: 15px;
    background: rgba(230, 126, 34, 0.05);
    border-radius: 8px;
}

.fact-item h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.fact-item p {
    font-size: 0.9rem;
}

.teaser-box {
    max-width: 800px;
    margin: 0 auto 100px;
    text-align: center;
}

.teaser-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.features li {
    background: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid #eee;
}

footer {
    text-align: center;
    padding: 40px;
    color: #7f8c8d;
    font-size: 0.8rem;
    border-top: 1px solid #eee;
}

.legal-links {
    margin-top: 10px;
}

.legal-links a {
    color: #7f8c8d;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.75rem;
}

.legal-links a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .intro-grid { margin-top: 20px; }
}
