/* |--------------------------------------------------------------------------
| KÜCHENCHAOS & CO. - MASTER STYLESHEET
|--------------------------------------------------------------------------
*/

:root {
    --terrakotta: #c05a35;
    --chaos-brown: #5d3a24;
    --chaos-bg: #fdfaf3;
    --mani-olive: #556b2f;
    --accent-orange: #e27d60;
}

/* --- 1. BASIS & TYPOGRAFIE --- */
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

.container, .content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. BRAND & NAVIGATION --- */
.brand-header { 
    padding: 40px 0 20px; 
    border-bottom: 4px solid var(--terrakotta); 
    text-align: center; 
    background: #fff;
}
.brand-name { 
    font-size: 2.8rem; 
    font-weight: 800; 
    color: var(--chaos-brown); 
    text-decoration: none; 
    letter-spacing: 1px; 
    text-transform: uppercase;
}
.brand-name span { color: var(--terrakotta); }

nav.main-nav { 
    margin-top: 25px; 
    display: flex; 
    justify-content: center; 
    gap: 30px; 
    flex-wrap: wrap;
}
nav.main-nav a { 
    color: #555; 
    font-weight: bold; 
    text-decoration: none; 
    transition: 0.3s; 
    font-size: 1.1rem;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--terrakotta); }
nav.main-nav a.shop-link { 
    color: var(--terrakotta); 
    border: 1px solid #e9e0d5; 
    padding: 5px 15px; 
    border-radius: 20px; 
}

/* --- 3. BANNER-DESIGN (Rezept-Kategorien) --- */
.banner { 
    position: relative; 
    height: 350px; 
    background: var(--chaos-brown); 
    border-radius: 15px; 
    display: flex; 
    align-items: flex-end; 
    overflow: hidden; 
    margin-bottom: 40px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.banner img { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    object-fit: cover; 
    opacity: 0.7; 
    transition: transform 0.8s ease; 
}

.banner:hover img { transform: scale(1.03); }

.banner h2 { 
    position: relative; 
    z-index: 2; 
    color: white !important; 
    padding: 40px; 
    font-size: 3rem; 
    text-shadow: 2px 2px 15px rgba(0,0,0,0.7); 
    margin: 0 !important; 
}

/* --- 4. KULINARISCHE BOXEN --- */

/* Zubereitungs-Schritte (ehemals Experten-Box) */
.expert-box {
    background: #fff !important;
    border: 2px solid #f0e6e0 !important;
    border-left: 8px solid var(--terrakotta) !important;
    padding: 35px;
    margin: 45px 0;
    border-radius: 0 15px 15px 0;
    box-shadow: 6px 6px 0px rgba(192, 90, 53, 0.05);
}
.expert-box h2, .expert-box h3 { 
    font-size: 1.5rem; 
    color: var(--chaos-brown) !important; 
    margin-top: 0; 
    border-bottom: 1px solid #f0e6e0;
    padding-bottom: 10px;
}

/* Zutatenliste (ehemals Key-Facts) */
.key-facts { 
    background: var(--chaos-bg) !important; 
    padding: 35px 45px; 
    border-radius: 20px; 
    list-style: none !important; 
    margin: 40px 0; 
    border: 1px dashed var(--terrakotta);
}
.key-facts h2 { color: var(--terrakotta); margin-top: 0; }
.key-facts li { 
    margin-bottom: 12px; 
    padding-left: 35px; 
    position: relative; 
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 8px;
}
.key-facts li::before { 
    content: "🍳"; 
    position: absolute; 
    left: 0; 
    font-size: 1.1rem; 
}

/* Motivations-Box / Tipps */
.newsletter-box {
    background: #fdfaf3 !important;
    border-left: 6px solid var(--mani-olive) !important;
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
    font-style: italic;
    color: #555;
}

/* Shop Button & Rezept-CTAs */
.shop-button {
    display: inline-block; 
    background: var(--terrakotta); 
    color: white !important;
    padding: 18px 40px; 
    text-decoration: none; 
    border-radius: 50px;
    font-weight: bold; 
    font-size: 1.1rem; 
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(192, 90, 53, 0.3);
}
.shop-button:hover { 
    background: var(--chaos-brown); 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* --- 5. REZEPT GRID --- */
.faq-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 25px; 
    list-style: none; 
    padding: 0; 
}

.item a { 
    display: flex; 
    align-items: center;
    gap: 15px;
    padding: 15px; 
    background: #fff; 
    border: 1px solid #eee; 
    border-radius: 12px; 
    text-decoration: none; 
    color: var(--chaos-brown); 
    font-weight: bold; 
    transition: 0.3s; 
}

.item a:hover { 
    background: var(--chaos-bg); 
    border-color: var(--terrakotta); 
    transform: scale(1.02);
}

/* --- 6. GLOSSAR & TOOLTIPS --- */
.autolink { 
    border-bottom: 2px solid #e9e0d5; 
    text-decoration: none;
    cursor: help; 
    color: var(--chaos-brown) !important;
    font-weight: 600;
}
.autolink:hover {
    background-color: var(--chaos-bg);
    border-bottom-color: var(--terrakotta);
}

.tippy-box[data-theme~='light-border'] {
    background: #fff; 
    color: #333; 
    border: 2px solid var(--terrakotta);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
    border-radius: 12px;
    padding: 12px;
}

/* --- 7. RESPONSIVE --- */
@media (max-width: 768px) {
    .brand-name { font-size: 2rem; }
    .banner { height: 250px; }
    .banner h2 { font-size: 2.2rem; padding: 25px; }
}

@media (max-width: 600px) {
    .banner { height: 200px !important; }
    .banner h2 { font-size: 1.5rem !important; }
    .expert-box, .key-facts { padding: 20px; }
}

/* --- 8. FOOTER --- */
footer { 
    background: #2d2a26; 
    color: #aaa; 
    padding: 80px 0; 
    text-align: center; 
    margin-top: 100px; 
    border-top: 6px solid var(--terrakotta);
}
footer a { color: #fff; text-decoration: none; }
footer a:hover { color: var(--terrakotta); }