:root {
    --primary-color: #d3141e;      /* Originales Haid Gastro-Rot */
    --primary-hover: #b00f17;      
    --secondary-color: #2b2b2b;    /* Anthrazit */
    --dark-bg: #191919;            
    --light-bg: #f4f6f8;           
    --white: #ffffff;
    --text-color: #333333;
    --font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 15px 40px rgba(211, 20, 30, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-family); color: var(--text-color); line-height: 1.6; overflow-x: hidden; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 90px 0; }
.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--dark-bg); }
.text-light { color: #f4f6f8 !important; }
.text-primary { color: var(--primary-color) !important; }
.text-center { text-align: center; }

/* Sektions-Header */
.section-tagline { display: block; text-align: center; color: var(--primary-color); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 8px; }
.section-title { text-align: center; font-size: 2.3rem; font-weight: 800; color: var(--secondary-color); margin-bottom: 50px; text-transform: uppercase; }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background-color: var(--primary-color); margin: 12px auto 0 auto; border-radius: 2px; }

/* Top Bar & Navigation mit Logo-Support */
.top-bar { background-color: var(--secondary-color); color: #e0e0e0; font-size: 0.85rem; padding: 8px 0; }
.top-bar-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; flex-wrap: wrap; }
.top-bar-container span { display: flex; align-items: center; gap: 6px; }

header { background-color: rgba(255, 255, 255, 0.97); position: sticky; top: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 15px 40px; box-shadow: 0 2px 20px rgba(0,0,0,0.05); backdrop-filter: blur(10px); }

/* Flex-Anordnung für das neue Logo in der Menüleiste */
.logo-container { display: flex; align-items: center; gap: 15px; }
.nav-logo-img { height: 45px; width: auto; object-fit: contain; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-main { font-size: 1.8rem; font-weight: 900; color: var(--secondary-color); letter-spacing: 2px; }
.brand-sub { font-size: 0.75rem; font-weight: 700; color: var(--primary-color); letter-spacing: 3.4px; }

nav { display: flex; gap: 30px; }
.nav-link { text-decoration: none; color: var(--secondary-color); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; padding: 6px 0; position: relative; transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--primary-color); }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary-color); transition: var(--transition); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--secondary-color); cursor: pointer; }

/* Hero Section (Bereinigt ohne rechtes Logo) */
.hero { min-height: calc(100vh - 120px); position: relative; background: url('images/hero-gastro.jpg') center/cover no-repeat; display: flex; align-items: center; padding: 60px 10%; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 900px; width: 100%; }
.hero-subtitle { color: var(--primary-color); font-weight: 700; text-transform: uppercase; letter-spacing: 3px; font-size: 1.1rem; margin-bottom: 15px; display: inline-block; }

.hero-text-block { margin-top: 15px; }
.hero h1 { font-size: 3rem; font-weight: 900; line-height: 1.2; text-transform: uppercase; color: var(--white); }
.hero p { font-size: 1.2rem; color: #dddddd; max-width: 700px; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 35px; }

.btn { display: inline-block; padding: 14px 30px; text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.85rem; border-radius: 4px; transition: var(--transition); border: none; cursor: pointer; }
.btn-primary { background-color: var(--primary-color); color: var(--white); border: 2px solid var(--primary-color); }
.btn-primary:hover { background-color: var(--primary-hover); border-color: var(--primary-hover); transform: translateY(-2px); }
.btn-secondary { background-color: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background-color: var(--white); color: var(--secondary-color); transform: translateY(-2px); }

/* Grid & Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.card { background-color: var(--white); padding: 40px 30px; border-radius: 6px; box-shadow: var(--card-shadow); border-bottom: 4px solid transparent; transition: var(--transition); }
.card:hover { transform: translateY(-8px); box-shadow: var(--hover-shadow); border-bottom: 4px solid var(--primary-color); }
.card-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }
.card h3 { font-size: 1.25rem; font-weight: 700; color: var(--secondary-color); margin-bottom: 15px; text-transform: uppercase; }

/* Über uns Layout */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.about-text { display: flex; flex-direction: column; gap: 15px; }

/* Chef-Karte Design */
.chef-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--card-shadow); display: flex; flex-direction: column; border-top: 4px solid var(--primary-color); }
.chef-image-container { width: 100%; height: 260px; overflow: hidden; background-color: #eaeaea; }
.chef-img { width: 100%; height: 100%; object-fit: contain; transition: var(--transition); }
.chef-card:hover .chef-img { transform: scale(1.03); }
.chef-info { padding: 25px; }
.chef-info h3 { font-size: 1.4rem; color: var(--secondary-color); margin-bottom: 5px; }
.chef-title { display: block; font-size: 0.85rem; font-weight: 700; color: var(--primary-color); text-transform: uppercase; margin-bottom: 15px; letter-spacing: 1px; }
.chef-info p { font-style: italic; color: #555; font-size: 0.95rem; line-height: 1.6; position: relative; padding-left: 15px; border-left: 2px solid #ccc; }

/* Instagram-Design */
.instagram-section { background-color: #ffffff; padding: 50px 0; border-bottom: 1px solid #eee; }
.instagram-compact-box { max-width: 750px; margin: 0 auto; background: var(--light-bg); padding: 25px 40px; border-radius: 8px; border: 1px solid #e2e8f0; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.instagram-compact-header { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 10px; }
.instagram-mini-icon { font-size: 1.5rem; color: #cc2366; }
.instagram-compact-box h3 { font-size: 1.15rem; color: var(--secondary-color); font-weight: 700; margin: 0; }
.instagram-compact-box p { color: #666; margin-bottom: 20px; font-size: 0.95rem; line-height: 1.5; white-space: nowrap; }
.instagram-btn-compact { background: transparent; color: #cc2366; border: 1px solid #cc2366; padding: 8px 20px; font-size: 0.8rem; font-weight: 700; border-radius: 4px; display: inline-block; text-transform: uppercase; transition: var(--transition); }
.instagram-btn-compact:hover { background: linear-gradient(45deg, #e6683c, #cc2366); color: var(--white); border-color: transparent; transform: translateY(-1px); box-shadow: 0 4px 10px rgba(204, 35, 102, 0.2); }

/* Badges */
.badges { display: flex; gap: 15px; margin-top: 20px; flex-wrap: wrap; }
.badge { background-color: var(--white); padding: 10px 18px; border-radius: 30px; font-weight: 700; font-size: 0.85rem; box-shadow: var(--card-shadow); display: flex; align-items: center; gap: 8px; border: 1px solid #eee; }
.badge i { color: #2e7d32; }

/* Partnerbereiche */
.partner-categories { display: flex; flex-direction: column; gap: 40px; }
.partner-category-block { background-color: var(--light-bg); padding: 30px; border-radius: 8px; box-shadow: var(--card-shadow); }
.category-title { font-size: 1.3rem; color: var(--secondary-color); margin-bottom: 20px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; border-bottom: 2px solid var(--primary-color); padding-bottom: 8px; width: fit-content; }
.partner-links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 15px; }

.partner-item { background-color: var(--white); padding: 15px 20px; border-radius: 4px; font-weight: 600; color: var(--secondary-color); text-decoration: none; display: flex; justify-content: space-between; align-items: center; border: 1px solid #e2e8f0; transition: var(--transition); }
.partner-item i { font-size: 0.8rem; color: #777; transition: var(--transition); }
.partner-item:hover { border-color: var(--primary-color); color: var(--primary-color); box-shadow: 0 5px 15px rgba(211, 20, 30, 0.1); transform: translateY(-2px); }
.partner-item:hover i { color: var(--primary-color); }
.standard-cursor { cursor: default; background-color: #fafafa; color: #999; }
.standard-cursor:hover { border-color: #e2e8f0; color: #999; box-shadow: none; transform: none; }

/* Kontakt */
.contact-box-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.contact-card { background-color: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 40px; border-radius: 6px; }
.contact-card h3 { font-size: 1.3rem; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.contact-link { color: var(--white); text-decoration: none; transition: var(--transition); }
.contact-link:hover { color: var(--primary-color); }
.opening-hours { list-style: none; }
.opening-hours li { display: flex; justify-content: space-between; margin-bottom: 15px; border-bottom: 1px dashed rgba(255,255,255,0.1); padding-bottom: 10px; font-size: 0.95rem; }

/* Footer */
footer { background-color: #111; color: #666; padding: 40px 0; font-size: 0.85rem; }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: #666; text-decoration: none; }
.footer-links a:hover { color: var(--white); }

/* Scroll-Animationen */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.appear { opacity: 1; transform: translateY(0); }

/* Impressum / Rechtliches */
#impressum .legal-text {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    border: 1px solid #e2e8f0;
}

#impressum h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

#impressum h3:first-of-type {
    margin-top: 0;
}

#impressum p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Mobile Optimierungen & Responsive Design */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .menu-toggle { display: block; }
    header { padding: 15px 20px; }
    nav { position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--white); flex-direction: column; gap: 0; box-shadow: 0 10px 15px rgba(0,0,0,0.05); display: none; }
    nav.mobile-active { display: flex; }
    .nav-link { padding: 15px 20px; border-bottom: 1px solid #eee; width: 100%; }
    .nav-link::after { display: none; }
    
    .hero { text-align: center; padding: 40px 20px; justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero h1 { font-size: 2.5rem; font-weight: 900; line-height: 1.1; text-transform: uppercase; }
    
    .section { padding: 60px 0; }
    .footer-content { flex-direction: column; text-align: center; }

    #impressum .legal-text {
        padding: 25px 20px;
    }
}