/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', 'Open Sans', Arial, sans-serif;
    color: #333;
    background: #f5f5f5;
    overflow-x: hidden;
}

/* ===== VARIABLES ===== */
:root {
    --orange: #E87722;
    --orange-dark: #C05E10;
    --orange-light: #F5A555;
    --gray: #4A4A4A;
    --gray-light: #7A7A7A;
    --gray-bg: #F0EFED;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 72px;
    transition: background 0.3s;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    font-weight: 900;
    letter-spacing: -1px;
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-text .brand {
    font-size: 19px;
    font-weight: 800;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.logo-text .sub {
    font-size: 11px;
    color: var(--orange);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Desktop Nav – centered */
nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0;
}
nav a {
    text-decoration: none;
    color: var(--gray);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 26px 18px;
    position: relative;
    transition: color 0.2s;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.25s;
}
nav a:hover { color: var(--orange); }
nav a:hover::after { transform: scaleX(1); }
nav a.active { color: var(--orange); }
nav a.active::after { transform: scaleX(1); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--gray);
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: white;
    box-shadow: var(--shadow);
    z-index: 999;
    flex-direction: column;
    padding: 10px 0 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    text-decoration: none;
    color: var(--gray);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 30px;
    border-bottom: 1px solid #eee;
    transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--orange); background: #fdf6f0; }

/* ===== HERO (Hauptseite) ===== */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(232,119,34,0.55) 0%, rgba(74,74,74,0.72) 100%),
        url('https://images.unsplash.com/photo-1587300003388-59208cc962cb?w=1600&q=80') center/cover no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 800px;
}
.hero-badge {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 22px;
}
.hero-slogan {
    font-size: clamp(38px, 7vw, 76px);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.05;
    text-shadow: 0 3px 20px rgba(0,0,0,0.4);
    margin-bottom: 20px;
}
.hero-slogan span { color: var(--orange-light); }
.hero-sub {
    font-size: clamp(14px, 2.5vw, 19px);
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.92;
    margin-bottom: 36px;
}
.hero-cta {
    display: inline-block;
    background: var(--orange);
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 40px;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 6px 24px rgba(232,119,34,0.45);
}
.hero-cta:hover { background: var(--orange-dark); transform: translateY(-2px); }
.scroll-down {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0.7;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: bounce 2s infinite;
}
.scroll-down::after {
    content: '▼';
    font-size: 14px;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== PAGE HERO (Unterseiten) ===== */
.page-hero {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 72px;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232,119,34,0.6) 0%, rgba(74,74,74,0.75) 100%);
}
.page-hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 0 20px;
}
.page-hero-content .hero-badge {
    margin-bottom: 16px;
}
.page-hero-content h1 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 3px 20px rgba(0,0,0,0.4);
}
.breadcrumb {
    margin-top: 14px;
    font-size: 13px;
    opacity: 0.8;
    letter-spacing: 1px;
}
.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ===== SECTIONS COMMON ===== */
section { padding: 80px 20px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 900;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.section-line {
    width: 55px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
    margin-bottom: 30px;
}
.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-light);
    max-width: 700px;
}

/* ===== ABOUT / INTRO ===== */
#about { background: white; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    background:
        linear-gradient(135deg, rgba(232,119,34,0.3) 0%, rgba(74,74,74,0.4) 100%),
        url('https://images.unsplash.com/photo-1477884213360-7e9d7dcc1e48?w=800&q=80') center/cover no-repeat;
}
.stats-row {
    display: flex;
    gap: 30px;
    margin-top: 36px;
}
.stat {
    text-align: center;
}
.stat .num {
    font-size: 36px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}
.stat .label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gray-light);
    text-transform: uppercase;
    margin-top: 4px;
}

/* ===== SERVICES / ANGEBOTE ===== */
#angebote { background: var(--gray-bg); }
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-img {
    height: 190px;
    background: center/cover no-repeat;
    position: relative;
}
.card-img-1 {
    background-image:
        linear-gradient(135deg, rgba(232,119,34,0.25), rgba(74,74,74,0.5)),
        url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=600&q=80');
}
.card-img-2 {
    background-image:
        linear-gradient(135deg, rgba(232,119,34,0.25), rgba(74,74,74,0.5)),
        url('https://images.unsplash.com/photo-1601758174493-45d0a4d3e407?w=600&q=80');
}
.card-img-3 {
    background-image:
        linear-gradient(135deg, rgba(232,119,34,0.25), rgba(74,74,74,0.5)),
        url('https://images.unsplash.com/photo-1530281700549-e82e7bf110d6?w=600&q=80');
}
.card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--orange);
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}
.card-body { padding: 24px; }
.card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.card-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-light);
}
.card-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid var(--orange-light);
    padding-bottom: 2px;
    transition: color 0.2s;
}
.card-link:hover { color: var(--orange-dark); }

/* ===== MANTRAILING INFO ===== */
#mantrailing { background: white; }
.mt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.mt-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    background:
        linear-gradient(135deg, rgba(232,119,34,0.2) 0%, rgba(74,74,74,0.35) 100%),
        url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?w=800&q=80') center/cover no-repeat;
    order: 2;
}
.mt-content { order: 1; }
.feature-list {
    list-style: none;
    margin-top: 24px;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: var(--gray);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
    content: '▶';
    color: var(--orange);
    font-size: 11px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ===== KALENDER ===== */
#kalender { background: var(--gray-bg); }
.calendar-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}
.calendar-widget {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
}
.cal-header {
    background: var(--orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
}
.cal-header h3 {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.cal-nav {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.cal-nav:hover { background: rgba(255,255,255,0.2); }
.cal-grid {
    padding: 20px;
}
.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}
.cal-weekdays span {
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-light);
    padding: 4px;
}
.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    position: relative;
}
.cal-day:hover { background: #fdf6f0; color: var(--orange); }
.cal-day.empty { cursor: default; }
.cal-day.today {
    background: var(--orange);
    color: white;
}
.cal-day.has-regular::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
}
.cal-day.today.has-regular::after { background: white; }
.cal-day.has-special::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c05e10;
}
.cal-legend {
    display: flex;
    gap: 20px;
    padding: 0 20px 16px;
    font-size: 12px;
    color: var(--gray-light);
}
.cal-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.dot-reg {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--orange);
    display: inline-block;
}
.dot-spec {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #c05e10;
    display: inline-block;
}

/* Event List */
.event-list { display: flex; flex-direction: column; gap: 16px; }
.event-item {
    background: white;
    border-radius: 8px;
    padding: 18px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border-left: 4px solid var(--orange);
    transition: transform 0.2s;
}
.event-item:hover { transform: translateX(4px); }
.event-item.special { border-left-color: var(--orange-dark); }
.event-date-box {
    background: var(--orange);
    color: white;
    border-radius: 6px;
    padding: 8px 12px;
    text-align: center;
    flex-shrink: 0;
    min-width: 56px;
}
.event-item.special .event-date-box { background: var(--orange-dark); }
.event-date-box .day {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}
.event-date-box .mon {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}
.event-info {}
.event-type {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 3px;
}
.event-item.special .event-type { color: var(--orange-dark); }
.event-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--gray);
    margin-bottom: 4px;
}
.event-desc {
    font-size: 13px;
    color: var(--gray-light);
}
.event-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--orange-light);
    padding-bottom: 1px;
    transition: color 0.2s;
}
.event-link:hover { color: var(--orange-dark); }

/* ===== GALERIE / IMPRESSIONEN ===== */
#impressionen { background: white; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 200px 200px;
    gap: 12px;
    margin-top: 40px;
}
.gallery-item {
    border-radius: 6px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(232,119,34,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-overlay span {
    color: white;
    font-size: 28px;
}
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}
.gi-1 { background-image: url('https://images.unsplash.com/photo-1587300003388-59208cc962cb?w=600&q=80'); }
.gi-2 { background-image: url('https://images.unsplash.com/photo-1477884213360-7e9d7dcc1e48?w=400&q=80'); }
.gi-3 { background-image: url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?w=400&q=80'); }
.gi-4 { background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=400&q=80'); }
.gi-5 { background-image: url('https://images.unsplash.com/photo-1601758174493-45d0a4d3e407?w=400&q=80'); }
.gi-6 { background-image: url('https://images.unsplash.com/photo-1530281700549-e82e7bf110d6?w=400&q=80'); }

/* ===== KONTAKT ===== */
#kontakt { background: var(--gray-bg); }
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; }
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-item .ci-text .ci-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
}
.contact-item .ci-text .ci-value {
    font-size: 15px;
    color: var(--gray);
    font-weight: 600;
}

/* Form */
.contact-form { background: white; border-radius: 8px; padding: 36px; box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    color: var(--gray);
    font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
    background: white;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
    background: var(--orange);
    color: white;
    border: none;
    padding: 15px 36px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
    box-shadow: 0 4px 18px rgba(232,119,34,0.4);
}
.btn-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ===== ORANGE DIVIDER BANNER ===== */
.banner {
    background: var(--orange);
    padding: 60px 20px;
    text-align: center;
    color: white;
}
.banner h2 {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.banner p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 24px;
}
.btn-white {
    display: inline-block;
    background: white;
    color: var(--orange);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* ===== FOOTER ===== */
footer {
    background: var(--gray);
    color: #ccc;
    padding: 50px 20px 30px;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .brand-name {
    font-size: 18px;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: #aaa;
}
.footer-col h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    text-decoration: none;
    color: #aaa;
    font-size: 13px;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid #555;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #888;
}
.footer-bottom a { color: #888; text-decoration: none; }
.footer-bottom a:hover { color: var(--orange); }

/* ===== DETAIL-SEITEN SPEZIFISCH ===== */
.detail-section { background: white; }
.detail-section.alt { background: var(--gray-bg); }

.info-box {
    background: var(--gray-bg);
    border-left: 4px solid var(--orange);
    border-radius: 4px;
    padding: 20px 24px;
    margin: 24px 0;
}
.info-box p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

.trainer-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: start;
}
.trainer-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 3/4;
    background:
        linear-gradient(135deg, rgba(232,119,34,0.25) 0%, rgba(74,74,74,0.35) 100%),
        url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?w=600&q=80') center/cover no-repeat;
}
.trainer-facts {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}
.trainer-fact {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: var(--gray);
}
.trainer-fact:last-child { border-bottom: none; }
.trainer-fact::before {
    content: '✓';
    color: var(--orange);
    font-weight: 900;
    flex-shrink: 0;
}

.event-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}
.event-detail-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    overflow: hidden;
}
.event-detail-header {
    background: var(--orange-dark);
    color: white;
    padding: 24px;
}
.event-detail-header.regular { background: var(--orange); }
.event-detail-header h3 {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.event-detail-header .edt-type {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
}
.event-detail-body { padding: 24px; }
.event-meta-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.event-meta-item {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: var(--gray);
}
.event-meta-label {
    font-weight: 700;
    color: var(--orange);
    min-width: 80px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.btn-orange {
    display: inline-block;
    background: var(--orange);
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(232,119,34,0.35);
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    margin-top: 8px;
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* Angebote Detail */
.angebot-detail {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    margin-bottom: 40px;
}
.angebot-detail-header {
    background: var(--orange);
    color: white;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.angebot-detail-header h3 {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.angebot-detail-body {
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
}
.angebot-price-box {
    background: var(--gray-bg);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}
.angebot-price-box .price {
    font-size: 42px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}
.angebot-price-box .price-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-top: 6px;
    margin-bottom: 20px;
}

/* Impressum / Datenschutz */
.legal-content {
    max-width: 800px;
}
.legal-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 36px;
    margin-bottom: 12px;
}
.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 12px;
}
.legal-content a {
    color: var(--orange);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .about-grid, .mt-grid, .kontakt-grid { grid-template-columns: 1fr; }
    .mt-img { order: 1; }
    .mt-content { order: 2; }
    .cards-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-item.large { grid-column: span 1; grid-row: span 1; }
    .footer-inner { grid-template-columns: 1fr; }
    .calendar-wrapper { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .trainer-grid { grid-template-columns: 1fr; }
    .event-detail-grid { grid-template-columns: 1fr; }
    .angebot-detail-body { grid-template-columns: 1fr; }
    .angebot-detail-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 600px) {
    header { padding: 0 16px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .stats-row { gap: 20px; }
    .page-hero { height: 240px; }
}
