/* ==========================================================================
   CKE Campingplatz Krautsand — Stylesheet
   ========================================================================== */

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #2c3e2d;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green-dark); }

/* Farb-Variablen — Original CKE Corporate-Farbe */
:root {
    --green: #415b58;         /* Kevin's Vorgabe: R65 G91 B88 */
    --green-dark: #2f4442;    /* dunkler für Hover */
    --green-light: #5a7773;   /* heller für Akzente */
    --sand: #efe9d9;         /* Kevin's Vorgabe für Footer */
    --sand-light: #f5f1e5;   /* leicht heller für section-sand */
    --off-white: #f5f2ea;
    --text: #2c3e2d;
    --text-muted: #6b7a6c;
    --border: #d0d0c8;
}

/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    background: #fff;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0e8;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.brand-logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

/* Full-Logo (mit integriertem Schriftzug) */
.brand-logo-full {
    height: 72px;
    width: auto;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.brand-text strong {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--text);
}
.brand-text span {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Nav */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 36px;
}
.main-nav a {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 8px 4px;
    border-bottom: 2px solid transparent;
    transition: all .2s;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--green);
    border-bottom-color: var(--green);
}

/* Submenu-Dropdown */
.main-nav .has-submenu {
    position: relative;
}
.main-nav .submenu-arrow {
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
    transition: transform .2s;
}
.main-nav .has-submenu:hover .submenu-arrow {
    transform: rotate(180deg);
}
.main-nav .submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
    border-radius: 6px;
    padding: 8px 0;
    min-width: 240px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all .2s;
    z-index: 200;
    border-top: 3px solid var(--green);
}
.main-nav .has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.main-nav .submenu li {
    display: block;
}
.main-nav .submenu a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text);
    border: none;
    text-transform: none;
    white-space: nowrap;
    text-align: left;
}
.main-nav .submenu a:hover,
.main-nav .submenu a.active {
    background: var(--off-white);
    color: var(--green);
    border: none;
}

.header-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}
.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}
.icon-btn:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: space-between;
    padding: 6px 0;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: all .2s;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all .2s;
    text-align: center;
}
.btn-primary,
a.btn-primary {
    background: var(--green);
    color: #fff !important;
}
.btn-primary:hover,
a.btn-primary:hover {
    background: var(--green-dark);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(65,91,88,.35);
}
.btn-white {
    background: rgba(255,255,255,.95);
    color: var(--text);
}
.btn-white:hover {
    background: #fff;
    color: var(--green);
}
.btn-white-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}
.btn-white-outline:hover {
    background: #fff;
    color: var(--green);
    border-color: var(--green);
}
.btn-sand {
    background: var(--sand);
    color: var(--green-dark);
}
.btn-sand:hover {
    background: var(--sand-light);
    color: var(--green-dark);
    transform: translateY(-1px);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--green);
    color: var(--green);
}
.btn-outline:hover {
    background: var(--green);
    color: #fff;
}
.btn-lg {
    padding: 18px 40px;
    font-size: 14px;
}

/* ==========================================================================
   Hero (nur Bild + Buchungs-Button, kein H1)
   ========================================================================== */
.hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 60px 24px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.3);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}
.hero-title {
    font-size: clamp(32px, 5.5vw, 68px);
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-shadow: 0 2px 24px rgba(0,0,0,.5);
}

/* ==========================================================================
   Hero-Page (grüner Block für Unterseiten)
   ========================================================================== */
.hero-page {
    background: var(--green);
    color: #fff;
    padding: 80px 0 90px;
    text-align: center;
}
.hero-page-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: .9;
    margin-bottom: 24px;
}
.hero-page-title {
    font-size: clamp(40px, 6vw, 88px);
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
    padding: 90px 0;
}
.section-light {
    background: var(--off-white);
}
.section-sand {
    background: var(--sand-light);
}
.text-center { text-align: center; }

.section h2 {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 600;
    color: var(--green-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.2;
}

.section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--green);
    margin: 20px auto 0;
    border-radius: 3px;
}

/* Moin-Grid: 2-spaltig */
.moin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.moin-text {
    text-align: left;
}
.section-heading {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 32px;
}
.moin-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.moin-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.moin-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.moin-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content-Grid: 2-spaltig (Bild/Text) */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.content-grid-reverse .content-image {
    order: 2;
}
.content-grid-reverse .content-text {
    order: 1;
}
.content-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,.12);
}
.content-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.content-text h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: left;
}
.content-text h2::after {
    display: none;
}
.content-text h2 .emoji {
    text-transform: none;
    letter-spacing: 0;
    display: inline-block;
    margin-left: 4px;
}
.content-lead {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Feature-List: grüne Bullet-Punkte */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 18px;
    height: 18px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(74,124,58,.15);
}
.feature-list li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 14px;
    width: 8px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}
.feature-list a {
    color: var(--green);
    text-decoration: underline;
}

/* ==========================================================================
   Legal-Content (Impressum, Datenschutz, AGB, Cookies)
   ========================================================================== */
.legal-content {
    color: var(--text);
    line-height: 1.75;
}
.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 1px;
    text-transform: none;
    text-align: left;
    margin: 40px 0 16px;
    line-height: 1.3;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h2::after { display: none; }
.legal-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 32px 0 12px;
    line-height: 1.4;
}
.legal-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--green-dark);
    margin: 24px 0 8px;
}
.legal-content p {
    margin-bottom: 16px;
    color: var(--text);
    font-size: 15px;
}
.legal-content ul {
    margin: 12px 0 20px 24px;
    padding: 0;
}
.legal-content li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
}
.legal-content a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--green-dark); }
.legal-content address {
    font-style: normal;
    color: var(--text-muted);
}

/* ==========================================================================
   Buchungsformular (Kontakt-Seite)
   ========================================================================== */
.booking-form {
    max-width: 780px;
    margin: 0 auto;
    color: #fff;
}
.form-section {
    margin-bottom: 8px;
}
.form-section h3 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255,255,255,.25);
}
.form-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,.2);
    margin: 32px 0;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-field > span,
.form-field > legend {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    letter-spacing: .5px;
    padding: 0;
}
.form-field em {
    color: #ffd88a;
    font-style: normal;
    margin-left: 2px;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    line-height: 1.4;
    transition: all .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,.3);
}
.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23415b58' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio-Buttons horizontal */
.form-radio-group {
    border: none;
    padding: 0;
    margin: 0;
}
.form-radio-group legend {
    margin-bottom: 10px;
}
.form-radio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 28px;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
}
.form-radio input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #fff;
    cursor: pointer;
}

/* Submit-Bereich */
.form-submit {
    text-align: center;
    margin-top: 40px;
}
.form-hint {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,.7);
    margin-top: 16px;
}

/* Captcha-Feld */
.form-field-captcha {
    max-width: 300px;
}
.form-field-captcha input {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    max-width: 120px;
}

/* Erfolgs-/Fehler-Boxen */
.form-success {
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 10px;
    padding: 32px 28px;
    text-align: center;
    color: #fff;
    max-width: 640px;
    margin: 0 auto;
}
.form-success h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.form-success p { color: rgba(255,255,255,.9); font-size: 15px; line-height: 1.6; }
.form-error {
    background: rgba(220, 80, 60, .2);
    border: 2px solid rgba(255, 180, 170, .4);
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 32px;
    color: #fff;
}
.form-error ul {
    margin: 8px 0 0 20px;
    padding: 0;
}
.form-error li {
    font-size: 14px;
    line-height: 1.6;
}

/* Ausflugsziel-Grid: 2-Spalten beige Karten mit Icon */
.ausflug-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.ausflug-card {
    background: var(--sand);
    border-radius: 10px;
    padding: 32px 36px 34px;
}
.ausflug-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    /* SVG-Icons sind standardmäßig schwarz; einfärben über CSS-Filter
       auf ~ #415b58 (Corporate-Grün) */
    filter: brightness(0) saturate(100%) invert(31%) sepia(9%) saturate(896%) hue-rotate(125deg) brightness(94%) contrast(89%);
    opacity: .9;
}
.ausflug-card h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.3;
}
.ausflug-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}
.ausflug-card a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.ausflug-card a:hover {
    color: var(--green-dark);
}

/* Section mit grünem Hero-Hintergrund (Bildergalerie) */
.section-hero-green {
    background: var(--green);
    color: #fff;
}
.section-hero-green h2 {
    color: #fff;
}
.section-hero-green h2::after {
    background: rgba(255,255,255,.5);
}
.text-white { color: #fff; }

/* Bildergalerie: 3-4 Spalten */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.galerie-item {
    margin: 0;
    background: rgba(0,0,0,.15);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,.2);
    transition: transform .25s;
}
.galerie-item:hover {
    transform: translateY(-3px);
}
.galerie-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.galerie-item figcaption {
    padding: 12px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    background: rgba(0,0,0,.15);
}

/* Regeln-Grid (Urlaub mit Hund): 2x2 beige Karten */
.rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.rule-box {
    background: var(--sand);
    border-radius: 10px;
    padding: 40px 44px;
}
.rule-box h3 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.3;
}
.rule-box p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* Preis-Tabelle */
.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.price-table thead th {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 20px 20px 24px;
    text-align: left;
    border-bottom: none;
}
.price-table thead th.col-price {
    text-align: right;
}
.price-table tbody tr:nth-child(odd) {
    background: #f5f5f2;
}
.price-table tbody tr:nth-child(even) {
    background: #fff;
}
.price-table tbody td {
    padding: 20px 20px;
    color: var(--text);
    line-height: 1.5;
    vertical-align: middle;
    border: none;
}
.price-table td.col-price {
    text-align: right;
    font-weight: 600;
    color: var(--green-dark);
    white-space: nowrap;
    padding-left: 20px;
}
.price-table td.col-desc {
    padding-right: 20px;
}

/* Info-Block (Stromanschluss/WLAN, zentriert) */
.info-block-text {
    text-align: center;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 20px;
}
.info-block-text:last-child {
    margin-bottom: 0;
}

/* Platzplan-Box */
.platzplan-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 15px 45px rgba(0,0,0,.1);
    max-width: 1000px;
    margin: 0 auto 40px;
    border: 1px solid var(--border);
}
.platzplan-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* Bild-Platzhalter (temporär bis Kevin Gogo4Camper hochlädt) */
.image-placeholder {
    background: linear-gradient(135deg, #f5f2ea 0%, #e8e3d3 100%);
    border: 2px dashed var(--green);
    border-radius: 12px;
    padding: 80px 40px;
    text-align: center;
    color: var(--text-muted);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.image-placeholder span {
    font-size: 64px;
}
.image-placeholder p {
    margin: 0;
    line-height: 1.6;
}
.image-placeholder code {
    background: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--green-dark);
    font-family: monospace;
}

.section-lead {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.75;
}

.section-image {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
    position: relative;
}
.section-image img {
    width: 100%;
    height: auto;
    display: block;
}
/* Panorama-Variante (breites Luftbild mit eingebrannten Awards) */
.section-image-panorama {
    max-width: 1200px;
    border-radius: 12px;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* Award-Badges */
.awards {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3;
}
.awards-left {
    top: 24px;
    left: 24px;
}
.awards-bottom-right {
    bottom: 24px;
    right: 24px;
}
.award-badge {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    line-height: 1.15;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    padding: 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.award-green {
    background: var(--green);
    color: #fff;
}
.award-green .award-thumb {
    font-size: 22px;
    margin-bottom: 2px;
    line-height: 1;
}
.award-green .award-label {
    font-size: 7px;
    opacity: .85;
    margin-bottom: 2px;
}
.award-green .award-year {
    font-size: 8px;
    font-weight: 700;
}
.award-gold {
    background: linear-gradient(135deg, #f4c430 0%, #d4a017 100%);
    color: #4a3800;
    width: 100px;
    height: 100px;
    border: 3px solid #fff;
}
.award-gold .award-label {
    font-size: 7px;
    margin-bottom: 4px;
}
.award-gold .award-year {
    font-size: 10px;
    line-height: 1.3;
}
.award-gold .award-year strong {
    font-size: 12px;
    display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--sand);
    color: var(--text);
    padding-top: 60px;
    margin-top: 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}
.footer-logo {
    width: 60px;
    height: 60px;
}
.footer-logo-full {
    height: 80px;
    width: auto;
    display: block;
}
.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.footer-brand-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: .5px;
}
.footer-brand-text span {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--text);
}
.footer-col a {
    color: var(--green-dark);
}
.footer-col a:hover {
    color: var(--green);
}
.footer-cta {
    display: flex;
    align-items: flex-start;
}
.footer-nav {
    list-style: none;
}
.footer-nav li {
    margin-bottom: 8px;
}
.footer-nav a {
    font-size: 14px;
    color: var(--text);
}

.footer-bottom {
    background: rgba(0,0,0,.06);
    padding: 20px 0;
    font-size: 13px;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom .legal {
    list-style: none;
    display: flex;
    gap: 24px;
}
.footer-bottom .legal a {
    color: var(--text);
}
.footer-bottom .copy {
    color: var(--text-muted);
    font-size: 12px;
}

/* ==========================================================================
   Cookie-Banner
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
    padding: 20px 0;
    z-index: 200;
    border-top: 3px solid var(--green);
}
.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-banner p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
}
.cookie-actions {
    display: flex;
    gap: 12px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
        padding: 20px 0;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .main-nav a {
        display: block;
        padding: 12px 20px;
    }
    body.nav-open .main-nav { display: block; }

    .nav-toggle { display: flex; }

    /* Submenu auf Mobile: immer ausgeklappt anzeigen */
    .main-nav .submenu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-top: none;
        padding: 0 0 8px;
        background: transparent;
    }
    .main-nav .submenu a {
        padding: 8px 24px;
        font-size: 12px;
        color: var(--text-muted);
    }
    .main-nav .submenu-arrow { display: none; }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .moin-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .moin-text { text-align: center; }
    .moin-buttons { justify-content: center; }
    .section-heading { font-size: 42px; }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .content-grid-reverse .content-image { order: 1; }
    .content-grid-reverse .content-text { order: 2; }
    .content-text h2 { text-align: center; }

    .rules-grid,
    .ausflug-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Formular auf Mobile */
    .form-row-2,
    .form-row-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .galerie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .galerie-item img { height: 140px; }

    /* Preistabelle: bei kleinen Screens Preis unter Beschreibung */
    .price-table thead { display: none; }
    .price-table tbody tr {
        display: block;
        padding: 14px 16px;
    }
    .price-table tbody td {
        display: block;
        padding: 4px 0;
    }
    .price-table td.col-price {
        text-align: left;
        font-size: 17px;
        padding-top: 6px;
    }

    .award-badge { width: 70px; height: 70px; }
    .award-gold { width: 80px; height: 80px; }
    .awards-left { top: 12px; left: 12px; }
    .awards-bottom-right { bottom: 12px; right: 12px; }
}

@media (max-width: 640px) {
    .container { padding: 0 16px; }
    .brand-text { display: none; }
    .brand-logo-full { height: 52px; }
    .footer-logo-full { height: 64px; }
    .section { padding: 60px 0; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .cookie-banner .container { flex-direction: column; text-align: center; }
    .header-icons .icon-btn { width: 38px; height: 38px; }
}
