/*
 * =============================================================
 *  International Club Berlin — CI Override Stylesheet
 *  Version 5.0 | April 2026  —  Luxury Editorial Edition
 *
 *  Inspired by: Aman Resorts, Edition Hotels, Soho House
 *  Ultra-minimal, dramatic type, editorial spacing
 *
 *  CI Palette + Typography: unchanged
 * =============================================================
 */

/* ── FONT FACES ──────────────────────── */

@font-face { font-family:'Charter'; src:url('./Fonts/charter/webfonts/charter_regular-webfont.woff') format('woff'), url('./Fonts/charter/ttf/Charter Regular.ttf') format('truetype'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Charter'; src:url('./Fonts/charter/webfonts/charter_italic-webfont.woff') format('woff'), url('./Fonts/charter/ttf/Charter Italic.ttf') format('truetype'); font-weight:400; font-style:italic; font-display:swap; }
@font-face { font-family:'Charter'; src:url('./Fonts/charter/webfonts/charter_bold-webfont.woff') format('woff'), url('./Fonts/charter/ttf/Charter Bold.ttf') format('truetype'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Inter'; src:url('./Fonts/Inter/web/Inter-Light.woff2') format('woff2'); font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:'Inter'; src:url('./Fonts/Inter/web/Inter-Regular.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Inter'; src:url('./Fonts/Inter/web/Inter-Medium.woff2') format('woff2'); font-weight:500; font-style:normal; font-display:swap; }

/* ── CSS VARS ────────────────────────── */

:root {
    --icb-green:       #2F3D2C;
    --icb-beige:       #FEF9F3;
    --icb-ochre:       #F8D794;
    --icb-brown:       #73351C;
    --icb-green-hover: #3d5239;
    --icb-brown-hover: #5a2a15;
    --font-serif:      'Charter', Georgia, 'Times New Roman', serif;
    --font-sans:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── BASE ────────────────────────────── */

html, body {
    background-color: var(--icb-beige) !important;
    color:            var(--icb-green) !important;
    font-family:      var(--font-sans) !important;
    font-weight:      300              !important;
    scroll-behavior:  smooth           !important;
    overflow-x:       hidden           !important;
}

img.wp-smiley, img.emoji { display: none !important; }

.wrapper { animation: v5In 0.8s ease-out !important; }
@keyframes v5In { from { opacity: 0; } to { opacity: 1; } }

/* ── TYPOGRAPHY — dramatic editorial ── */

h1, h2 {
    font-family:    var(--font-serif) !important;
    font-weight:    400               !important;
    text-transform: none              !important;
    color:          var(--icb-green)  !important;
    letter-spacing: -0.01em           !important;
    line-height:    1.1               !important;
}

h3 {
    font-family:    var(--font-sans)  !important;
    font-weight:    500               !important;
    color:          var(--icb-green)  !important;
    letter-spacing: 0.15em            !important;
    text-transform: uppercase         !important;
    font-size:      0.82rem           !important;
}

h4, h5, h6 { font-family: var(--font-sans) !important; font-weight: 500 !important; }

p {
    font-family: var(--font-sans) !important; font-weight: 300 !important;
    color: var(--icb-green) !important; font-size: 1.05rem !important; line-height: 1.9 !important;
}

p strong { font-weight: 500 !important; }
a { color: var(--icb-green) !important; text-decoration: none !important; }
a:hover { color: var(--icb-brown) !important; }

/* Remove ornaments */
.textBox_whithIconHead h2::after, .pageIntroHead.membersIntroHead h1::after,
.pageIntro.pageIntroSmall h1::after, h1.withDec::after { display: none !important; }

/* Section headings: dramatic + ochre underline */
.textBox_whithIconHead h2 {
    font-size: clamp(2rem, 4vw, 3.2rem) !important; margin-bottom: 40px !important;
    padding-bottom: 24px !important; position: relative !important; letter-spacing: -0.02em !important;
}
.textBox_whithIconHead h2::before {
    content: '' !important; display: block !important; position: absolute !important;
    bottom: 0 !important; left: 50% !important; transform: translateX(-50%) !important;
    width: 100px !important; height: 1px !important; background: var(--icb-ochre) !important;
}

.w-60 { max-width: 720px !important; }

/* ── HEADER — frosted bar with integrated nav ── */

.header {
    background:    rgba(47, 61, 44, 0.97) !important;
    height:        auto                    !important;
    border-bottom: none                    !important;
    backdrop-filter: blur(12px)            !important;
    -webkit-backdrop-filter: blur(12px)    !important;
    flex-wrap:     wrap                    !important;
    position:      relative               !important;
    z-index:       100                     !important;
}

/* Logo row: reduce height */
.header > .container-fluid > .row {
    min-height: 64px !important;
}

a.mainHeadLogoLink img { max-height: 44px !important; }

/* ══════════════════════════════════════════
   DESKTOP (min 992px): horizontal top nav
   ══════════════════════════════════════════ */

@media (min-width: 992px) {
    /* Hide hamburger on desktop */
    .outer-menu .hamburger,
    .outer-menu .checkbox-toggle {
        display: none !important;
    }

    /* Make menu always visible, inline, not fixed */
    .outer-menu .menu {
        position:       static     !important;
        width:          auto       !important;
        height:         auto       !important;
        display:        block      !important;
        pointer-events: auto       !important;
        visibility:     visible    !important;
        z-index:        auto       !important;
        background:     none       !important;
    }

    .outer-menu .menu > div {
        position:        static        !important;
        width:           100%          !important;
        max-width:       100%          !important;
        height:          auto          !important;
        background:      transparent   !important;
        backdrop-filter: none          !important;
        border:          none          !important;
        overflow:        visible       !important;
        transform:       none          !important;
        transition:      none          !important;
        display:         block         !important;
        opacity:         1             !important;
    }

    .outer-menu .menu > div > div {
        display: block !important;
        height:  auto  !important;
        opacity: 1     !important;
    }

    /* Hide the duplicate logo & footer links inside overlay */
    .outer-menu .menu .menuHeader { display: none !important; }
    .outer-menu .menu .headerDark  { display: none !important; }

    /* Expand the hamburger column to full width for the nav bar */
    .header > .container-fluid > .row > .col-3:first-child {
        flex:       0 0 100%  !important;
        max-width:  100%      !important;
        order:      3         !important;
        padding:    0         !important;
        background: rgba(47, 61, 44, 0.6) !important;
        border-top: 1px solid rgba(248, 215, 148, 0.08) !important;
    }

    /* Center logo column */
    .header > .container-fluid > .row > .col-6 {
        flex:     0 0 100%  !important;
        max-width: 100%     !important;
        order:    1         !important;
        padding:  12px 0    !important;
    }

    /* Hide right placeholder */
    .header > .container-fluid > .row > .col-3:last-child {
        display: none !important;
    }

    /* ── Menu container: horizontal row ── */
    .outer-menu .menu .container.pt-5.pb-5 {
        padding:   0        !important;
        max-width: 100%     !important;
        overflow:  visible  !important;
    }

    .outer-menu .menu .container.pt-5.pb-5 > .row,
    .outer-menu .menu .container.pt-5.pb-5 > .row.d-flex.flex-row {
        display:         flex                !important;
        flex-direction:  row                 !important;
        flex-wrap:       nowrap              !important;
        justify-content: center              !important;
        margin:          0                   !important;
        padding:         0                   !important;
        gap:             0                   !important;
    }

    /* Each menu column: auto width */
    .outer-menu .menu .container.pt-5.pb-5 > .row > .col-12,
    .outer-menu .menu .container.pt-5.pb-5 > .row > [class*="col-"] {
        flex:      0 0 auto  !important;
        max-width: none      !important;
        width:     auto      !important;
        padding:   0         !important;
        margin:    0         !important;
        display:   block     !important;
        position:  relative  !important;
    }

    /* ── Top-level nav items: horizontal ── */
    ul.headerMenu {
        padding: 0 !important; margin: 0 !important; list-style: none !important;
    }
    ul.headerMenu > li {
        border-bottom: none !important;
        display: inline-block !important;
        position: relative !important;
    }
    ul.headerMenu > li > a {
        color:          rgba(254, 249, 243, 0.75) !important;
        font-family:    var(--font-sans)  !important;
        font-weight:    300               !important;
        text-transform: uppercase         !important;
        font-size:      0.7rem            !important;
        letter-spacing: 0.14em            !important;
        display:        block             !important;
        padding:        14px 18px         !important;
        text-decoration: none             !important;
        transition:     color 0.3s ease   !important;
        opacity:        1                 !important;
        white-space:    nowrap            !important;
    }
    ul.headerMenu > li > a:hover {
        color:        var(--icb-ochre) !important;
        padding-left: 18px            !important;
        opacity:      1               !important;
    }

    /* ── Dropdown sub-menus: hidden by default ── */
    ul.headerMenu .sub-menu {
        display:        none               !important;
        position:       absolute           !important;
        top:            100%               !important;
        left:           0                  !important;
        min-width:      220px              !important;
        background:     rgba(47, 61, 44, 0.97) !important;
        backdrop-filter: blur(16px)        !important;
        -webkit-backdrop-filter: blur(16px) !important;
        padding:        12px 0             !important;
        margin:         0                  !important;
        list-style:     none               !important;
        z-index:        1000               !important;
        border-top:     2px solid var(--icb-ochre) !important;
        box-shadow:     0 8px 32px rgba(0, 0, 0, 0.2) !important;
    }

    /* Show on hover */
    ul.headerMenu > li:hover > .sub-menu {
        display: block !important;
    }

    ul.headerMenu li li a {
        color:          rgba(254, 249, 243, 0.6) !important;
        font-family:    var(--font-sans)         !important;
        font-weight:    300                      !important;
        font-size:      0.78rem                  !important;
        display:        block                    !important;
        padding:        7px 24px                 !important;
        text-decoration: none                    !important;
        transition:     all 0.2s ease            !important;
        letter-spacing: 0.02em                   !important;
        white-space:    nowrap                   !important;
    }
    ul.headerMenu li li a:hover {
        color:      var(--icb-ochre) !important;
        padding-left: 30px           !important;
    }
}

/* ══════════════════════════════════════════
   MOBILE (max 991px): hamburger + fullscreen overlay
   ══════════════════════════════════════════ */

@media (max-width: 991px) {
    .outer-menu .hamburger > div,
    .outer-menu .hamburger > div::before,
    .outer-menu .hamburger > div::after {
        background: var(--icb-ochre) !important; height: 2px !important;
    }
    .outer-menu .checkbox-toggle:checked + .hamburger > div { background: var(--icb-beige) !important; }
    .outer-menu .checkbox-toggle:checked + .hamburger > div::before,
    .outer-menu .checkbox-toggle:checked + .hamburger > div::after { background: var(--icb-beige) !important; }

    .outer-menu .menu {
        position: fixed !important; top: 0 !important; left: 0 !important;
        width: 100vw !important; height: 100vh !important;
        display: block !important; z-index: 999 !important;
    }
    .outer-menu .checkbox-toggle:checked ~ .menu { background: rgba(47, 61, 44, 0.4) !important; }

    .outer-menu .menu > div {
        position: fixed !important; top: 0 !important; left: 0 !important;
        width: 100vw !important; max-width: 100vw !important; height: 100vh !important;
        background: rgba(47, 61, 44, 0.97) !important;
        backdrop-filter: blur(20px) !important;
        border: none !important; overflow-y: auto !important;
        transform: translateY(-100%) !important;
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
        z-index: 1000 !important; display: flex !important; flex-direction: column !important;
    }
    .outer-menu .checkbox-toggle:checked ~ .menu > div {
        transform: translateY(0) !important; top: 0 !important;
    }
    .outer-menu .menu > div > div {
        display: flex !important; flex-direction: column !important;
        height: 100% !important; text-align: center !important;
    }

    .outer-menu .menu .menuHeader {
        height: auto !important; min-height: 64px !important;
        border-bottom: 1px solid rgba(248, 215, 148, 0.1) !important; padding: 0 !important;
    }
    .outer-menu .menu .menuHeader .col-3 { display: none !important; }
    .outer-menu .menu .menuHeader .col-6 { flex: 0 0 100% !important; max-width: 100% !important; padding: 12px 24px !important; }
    .outer-menu .menu .menuHeader .col-6 img.logo-img { max-height: 36px !important; }

    .outer-menu .menu .container.pt-5.pb-5 { padding: 0 !important; flex: 1 1 auto !important; overflow-y: auto !important; }
    .outer-menu .menu .container.pt-5.pb-5 > .row,
    .outer-menu .menu .container.pt-5.pb-5 > .row.d-flex.flex-row { display: block !important; margin: 0 !important; padding: 16px 0 !important; }
    .outer-menu .menu .container.pt-5.pb-5 > .row > .col-12,
    .outer-menu .menu .container.pt-5.pb-5 > .row > [class*="col-"] { flex: none !important; max-width: 100% !important; width: 100% !important; padding: 0 !important; margin: 0 !important; display: block !important; }

    ul.headerMenu { padding: 0 !important; margin: 0 !important; list-style: none !important; }
    ul.headerMenu > li { border-bottom: none !important; }
    ul.headerMenu > li > a {
        color: var(--icb-beige) !important; font-family: var(--font-serif) !important;
        font-weight: 400 !important; text-transform: none !important;
        font-size: 1.4rem !important; display: block !important;
        padding: 10px 0 !important; text-decoration: none !important;
        transition: all 0.3s ease !important; opacity: 0.75 !important;
    }
    ul.headerMenu > li > a:hover { color: var(--icb-ochre) !important; opacity: 1 !important; }

    ul.headerMenu .sub-menu { padding: 0 0 8px 0 !important; margin: 0 !important; list-style: none !important; }
    ul.headerMenu li li a {
        color: rgba(254, 249, 243, 0.4) !important; font-family: var(--font-sans) !important;
        font-weight: 300 !important; font-size: 0.82rem !important; display: block !important;
        padding: 4px 0 !important; text-decoration: none !important;
        letter-spacing: 0.04em !important;
    }
    ul.headerMenu li li a:hover { color: var(--icb-ochre) !important; }

    .headerDark {
        background: transparent !important; margin-top: auto !important;
        border-top: 1px solid rgba(248, 215, 148, 0.08) !important;
    }
    ul.headerMenuDark { padding: 12px 0 !important; margin: 0 !important; list-style: none !important; display: flex !important; flex-wrap: wrap !important; justify-content: center !important; }
    ul.headerMenuDark li { flex: 0 0 auto !important; }
    ul.headerMenuDark li a {
        color: rgba(254, 249, 243, 0.35) !important; font-size: 0.72rem !important;
        padding: 6px 12px !important; letter-spacing: 0.06em !important;
    }
    ul.headerMenuDark li a:hover { color: var(--icb-ochre) !important; }
}

.menuHeader { background: transparent !important; height: auto !important; }

.outer-menu .menu > div::-webkit-scrollbar { width: 0; }

/* ── HERO — cinematic ────────────────── */

.pageIntro::after {
    background: linear-gradient(180deg, transparent 0%, rgba(47, 61, 44, 0.15) 30%, rgba(47, 61, 44, 0.75) 100%) !important;
}
.pageIntroHead h1 {
    font-family: var(--font-serif) !important; font-weight: 400 !important;
    text-transform: none !important; font-size: clamp(2.8rem, 6vw, 5.5rem) !important;
    letter-spacing: -0.02em !important; color: var(--icb-beige) !important;
    line-height: 1.05 !important;
}
.pageIntroHead h2 {
    font-family: var(--font-sans) !important; font-weight: 300 !important;
    font-style: normal !important; text-transform: uppercase !important;
    font-size: clamp(0.72rem, 1.4vw, 0.88rem) !important; letter-spacing: 0.25em !important;
    color: var(--icb-ochre) !important; opacity: 0.85; margin-top: 20px !important;
}

/* ── BUTTONS — pill shape ────────────── */

.goldButton .ow-button-base a {
    background: var(--icb-ochre) !important; color: var(--icb-green) !important;
    font-family: var(--font-sans) !important; font-size: 0.72rem !important;
    font-weight: 500 !important; letter-spacing: 0.18em !important;
    text-transform: uppercase !important; border-radius: 50px !important;
    border: none !important; padding: 16px 48px !important; transition: all 0.4s ease !important;
}
.goldButton .ow-button-base a:hover { background: var(--icb-green) !important; color: var(--icb-ochre) !important; transform: scale(1.03) !important; }

.darkGreyButton .ow-button-base a {
    background: transparent !important; color: var(--icb-green) !important;
    border: 1px solid rgba(47, 61, 44, 0.3) !important; font-family: var(--font-sans) !important;
    font-size: 0.72rem !important; font-weight: 500 !important; letter-spacing: 0.18em !important;
    text-transform: uppercase !important; border-radius: 50px !important;
    padding: 16px 48px !important; transition: all 0.4s ease !important;
}
.darkGreyButton .ow-button-base a:hover { background: var(--icb-green) !important; color: var(--icb-beige) !important; border-color: var(--icb-green) !important; }

.darkGreenBG .darkGreyButton .ow-button-base a, .darkGreenWithBackgoundBG .darkGreyButton .ow-button-base a,
.innerIntro .darkGreyButton .ow-button-base a, .HomeBoxAbsolute .darkGreyButton .ow-button-base a,
.pageIntroAktuell .darkGreyButton .ow-button-base a {
    color: var(--icb-beige) !important; border: 1px solid rgba(254,249,243,0.3) !important;
}
.darkGreenBG .darkGreyButton .ow-button-base a:hover, .darkGreenWithBackgoundBG .darkGreyButton .ow-button-base a:hover,
.innerIntro .darkGreyButton .ow-button-base a:hover, .HomeBoxAbsolute .darkGreyButton .ow-button-base a:hover,
.pageIntroAktuell .darkGreyButton .ow-button-base a:hover {
    background: var(--icb-ochre) !important; color: var(--icb-green) !important; border-color: var(--icb-ochre) !important;
}

.blackButton .ow-button-base a {
    background: var(--icb-brown) !important; color: var(--icb-beige) !important;
    font-family: var(--font-sans) !important; font-size: 0.72rem !important;
    font-weight: 500 !important; letter-spacing: 0.18em !important;
    text-transform: uppercase !important; border-radius: 50px !important;
    border: none !important; padding: 16px 48px !important; transition: all 0.4s ease !important;
}
.blackButton .ow-button-base a:hover { background: var(--icb-green) !important; color: var(--icb-ochre) !important; }

.btn-primary {
    background: var(--icb-ochre) !important; color: var(--icb-green) !important;
    border: none !important; border-radius: 50px !important;
    font-family: var(--font-sans) !important; font-weight: 500 !important;
    font-size: 0.72rem !important; letter-spacing: 0.18em !important;
    text-transform: uppercase !important; padding: 14px 40px !important; transition: all 0.4s ease !important;
}
.btn-primary:hover, .btn-primary:focus { background: var(--icb-green) !important; color: var(--icb-ochre) !important; }

/* ── SUB-PAGE NAV ICONS ──────────────── */
.subPageLine, .subPageLine.withBorders { background-color: var(--icb-green) !important; }
.subPageLine.withBorders:before, .subPageLine.withBorders:after { background-color: var(--icb-green) !important; }
.subPageButton { width: 90% !important; margin: 0 auto !important; padding: 28px 0 !important; }
.subPageButton a.ow-icon-placement-top {
    display: flex !important; flex-direction: column !important; align-items: center !important;
    position: static !important; margin: 0 auto !important; width: 95% !important;
    background: transparent !important; border: none !important; text-decoration: none !important;
    color: var(--icb-beige) !important; font-family: var(--font-sans) !important;
    font-weight: 300 !important; font-size: 0.78rem !important; text-transform: uppercase !important;
    letter-spacing: 0.2em !important; transition: all 0.3s ease !important; opacity: 0.7 !important;
}
.subPageButton a.ow-icon-placement-top:hover { opacity: 1 !important; color: var(--icb-ochre) !important; }
.subPageButton a.ow-icon-placement-top > span { display: flex !important; flex-direction: column !important; align-items: center !important; gap: 14px !important; width: 100% !important; }
.subPageButton a.ow-icon-placement-top .sow-icon-image {
    position: static !important; float: none !important; display: block !important;
    width: 60px !important; height: 48px !important; margin: 0 auto !important;
    background-color: transparent !important; background-size: contain !important;
    background-position: center !important; background-repeat: no-repeat !important; opacity: 0.6 !important;
}

/* ── DARK GREEN SECTIONS ─────────────── */
.darkGreenBG { background: var(--icb-green) !important; }
.darkGreenWithBackgoundBG { background-color: var(--icb-green) !important; }
.darkGreenBG h1, .darkGreenBG h2, .darkGreenBG h3, .darkGreenWithBackgoundBG h1, .darkGreenWithBackgoundBG h2, .darkGreenWithBackgoundBG h3 { color: var(--icb-beige) !important; }
.darkGreenBG p, .darkGreenWithBackgoundBG p { color: rgba(254, 249, 243, 0.75) !important; }

/* ── TEASER BOXES — flat editorial ───── */
.greenGreyBoxHolder { background: var(--icb-green) !important; border: none !important; padding: 0 !important; }
.greenGreyBoxHolder h3 { color: var(--icb-ochre) !important; font-weight: 300 !important; font-size: 0.72rem !important; letter-spacing: 0.2em !important; }
.greenGreyBoxHolder p { color: rgba(254, 249, 243, 0.5) !important; font-size: 0.88rem !important; }
.greenGreyBoxHolder a { color: var(--icb-beige) !important; text-decoration: none !important; }
.greenGreyTeaserInner { background: transparent !important; border-bottom: 1px solid rgba(248, 215, 148, 0.15) !important; transition: all 0.4s ease !important; padding: 36px 16px !important; }
.greenGreyTeaserInner:hover { background: rgba(254, 249, 243, 0.04) !important; transform: none !important; }
@media only screen and (min-width: 768px) { .greenGreyBoxesInnerHolder .col-12 { border-left: 1px solid rgba(248, 215, 148, 0.08) !important; border-right: 1px solid rgba(248, 215, 148, 0.08) !important; } }

/* ── EVENTS ──────────────────────────── */
.row.eventsListLoop { background-color: var(--icb-beige) !important; border-bottom: 1px solid rgba(47, 61, 44, 0.06) !important; margin-bottom: 0 !important; transition: all 0.4s ease !important; }
.row.eventsListLoop:hover { background-color: rgba(47, 61, 44, 0.02) !important; }
.eventsListLoop h3 { color: var(--icb-green) !important; font-family: var(--font-serif) !important; font-weight: 400 !important; font-size: 1.2rem !important; text-transform: none !important; letter-spacing: -0.01em !important; }
.eventsListLoop h3 a { color: var(--icb-green) !important; }
.eventsListLoop h3 a:hover { color: var(--icb-brown) !important; }
.eventsListLoop p { color: rgba(47, 61, 44, 0.6) !important; font-size: 0.9rem !important; }
.eventsListLoop .event-excerpt { color: rgba(47, 61, 44, 0.5) !important; font-size: 0.88rem !important; }
.eventFooterLine { background: var(--icb-green) !important; color: var(--icb-beige) !important; font-family: var(--font-sans) !important; font-weight: 300 !important; font-size: 0.7rem !important; text-transform: uppercase !important; letter-spacing: 0.12em !important; }
.eventFooterLine a { color: var(--icb-ochre) !important; }

/* ── GALLERY ─────────────────────────── */
.galLink { overflow: hidden !important; }
.galLink img { transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), filter 0.7s ease !important; }
.galLink:hover img { transform: scale(1.08) !important; filter: contrast(1.05) !important; }
.galDescr { background: rgba(47, 61, 44, 0.9) !important; color: var(--icb-beige) !important; font-family: var(--font-sans) !important; font-weight: 300 !important; font-size: 0.7rem !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; }
.galBigDesc { background: var(--icb-green) !important; color: var(--icb-beige) !important; font-weight: 300 !important; font-size: 0.85rem !important; }
#galModal .modal-content { background: var(--icb-green) !important; border-radius: 0 !important; border: none !important; }
#galModal .modal-header, #galModal .modal-footer { border-color: rgba(254, 249, 243, 0.08) !important; }
#galModal .btn-close { filter: invert(1) !important; }
#galModal .carousel-control-prev, #galModal .carousel-control-next { color: var(--icb-ochre) !important; opacity: 0.8 !important; }

/* ── ICON FEATURE BOXES ──────────────── */
.lightGreyBg { background: var(--icb-green) !important; padding: 48px 0 !important; }
.greenBoxesHolder .greenTeaserInner.greenBoxWithIcon { background: transparent !important; transition: all 0.4s ease !important; border-bottom: none !important; border: 1px solid rgba(248, 215, 148, 0.1) !important; padding: 36px 16px !important; }
.greenBG a:hover .greenTeaserInner.greenBoxWithIcon, .greenBoxesHolder .greenBG:hover .greenTeaserInner { background: rgba(254, 249, 243, 0.05) !important; border-color: rgba(248, 215, 148, 0.25) !important; }
.greenBoxesHolder .greenTeaserInner h3 { color: var(--icb-ochre) !important; font-weight: 300 !important; font-size: 0.72rem !important; letter-spacing: 0.2em !important; }
.greenBoxesHolder .greenTeaserInner p { color: rgba(254, 249, 243, 0.55) !important; font-size: 0.88rem !important; }
.teaserIcon { background: transparent !important; border: 1px solid rgba(248, 215, 148, 0.15) !important; }
@media only screen and (min-width: 768px) { .greenBoxesHolder .col-12.col-md-3 + .col-12.col-md-3 { border-left: none !important; } }

/* ── SPORT & FREIZEIT ────────────────── */
.innerIntro::after { background: linear-gradient(180deg, transparent 0%, rgba(47, 61, 44, 0.8) 100%) !important; }
.innerIntro h2 { color: var(--icb-beige) !important; }
.innerIntro p { color: rgba(254, 249, 243, 0.8) !important; }

/* ── EAT & DRINK ─────────────────────── */
.HomeBoxAbsolute.brighterGreen { background: rgba(47, 61, 44, 0.93) !important; backdrop-filter: blur(8px) !important; -webkit-backdrop-filter: blur(8px) !important; }
.HomeBoxAbsolute.brighterGreen h2 { color: var(--icb-beige) !important; }
.HomeBoxAbsolute.brighterGreen p { color: rgba(254, 249, 243, 0.75) !important; font-size: 0.95rem !important; }
.HomeBoxAbsolute.brighterGreen .textBox_whithIconHead h2::after { display: none !important; }

/* ── SUBPAGE ELEMENTS ────────────────── */
.subPageLine, .subPageLine.withBorders { background: var(--icb-green) !important; }
@media only screen and (min-width: 768px) { .subPageLine.withBorders .panel-grid-cell, .subPageLine.withBorders .panel-grid-cell:last-child, .subPageLine.withBorders .panel-grid-cell:first-child, .subPageLine.withBorders.onlyTwo .panel-grid-cell:first-child { border-color: rgba(248, 215, 148, 0.1) !important; } }
.pageIntroAktuell { background: var(--icb-green) !important; }
.pageIntroAktuell h3 { color: var(--icb-beige) !important; font-family: var(--font-sans) !important; font-weight: 500 !important; }
.pageIntroAktuell p { color: rgba(254, 249, 243, 0.75) !important; }
.pageIntroAktuell .carousel-indicators [data-bs-target] { background-color: rgba(47, 61, 44, 0.45) !important; border-color: rgba(248, 215, 148, 0.3) !important; }
.pageIntroAktuell .carousel-indicators .active { background-color: var(--icb-ochre) !important; }
span.ank_date { color: var(--icb-ochre) !important; }
.subPageListLoop h3 { color: var(--icb-green) !important; font-family: var(--font-serif) !important; font-weight: 400 !important; text-transform: none !important; font-size: 1.3rem !important; letter-spacing: -0.01em !important; }
.subPageListLoop h3 a { color: var(--icb-green) !important; }
.subPageListLoop h3 a:hover { color: var(--icb-brown) !important; }
.subPageListLoop p { color: var(--icb-green) !important; font-size: 1rem !important; }
a.subPageReadMore { filter: brightness(0.42) saturate(1.1) !important; opacity: 0.6 !important; transition: all 0.3s ease !important; }
a.subPageReadMore:hover { opacity: 1 !important; }

/* ── SMALL PAGE INTROS ───────────────── */
.pageIntro.pageIntroSmall h1, .pageIntroHead.membersIntroHead h1 {
    font-family: var(--font-serif) !important; font-weight: 400 !important;
    color: var(--icb-beige) !important; text-transform: none !important;
    letter-spacing: -0.02em !important; font-size: clamp(2.2rem, 5vw, 4rem) !important;
}
.pageIntroHead.membersIntroHead h2 {
    font-family: var(--font-sans) !important; font-weight: 300 !important;
    font-style: normal !important; text-transform: uppercase !important;
    color: var(--icb-ochre) !important; font-size: 0.82rem !important; letter-spacing: 0.25em !important;
}

/* ── FOOTER — minimal, fading ────────── */
footer { background: var(--icb-green) !important; margin-top: 120px !important; border-top: none !important; }
.footerLogoHochgerueckt img { opacity: 0.7 !important; }
ul.footerMenu > li > a { color: rgba(254, 249, 243, 0.7) !important; font-family: var(--font-sans) !important; font-weight: 300 !important; font-size: 0.72rem !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; }
ul.footerMenu > li > a:hover { color: var(--icb-ochre) !important; }
ul.footerMenu li li a { color: rgba(254, 249, 243, 0.35) !important; font-family: var(--font-sans) !important; font-weight: 300 !important; font-size: 0.78rem !important; }
ul.footerMenu li li a:hover { color: rgba(254, 249, 243, 0.7) !important; }
ul.footerMenuDark { border-top: 1px solid rgba(254, 249, 243, 0.06) !important; padding-top: 16px !important; }
ul.footerMenuDark li a { color: rgba(254, 249, 243, 0.3) !important; font-family: var(--font-sans) !important; font-weight: 300 !important; font-size: 0.72rem !important; letter-spacing: 0.04em !important; }
ul.footerMenuDark li a:hover { color: rgba(254, 249, 243, 0.6) !important; }
.footerDark { background: rgba(0, 0, 0, 0.3) !important; }
.footerDark p { color: rgba(254, 249, 243, 0.25) !important; font-family: var(--font-sans) !important; font-weight: 300 !important; font-size: 0.7rem !important; letter-spacing: 0.06em !important; margin-bottom: 0 !important; text-transform: uppercase !important; }

/* ── FORMS ────────────────────────────── */
#loginForm .form-check .form-check-input:checked { background-color: var(--icb-green) !important; border-color: var(--icb-green) !important; }
.form-label { font-family: var(--font-sans) !important; font-weight: 300 !important; font-size: 0.72rem !important; color: var(--icb-green) !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; }
.form-control { font-family: var(--font-sans) !important; font-weight: 300 !important; border-color: rgba(47, 61, 44, 0.15) !important; border-radius: 0 !important; color: var(--icb-green) !important; background: #ffffff !important; font-size: 0.95rem !important; padding: 12px 16px !important; }
.form-control:focus, input:focus { border-color: var(--icb-ochre) !important; box-shadow: none !important; outline: none !important; }

/* ── MODALS ───────────────────────────── */
#memberregModal .modal-content { background: var(--icb-beige) !important; border-radius: 0 !important; }
#memberregModal .modal-header { border-bottom-color: rgba(47, 61, 44, 0.08) !important; }
#memberregModal .modal-title { font-family: var(--font-serif) !important; font-weight: 400 !important; color: var(--icb-green) !important; font-size: 1.5rem !important; }

/* ── PARTNERS ────────────────────────── */
.pageTeaserGreen p { color: rgba(254, 249, 243, 0.75) !important; }

/* ── TEAM ────────────────────────────── */
.teamHolderSlide { display: none !important; }
.teamImage img { filter: grayscale(30%) !important; transition: all 0.5s ease !important; }
.teamHolderInner:hover .teamImage img { filter: grayscale(0%) !important; }
p.teamHead { font-family: var(--font-serif) !important; font-weight: 400 !important; font-size: 0.95rem !important; color: var(--icb-green) !important; position: relative !important; z-index: 2 !important; transition: all 0.4s ease !important; margin-bottom: 0 !important; padding: 4px 0 !important; letter-spacing: -0.01em !important; }
p.teamSub { font-family: var(--font-sans) !important; font-weight: 300 !important; font-size: 0.72rem !important; color: rgba(47, 61, 44, 0.5) !important; position: relative !important; z-index: 2 !important; transition: all 0.4s ease !important; padding: 0 !important; text-transform: uppercase !important; letter-spacing: 0.1em !important; }
.teamHolderInner:hover p.teamHead { margin-top: -50px !important; background: rgba(47, 61, 44, 0.9) !important; color: var(--icb-beige) !important; padding: 10px 14px 2px !important; }
.teamHolderInner:hover p.teamSub { background: rgba(47, 61, 44, 0.9) !important; color: rgba(254, 249, 243, 0.5) !important; padding: 0 14px 8px !important; }
.teamFíter { border: none !important; border-bottom: 1px solid rgba(47, 61, 44, 0.1) !important; border-radius: 0 !important; }
.teamFíter a { font-family: var(--font-sans) !important; font-weight: 300 !important; font-size: 0.72rem !important; letter-spacing: 0.15em !important; color: rgba(47, 61, 44, 0.4) !important; text-transform: uppercase !important; }
.teamFíter a.active { color: var(--icb-green) !important; }

/* ── GLOBAL TRANSITIONS ──────────────── */
a, button, .ow-button-base a, .greenGreyTeaserInner, .greenTeaserInner {
    transition: color 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease !important;
}
img { transition: all 0.5s ease !important; }
