/* ===== GLOBALE VARIABLEN ===== */
:root {
    --primary: #933333;
    --primary-light: #A84A4A;
    --primary-dark: #6B1F1F;
    --accent: #C97474;
    --accent-light: #E8A0A0;
    --text: #2c2c2c;
    --text-light: #666;
    --bg: #faf8f3;
    --border: #ddd;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ===== RESET & GRUNDLAGEN ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: white;
}

.logo::before {
    content: "";
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.logo span {
    font-size: 1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-light);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, -1px)
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(13px, -4px);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

main {
    position: relative;
    z-index: 2;
    flex: 1;
}

section {
    margin: 5rem auto;
    padding: 0 2rem;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    margin: 0 !important;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 6rem 2rem;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary-dark);
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 116, 116, 0.3);
}

.cta-button.ghost {
    background-color: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-button.ghost:hover {
    background, 0.5);
}

.cta-button.ghost:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* ===== SECTION SPLIT ===== */
.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.section-split.reverse .section-image {
    order: 2;
}

.section-split.reverse .section-text {
    order: 1;
}

.section-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-icon {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(201, 116, 116, 0.1) 0%, rgba(232, 160, 160, 0.1) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.section-text h2 {
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    color: var(--primary);
}

.section-text p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

/* ===== HOURS SECTION ===== */
.hours-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.hours-section h2,
.hours-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hours-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hours-box h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.hours-day {
    font-weight: 600;
    color: var(--text);
}

.hours-time {
    color: var(--text-light);
}

/* ===== PAGE SECTIONS ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    margin: 0 !important;
}

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.page-hero p {
    font-size: 1rem;
    opacity: 0.95;
}

.content {
    padding: 5rem 0;
}

.gratitude-section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    text-align: center;
    background: #fafaf9;
    border-radius: 8px;
}

.gratitude-section p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== NEWS ITEMS ===== */
.news-timeline {
    position: relative;
    padding: 0;
}

.news-item {
    padding: 1.5rem 0;
    position: relative;
    border-bottom: 1px solid #e8e8e8;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.news-date {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.news-content {
    line-height: 1.7;
    color: var(--text-light);
    font-size: 0.95rem;
}

.news-content p {
    margin-bottom: 0.6rem;
}

.news-content p:last-child {
    margin-bottom: 0;
}

/* ===== MENU ITEMS ===== */
.menu-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.menu-section:first-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-section h2 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.menu-item {
    padding: 0;
    background: transparent;
    border-radius: 0;
    border-left: none;
    transition: none;
}

.menu-item:hover {
    transform: none;
    box-shadow: none;
}

.menu-item-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.menu-item-description {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    font-style: italic;
}

/* ===== MENU DIVIDER ===== */
.menu-divider {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    color: white;
    text-align: left;
}

.menu-divider h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 600;
}

.menu-divider p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

/* ===== SPECIAL SECTION ===== */
.special-section {
    background: transparent;
    padding: 2rem 0;
    border-radius: 0;
    margin-top: 2rem;
    border-left: none;
}

.special-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.special-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 2.5rem 2rem;
    margin-top: auto;
    border-top: 2px solid var(--accent);
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

footer p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
}

footer a {
    color: var(--accent-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

footer .footer-link {
    display: inline-block;
    margin-top: 0.8rem;
    font-weight: 500;
}

/* ===== KONTAKT LAYOUT ===== */
.kontakt-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.kontakt-text h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.kontakt-text p,
.kontakt-image img {
    margin-bottom: 1.5rem;
}

.kontakt-text p {
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1rem;
}

.kontakt-text a {
    color: var(--primary);
    text-decoration: none;
}

.kontakt-text a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.kontakt-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 0;
}

/* ===== TRANSPARENT SECTIONS ===== */
.intro-section,
.highlight-box,
.contact-intro,
.contact-card,
.info-box {
    background: transparent;
    padding: 2rem 0;
    border-left: none;
    border-radius: 0;
    margin-bottom: 2rem;
    text-align: left;
    transition: none;
}

.intro-section h2,
.highlight-box h3,
.contact-intro h3,
.contact-card h3,
.info-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.intro-section p,
.highlight-box p,
.contact-intro p,
.contact-card:hover,
.info-box p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-card:hover,
.info-box:hover {
    transform: none;
    box-shadow: none;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 1.2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--text);
    word-break: break-word;
    line-height: 1.6;
}

.contact-value a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.contact-value a:hover {
    color: var(--primary);
}

/* ===== MAP SECTION ===== */
.map-section {
    margin: 3rem 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== INFO BOXES ===== */
.info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.info-box {
    padding: 2rem 0;
}

.info-box p {
    font-size: 0.95rem;
}

.info-box strong {
    color: var(--text);
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-image {
        order: -1;
    }

    .section-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-split.reverse .section-image {
        order: 0 !important;
    }

    .section-split.reverse .section-text {
        order: 0 !important;
    }

    .hours-grid,
    .menu-grid,
    .info-boxes,
    .kontakt-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .kontakt-image img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem;
        font-size: 1.2rem;
    }

    .hero-content {
        padding: 3rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .section-split {
        margin-bottom: 3rem;
        padding: 0 1rem;
        grid-template-columns: 1fr !important;
    }

    .section-split.reverse .section-image,
    .section-split.reverse .section-text {
        order: 0 !important;
    }

    .section-text h2 {
        font-size: 1.5rem;
    }

    .hours-section {
        padding: 0 1rem;
    }

    .hours-grid {
        gap: 1.5rem;
    }

    .gratitude-section {
        padding: 1.5rem;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }

    .content {
        padding: 3rem 1rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-divider {
        padding: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-section {
        height: 300px;
    }

    .info-boxes {
        grid-template-columns: 1fr;
    }

    .kontakt-layout {
        grid-template-columns: 1fr !important;
    }

    section {
        margin-bottom: 8rem !important;
        padding: 0 2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }

    .logo::before {
        font-size: 1.3rem;
    }

    .hero-content h1,
    h2 {
        font-size: 1.5rem;
    }

    .page-hero h1 {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .section-split {
        grid-template-columns: 1fr !important;
    }

    .section-split.reverse .section-image,
    .section-split.reverse .section-text {
        order: 0 !important;
    }

    .hours-grid {
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .contact-grid,
    .kontakt-layout {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 1.4rem;
    }
}
