﻿/* -------------------------------------------
Name: 		Oasis
Version:  1.0
------------------------------------------- */
/**  
    Mobile      767px
    Tablet      991px
    Desktop     ab 992px
 
    oder

    768px
    992px
    1200px



    ABSTAENDE:
        p   = padding, Innenabstand
        m   = margin, Außenabstand

        pt  = padding-top
        pb  = padding-bottom
        pl  = padding-left
        pr  = padding-right

        mt  = margin-top
        mb  = margin-bottom
        ml  = margin-left
        mr  = margin-right


**/


/* ==========================================================
   OÁSIS HAUPT - CLASSES
   ========================================================== */

    .oasis-p {
        font-size: 18px;
        line-height: 1.9;
        color: #555;
        margin-bottom: 1.8rem;
    }


    .oasis-p-l {
        font-size: 18px;
        line-height: 1.9;
        color: #555;
        margin-bottom: 1.8rem;
        text-align:left;
    }

    /* Desktop anzeigen */
    .oasis-desktop {
        display: block;
    }

    /* Smartphone ausblenden */
    .oasis-mobile {
        display: none;
    }

    .oasis-center {
        text-align: center;
    }


    .oasis-h1 {
        font-size: 52px;
        line-height: 1.15;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .oasis-h22 {
        font-size: 34px;
        line-height: 1.15;
        font-weight: 700;
        margin-bottom: 30px;
    }

/* ==========================================================
   OASIS TEXT LISTEN
   ========================================================== */

ul.oasis-p-l {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 20px;
}

    ul.oasis-p-l li {
        display: list-item;
        list-style: disc;
        margin-bottom: 8px;
        padding-left: 4px;
    }

/* ==========================================================
   OASIS TEXT LISTEN ENDE
   ========================================================== */



    /* smartphone */
    @media (max-width: 768px) {
        .oasis-h1 {
            font-size: 32px;
            line-height: 1.2;
            margin-bottom: 20px;
        }
    }

    @media (max-width: 480px) {
        .oasis-h1 {
            font-size: 28px;
        }
    }

    @media (max-width: 768px) {

        /* Desktop ausblenden */
        .oasis-desktop {
            display: none;
        }

        /* Smartphone anzeigen */
        .oasis-mobile {
            display: block;
        }
}

    /* ==========================================================
    TYPOGRAFIE BASIS SMARTPHONE
    ========================================================== */

    @media (max-width:768px) {

            body
            {
                font-size: 15px;
            }

            .oasis-p,
            .oasis-p-l {
                font-size: 15px;
                line-height: 1.6;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.6rem;
            }

            h3 {
                font-size: 1.35rem;
            }

            h4 {
                font-size: 1.15rem;
            }

            .oasis-btn {
                font-size: 14px;
            }

            .table,
            .oasis-price-table {
                font-size: 13px;
            }


            .hide-mobile {
                display: none !important;
            }

            .show-only-mobile {
                display: block;
            }
    }

/* ==========================================================
   OASIS BUTTON
   ========================================================== */

    .oasis-btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        min-width: 180px;
        min-height: 52px;
        padding: 0 28px;
        background: #344257;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        line-height: 1.3;
        cursor: pointer;
        transition: background .3s ease, transform .2s ease;
    }


    .oasis-btn:hover {
        background: #2b3748;
        color: #fff;
        text-decoration: none;
        transform: translateY(-1px);
    }

    .oasis-btn:focus,
    .oasis-btn:active {
        outline: none;
        box-shadow: none;
        color: #fff;
    }

    /* Langer Text */

    .oasis-btn-high {
        min-height: 70px;
        padding: 12px 24px;
        white-space: normal;
    }

    /* Smartphones */

    @media (max-width: 767px) {

        .oasis-btn {
            width: 100%;
            min-width: 0;
            min-height: 50px;
            padding: 12px 18px;
            font-size: 14px;
        }

        .oasis-btn-high {
            min-height: 64px;
        }
    }

/* ==========================================================
   OASIS BUTTON ENDE
   ========================================================== */

/* ==========================================================
   OASIS HERO IMAGE - GR. BILD
   ========================================================== */
.oasis-hero-loading {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f1e8;
    transition: opacity .35s ease;
}

    .oasis-hero-loading.loaded {
        opacity: 0;
        pointer-events: none;
    }

.oasis-hero-spinner {
    width: 34px;
    height: 34px;
    border: 3px solid rgba(80, 80, 80, .18);
    border-top-color: #b78945;
    border-radius: 50%;
    animation: oasisHeroSpin .8s linear infinite;
}

@keyframes oasisHeroSpin {
    to {
        transform: rotate(360deg);
    }
}
/* ==========================================================
    OASIS HERO IMAGE - GR. BILD ENDE
   ========================================================== */


/* ==========================================================
   OASIS HERO
   GEMEINSAME BASIS
========================================================== */

.oasis-hero-content {
    width: 100%;
    text-align: center;
}


/* Sterne */

.oasis-hero-stars {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 0 !important;
    padding: 0 !important;
}

    .oasis-hero-stars i {
        color: #FFCC00 !important;
        font-size: 20px;
        line-height: 1;
    }


/* Branding */

.oasis-hero-brand {
    width: 100%;
    text-align: center;
}


/* OÁSIS */

.oasis-hero-title {
    width: 100%;
    margin: 20px 0 0 0 !important;
    padding: 0 !important;
    text-align: center;
    color: #ffffff !important;
    font-weight: 550;
    line-height: 1;
    letter-spacing: -1px;
}


/* Garden Village */

.oasis-hero-subtitle {
    width: 100%;
    margin: 14px 0 0 0 !important;
    padding: 0 !important;
    text-align: center;
    color: #ffffff !important;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}


/* Linie */

.oasis-hero-line {
    display: block !important;
    width: 240px;
    height: 0;
    margin: 18px auto 0 !important;
    padding: 0;
    border: 0 !important;
    border-top: 1px solid rgba(255,255,255,.80) !important;
    opacity: 1 !important;
}



/* ==========================================================
   OASIS HERO - NORMAL
   DESKTOP + TABLET
========================================================== */

.oasis-hero-content.oasis-desktop .oasis-hero-stars,
.oasis-hero-content.oasis-tablet .oasis-hero-stars {
    transform: translateY(-100px) !important;
}


.oasis-hero-content.oasis-desktop .oasis-hero-brand,
.oasis-hero-content.oasis-tablet .oasis-hero-brand {
    transform: translateY(-100px) !important;
}


.oasis-hero-content.oasis-desktop .oasis-hero-title,
.oasis-hero-content.oasis-tablet .oasis-hero-title {
    font-size: 66px;
}


.oasis-hero-content.oasis-desktop .oasis-hero-subtitle,
.oasis-hero-content.oasis-tablet .oasis-hero-subtitle {
    font-size: 25px;
    letter-spacing: 6px;
}



/* ==========================================================
   OASIS HERO - PHONE
========================================================== */

.oasis-hero-content.oasis-phone .oasis-hero-stars {
    transform: translateY(-55px) !important;
    gap: 4px;
}


    .oasis-hero-content.oasis-phone .oasis-hero-stars i {
        font-size: 16px;
    }


.oasis-hero-content.oasis-phone .oasis-hero-brand {
    transform: translateY(-55px) !important;
}


.oasis-hero-content.oasis-phone .oasis-hero-title {
    font-size: 46px;
    margin-top: 15px !important;
}


.oasis-hero-content.oasis-phone .oasis-hero-subtitle {
    font-size: 16px;
    letter-spacing: 3px;
    margin-top: 10px !important;
}


.oasis-hero-content.oasis-phone .oasis-hero-line {
    width: 160px;
    margin-top: 14px !important;
}


/* ==========================================================
   OASIS HERO ENDE
========================================================== */

/* ==========================================================
   OASIS HERO – OPTIK ENDE
========================================================== */

/* ==========================================================
   OASIS HERO – OPTIK
   gilt für DESKTOP / TABLET / PHONE ENDE
========================================================== */

/* ==========================================================
   OASIS HERO - PHONE
========================================================== */

.oasis-hero-content.oasis-phone .oasis-hero-stars {
    margin-top: 0 !important;
    transform: translateY(-20px) !important;
}

.oasis-hero-content.oasis-phone .oasis-hero-brand {
    transform: translateY(-5px) !important;
}

.oasis-hero-content.oasis-phone .oasis-hero-title {
    font-size: 64px;
}

.oasis-hero-content.oasis-phone .oasis-hero-subtitle {
    font-size: 18px;
    letter-spacing: 3px;
}

/* ==========================================================
   OASIS HERO ENDE
========================================================== */




    /* ==========================================================
   SIDEBAR HAUS
   ========================================================== */

    .oasis-sidebar-heading {
        margin: 0;
        padding: 18px 20px;
        text-align: center;
        color: #383A4E;
        border-bottom: 2px solid #b89b5e;
    }

        .oasis-sidebar-heading i {
            color: #821e15;
            margin-right: 8px;
        }


    /* ==========================================================
   ALLGEMEIN ENDE
   ========================================================== */
    /* ==========================================================
   KINSLEY OVERRIDES
   ========================================================== */
    /* Kinsley Override: TopBar bleibt beim Scrollen oben */
    .knsl-top-bar {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
    }

    .knsl-app {
        padding-top: 40px;
    }


    /* ==========================================
   RANDOM HEADER
   ========================================== */

    .oasis-random-header {
        width: 100%;
        overflow: hidden;
    }

    .oasis-random-header-image {
        display: block;
        width: 100%;
        height: auto;
    }
    /* ==========================================
   RANDOM HEADER ENDE
   ========================================== */


    /* ==========================================================
   OASIS SLIDER -- HAUSER
   ========================================================== */

    .oasis-slider {
        margin: 60px 0;
    }

        .oasis-slider .swiper {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 35px rgba(0,0,0,.15);
        }

        .oasis-slider .swiper-slide img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        /* Navigation */

        .oasis-slider .swiper-button-next,
        .oasis-slider .swiper-button-prev {
            color: #ffffff;
            background: rgba(0,0,0,.35);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            transition: .3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .oasis-slider .swiper-button-next:hover,
            .oasis-slider .swiper-button-prev:hover {
                background: rgba(0,0,0,.60);
            }

            .oasis-slider .swiper-button-next::after,
            .oasis-slider .swiper-button-prev::after {
                font-size: 18px;
                font-weight: bold;
                line-height: 1;
            }

        /* Pagination */

        .oasis-slider .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: #ffffff;
            opacity: .6;
        }

        .oasis-slider .swiper-pagination-bullet-active {
            background: #b89b5e;
            opacity: 1;
        }



    /* Smartphone */

    @media (max-width:768px) {

        .oasis-slider {
            margin: 30px 0;
        }

            .oasis-slider .swiper {
                border-radius: 8px;
            }

            .oasis-slider .swiper-button-next,
            .oasis-slider .swiper-button-prev {
                display: none;
            }
    }

    /* ==========================================================
   OASIS TABS
   ========================================================== */

    .oasis-tabs {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 45px;
        padding: 10px;
        background: #f7f5ef;
        border-radius: 999px;
        box-shadow: 0 10px 35px rgba(0,0,0,.06);
    }

    .oasis-tab {
        border: none;
        background: transparent;
        padding: 14px 28px;
        border-radius: 999px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        color: #5f5f5f;
        transition: all .25s ease;
    }

        .oasis-tab:hover {
            color: #821e15;
            background: rgba(130, 30, 21, .06);
        }

        .oasis-tab.active {
            color: #ffffff;
            background: #821e15;
            box-shadow: 0 8px 20px rgba(130, 30, 21, .22);
        }

    .oasis-tab-panel {
        display: none;
        animation: oasisFade .35s ease;
    }

        .oasis-tab-panel.active {
            display: block;
        }

    @keyframes oasisFade {
        from {
            opacity: 0;
            transform: translateY(8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .oasis-current-option {
        text-align: center;
        margin-bottom: 35px;
    }

        .oasis-current-option h2 {
            margin-bottom: 8px;
            color: #383A4E;
        }

        .oasis-current-option p {
            color: #821e15;
            font-weight: 600;
        }

    /* Smartphone */
    @media (max-width: 768px) {

        .oasis-tabs {
            flex-wrap: wrap;
            border-radius: 18px;
            justify-content: flex-start;
        }

        .oasis-tab {
            flex: 1 1 calc(50% - 8px);
            padding: 13px 12px;
            font-size: 15px;
        }
    }



    /* ==========================================================
   OASIS TABS ENDE
   ========================================================== */
    /* ==========================================================
   OASIS AUSSTATTUNG ICONS
   ========================================================== */

    .oasis-feature-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 14px;
    }

    .oasis-feature {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 130px;
        padding: 16px;
        background: #fff;
        border: 1px solid #eef1f3;
        border-radius: 8px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .oasis-feature:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.10);
        }

        .oasis-feature i {
            display: block;
            font-size: 30px;
            color: #821e15;
            margin-bottom: 14px;
        }

        .oasis-feature span {
            display: block;
            min-height: 44px;
            font-size: 16px;
            line-height: 1.35;
            font-weight: 500;
            color: #383a4e;
        }

        .oasis-feature.no-pets i {
            color: #999;
        }

    /* Tablet */
    @media (max-width: 1200px) {
        .oasis-feature-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (max-width: 992px) {
        .oasis-feature-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    /* Smartphone */
    @media (max-width: 768px) {

        .oasis-feature-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .oasis-feature {
            min-height: 95px;
            padding: 10px 6px;
        }

            .oasis-feature i {
                font-size: 24px;
                margin-bottom: 8px;
            }

            .oasis-feature span {
                min-height: 32px;
                font-size: 13px;
                line-height: 1.2;
            }
    }

    /* ==========================================================
   OASIS AUSSTATTUNG ICONS ENDE
   ========================================================== */
    /* ==========================================================
   DIVIDER
   ========================================================== */
    .oasis-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 80px 0;
    }

        .oasis-divider::before,
        .oasis-divider::after {
            content: "";
            flex: 1;
            max-width: 180px;
            height: 1px;
            background: #c8b27a;
        }

        .oasis-divider span {
            width: 10px;
            height: 10px;
            margin: 0 18px;
            border: 2px solid #b89b5e;
            transform: rotate(45deg);
        }

    /* ==========================================================
   DIVIDER ENDE
   ========================================================== */

    /* ==========================================================
   HOME SEASON CARDS
   ========================================================== */

    .oasis-season-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .oasis-season-card {
        background: #ffffff;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 12px 38px rgba(0,0,0,.07);
        border: 1px solid rgba(0,0,0,.05);
        transition: .3s ease;
    }

        .oasis-season-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 50px rgba(0,0,0,.12);
        }

    .oasis-season-image img {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .oasis-season-image-test img {
        display: block;
        width: 100%;
        aspect-ratio: 6 / 1;
        object-fit: cover;
    }

    .oasis-season-content {
        padding: 30px 32px 34px;
    }

        .oasis-season-content span {
            display: inline-block;
            margin-bottom: 12px;
            color: #821e15;
            font-weight: 600;
        }

        .oasis-season-content h3 {
            color: #383A4E;
            margin-bottom: 16px;
        }

        .oasis-season-content p {
            line-height: 1.8;
            margin-bottom: 22px;
        }

        .oasis-season-content a {
            color: #b89b5e;
            font-weight: 600;
        }

    /* Smartphone */
    @media (max-width: 768px) {
        .oasis-season-cards {
            grid-template-columns: 1fr;
        }
    }
    /* ==========================================================
   HOME SEASON ENDE
   ========================================================== */

    /* ==========================================================
   FORM CHECKBOX
   ========================================================== */


    .oasis-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin: 20px 0;
        font-size: 14px;
        line-height: 1.6;
        color: #666;
    }

        .oasis-checkbox input {
            flex: 0 0 18px;
            margin-top: 3px;
        }

        .oasis-checkbox span {
            flex: 1;
            word-break: break-word;
        }


    /* HAT KINSLEY VERGESSEN  */
    .knsl-book-form form .nice-select,
    .knsl-book-form form input,
    .knsl-book-form form textarea {
        background-color: #ECFAFB;
        box-shadow: inset 0 2px 48px 0 rgba(0,0,0,.04);
        border-radius: 10px;
        color: #64688C;
        margin-bottom: 0;
    }

    /* ==========================================================
   FORM CHECKBOX ENDE
   ========================================================== */


    /* ==========================================================
   BELEGPLAN
   ========================================================== */


    .hausname-mobile {
        display: none;
    }

    .belegplan-container {
        overflow-x: auto;
        overflow-y: auto;
        width: 100%;
    }

    .belegplan {
        display: grid;
        width: max-content;
        --belegplan-hausbreite: 140px;
    }


    /* Monatskopf */
    .monat {
        text-align: center;
        font-weight: bold;
        padding: 8px 0;
        border: 1px solid #cfd8e3;
        background: #eef4fb;
        color: #4d5f86;
    }

    /* leere zeile oben links */
    .hauskopf-ecke {
        background: #eef4fb;
        border: 0px solid #cfd8e3;
    }

    /* linke Hausspalte */
    .hauskopf {
        border: 1px solid #d6d6d6;
        height: 35px;
        display: flex;
        align-items: center;
        padding-left: 10px;
        font-weight: 600;
        background: #eef4fb;
        color: #4d5f86;
        position: sticky;
        left: 0;
        z-index: 10;
    }

    /* Tageszellen */
    .beleg-cell {
        border: 1px solid #eee;
        height: 35px;
        text-align: center;
        font-size: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    @media (max-width: 768px) {

        .belegplan {
            --belegplan-hausbreite: 75px;
        }

        .hauskopf {
            font-size: 0.82rem;
            padding-left: 6px;
        }

        .hausname-desktop {
            display: none;
        }

        .hausname-mobile {
            display: inline;
        }
    }


    /* belegte Tage Haus Aktiv */
    /* ==========================================================
   AKTUELLES HAUS
   ========================================================== */

    /* Option */
    .status-option {
        background: #9fc5f8;
    }

    /* Wochenende */
    .status-option-we {
        background: #87b8f4;
    }

    /* Belegt */
    .status-belegt {
        background: #f4a6a6;
    }

    /* Wochenende */
    .status-belegt-we {
        background: #ec8f8f;
    }

    /* Frei */
    .status-frei {
        background: #F7FF99;
    }

    /* Frei - Wochenende */
    .status-frei-we {
        background: #EEFF66;
    }

    /* ==========================================================
   ANDERE HÄUSER GRAUTOENE
   ========================================================== */

    .status-option-grau {
        background: #d9d9d9;
    }

    .status-option-grau-we {
        background: #c9c9c9;
    }

    .status-belegt-grau {
        background: #b5b5b5;
    }

    .status-belegt-grau-we {
        background: #a4a4a4;
    }

    /* ==========================================================
   BELEGPLAN ENDE
   ========================================================== */

    /* ==========================================================
   BELEGPLAN LEGENDE
   ========================================================== */

    .oasis-belegplan-legende {
        list-style: none !important;
        padding-left: 0 !important;
    }

        .oasis-belegplan-legende li {
            list-style: none !important;
            display: flex;
            align-items: center;
            gap: 10px;
            padding-left: 0;
            margin-bottom: 12px;
        }

    .oasis-legende-farbe {
        display: inline-block;
        width: 22px;
        height: 14px;
        min-width: 22px;
        border-radius: 3px;
        border: 1px solid rgba(0, 0, 0, .12);
    }

    .oasis-legende-option {
        background-color: #9fc5f8;
    }

    .oasis-legende-belegt {
        background-color: #f4a6a6;
    }

    .oasis-legende-frei {
        background-color: #F7FF99;
    }

    /* ==========================================================
   BELEGPLAN LEGENDE ENDE
   ========================================================== */






    /* ==========================================================
   PREISTABELLE
========================================================== */

    .oasis-price-grid {
        display: flex;
        flex-direction: column; /* immer untereinander */
        gap: 35px;
        align-items: center; /* Tabellen zentrieren */
        margin: 35px 0;
    }

    /* Hier definierst du die Breite */
    .oasis-price-block {
        width: 100%;
        max-width: 700px; /* <-- gewünschte Breite */
        background: #fff;
        border: 1px solid #e8ebef;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 2px 8px rgba(0,0,0,.05);
        box-sizing: border-box;
    }

    .oasis-price-table {
        width: 100%;
        table-layout: fixed;
        border-collapse: collapse;
    }

        .oasis-price-table thead th {
            padding-top: 18px;
        }

        .oasis-price-table th {
            text-align: left;
            font-weight: 600;
            padding: 14px 0 16px;
            border-bottom: 2px solid #e5e5e5;
        }

        .oasis-price-table td {
            padding: 16px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        /* Exakt gleiche Spaltenbreiten in allen Preistabellen */
        .oasis-price-table .oasis-col-period {
            width: 36%;
        }

        .oasis-price-table .oasis-col-date {
            width: 21%;
        }

        .oasis-price-table .oasis-col-value {
            width: 22%;
        }

        /* Ausrichtung */
        .oasis-price-table th:nth-child(1),
        .oasis-price-table td:nth-child(1) {
            text-align: left;
        }

        .oasis-price-table th:nth-child(2),
        .oasis-price-table td:nth-child(2),
        .oasis-price-table th:nth-child(3),
        .oasis-price-table td:nth-child(3) {
            text-align: center;
            white-space: nowrap;
        }

        .oasis-price-table th:nth-child(4),
        .oasis-price-table td:nth-child(4) {
            text-align: right;
            white-space: nowrap;
        }



    /* Smartphone */


    @media (max-width:768px) {

        .oasis-price-table th {
            padding: 10px 4px 12px;
            border-bottom: 2px solid #e5e5e5;
            font-size: 13px;
        }

        .oasis-price-table td {
            padding: 12px 4px;
            border-bottom: 1px solid #f0f0f0;
            font-size: 13px;
        }

        .oasis-price-table .oasis-col-period {
            width: 36%;
        }

        .oasis-price-table .oasis-col-date {
            width: 21%;
        }

        .oasis-price-table .oasis-col-value {
            width: 22%;
        }
    }

    /* ==========================================================
   PREISTABELLE ENDE
   ========================================================== */

    /* ==========================================================
   OASIS Z.B. ABOUT 2 BLOECKE ENDE
   ========================================================== */

    .oasis-columns {
        display: flex;
        gap: 20px;
    }

    .oasis-column {
        flex: 1 1 50%;
        box-sizing: border-box;
        padding: 10px;
        min-width: 0;
    }

    @media (max-width: 991.98px) {
        .oasis-columns {
            flex-direction: column;
            gap: 20px;
        }

        .oasis-column {
            flex: 1 1 100%;
            width: 100%;
            padding: 10px;
        }
    }

    /* ==========================================================
   OASIS Z.B. ABOUT 2 BLOECKE ENDE
   ========================================================== */

    /* ==========================================================
   OASIS FOOTER
   ========================================================== */

    .oasis-footer {
        margin-top: 20px;
        padding: 60px 0 30px;
        background: #344257;
        border-top: 1px solid #e8ecef;
        color: white;
    }

        .oasis-footer h3,
        .oasis-footer h4 {
            margin-bottom: 20px;
            color: white;
        }

        .oasis-footer p {
            line-height: 1.8;
            color: white;
        }

        .oasis-footer ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .oasis-footer li {
            margin-bottom: 10px;
        }

        .oasis-footer a {
            color: #5b7f99;
            text-decoration: none;
            transition: color .25s ease;
        }

            .oasis-footer a:hover {
                color: #6ea6cf;
            }

        .oasis-footer hr {
            margin: 40px 0 25px;
            border: 0;
            border-top: 1px solid #e5e5e5;
        }

    .oasis-footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        font-size: .9rem;
    }



    /* ==========================================================
OASIS FOOTER ENDE
========================================================== */


    /* ==========================================================
   OASIS FOOTER MOBILE getrennt
   ========================================================== */

    @media (max-width: 768px) {

        .oasis-footer-mobile-brand {
            margin-bottom: 35px;
            text-align: center;
        }

            .oasis-footer-mobile-brand .oasis-footer-description {
                max-width: 500px;
                margin: 20px auto;
            }

        .oasis-footer-mobile-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 25px;
        }

        .oasis-footer-mobile-column {
            min-width: 0;
        }

        .oasis-footer-mobile-title-space {
            margin-top: 30px;
        }

        .oasis-footer-mobile-bottom {
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,.15);
            text-align: center;
            font-size: 13px;
            line-height: 1.8;
        }

        .oasis-footer-mobile-grid a,
        .oasis-footer-mobile-column a,
        .oasis-footer-mobile-column .oasis-footer-menu a {
            color: #5b7f99 !important;
            text-decoration: none;
        }

            .oasis-footer-mobile-grid a:hover,
            .oasis-footer-mobile-column a:hover,
            .oasis-footer-mobile-column .oasis-footer-menu a:hover {
                color: #6ea6cf !important;
            }
    }


    /* sehr kleine Smartphones */

    @media (max-width: 420px) {

        .oasis-footer-mobile-grid {
            gap: 18px;
        }

        .oasis-footer-mobile-column {
            font-size: 13px;
        }

        .oasis-footer-title {
            font-size: 16px;
        }
    }

    /* ==========================================================
   OASIS FOOTER MOBILE ENDE
   ========================================================== */

    /* ==========================================================
 Margin Top / Bottom Helper Classes 
========================================================== */

    .oasis-0-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .oasis-0-10 {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .oasis-0-20 {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .oasis-0-30 {
        margin-top: 0;
        margin-bottom: 30px;
    }

    .oasis-0-40 {
        margin-top: 0;
        margin-bottom: 40px;
    }

    .oasis-10-0 {
        margin-top: 10px;
        margin-bottom: 0;
    }

    .oasis-10-10 {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .oasis-10-20 {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .oasis-10-30 {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .oasis-10-40 {
        margin-top: 10px;
        margin-bottom: 40px;
    }

    .oasis-20-0 {
        margin-top: 20px;
        margin-bottom: 0;
    }

    .oasis-20-10 {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .oasis-20-20 {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .oasis-20-30 {
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .oasis-20-40 {
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .oasis-30-0 {
        margin-top: 30px;
        margin-bottom: 0;
    }

    .oasis-30-10 {
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .oasis-30-20 {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .oasis-30-30 {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .oasis-30-40 {
        margin-top: 30px;
        margin-bottom: 40px;
    }

    .oasis-40-0 {
        margin-top: 40px;
        margin-bottom: 0;
    }

    .oasis-40-10 {
        margin-top: 40px;
        margin-bottom: 10px;
    }

    .oasis-40-20 {
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .oasis-40-30 {
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .oasis-40-40 {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .oasis-50-0 {
        margin-top: 50px;
        margin-bottom: 0;
    }

    .oasis-50-10 {
        margin-top: 50px;
        margin-bottom: 10px;
    }

    .oasis-50-20 {
        margin-top: 50px;
        margin-bottom: 20px;
    }

    .oasis-50-30 {
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .oasis-50-40 {
        margin-top: 50px;
        margin-bottom: 40px;
    }

    .oasis-60-0 {
        margin-top: 60px;
        margin-bottom: 0;
    }

    .oasis-60-10 {
        margin-top: 60px;
        margin-bottom: 10px;
    }

    .oasis-60-20 {
        margin-top: 60px;
        margin-bottom: 20px;
    }

    .oasis-60-30 {
        margin-top: 60px;
        margin-bottom: 30px;
    }

    .oasis-60-40 {
        margin-top: 60px;
        margin-bottom: 40px;
    }

    .oasis-70-0 {
        margin-top: 70px;
        margin-bottom: 0;
    }

    .oasis-70-10 {
        margin-top: 70px;
        margin-bottom: 10px;
    }

    .oasis-70-20 {
        margin-top: 70px;
        margin-bottom: 20px;
    }

    .oasis-70-30 {
        margin-top: 70px;
        margin-bottom: 30px;
    }

    .oasis-70-40 {
        margin-top: 70px;
        margin-bottom: 40px;
    }

    .oasis-80-0 {
        margin-top: 80px;
        margin-bottom: 0;
    }

    .oasis-80-10 {
        margin-top: 80px;
        margin-bottom: 10px;
    }

    .oasis-80-20 {
        margin-top: 80px;
        margin-bottom: 20px;
    }

    .oasis-80-30 {
        margin-top: 80px;
        margin-bottom: 30px;
    }

    .oasis-80-40 {
        margin-top: 80px;
        margin-bottom: 40px;
    }

    .oasis-90-0 {
        margin-top: 90px;
        margin-bottom: 0;
    }

    .oasis-90-10 {
        margin-top: 90px;
        margin-bottom: 10px;
    }

    .oasis-90-20 {
        margin-top: 90px;
        margin-bottom: 20px;
    }

    .oasis-90-30 {
        margin-top: 90px;
        margin-bottom: 30px;
    }

    .oasis-90-40 {
        margin-top: 90px;
        margin-bottom: 40px;
    }

    .oasis-100-0 {
        margin-top: 100px;
        margin-bottom: 0;
    }

    .oasis-100-10 {
        margin-top: 100px;
        margin-bottom: 10px;
    }

    .oasis-100-20 {
        margin-top: 100px;
        margin-bottom: 20px;
    }

    .oasis-100-30 {
        margin-top: 100px;
        margin-bottom: 30px;
    }

    .oasis-100-40 {
        margin-top: 100px;
        margin-bottom: 40px;
    }

    /* ==========================================================
 Margin Top / Bottom Helper Classes  ENDE
========================================================== */

    /* ==========================================================
oasis-panel NUN2 1 HAT 3 STDS. DEKOSTET 
========================================================== */
    .oasis-panel2 {
        border: 1px solid #e5e5e5;
        margin-bottom: 20px;
        background: #f7f8fa;
        scroll-margin-top: 130px;
    }

    .oasis-panel2-header {
        width: 100%;
        height: 56px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        background: #f7f8fa;
        color: #333;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        border: 0;
        border-bottom: 1px solid #e5e5e5;
        outline: none;
        box-sizing: border-box;
        transition: background .3s ease;
    }

        .oasis-panel2-header:hover {
            background: #eef6fb;
        }

    .oasis-panel2-content {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        background: #f7f8fa;
        transition: max-height .35s ease, padding .35s ease;
        box-sizing: border-box;
    }

    .oasis-panel2.open .oasis-panel2-content {
        padding: 20px;
    }

    .oasis-panel2-arrow {
        display: inline-block;
        transition: transform .3s ease;
    }

    .oasis-panel2.open .oasis-panel2-arrow {
        transform: rotate(180deg);
    }

    .oasis-panel2-header,
    .oasis-panel2-header:focus,
    .oasis-panel2-header:focus-visible,
    .oasis-panel2-header:active {
        outline: none !important;
        box-shadow: none !important;
        border-left: 0 !important;
        border-right: 0 !important;
    }


    @media (max-width: 768px) {

        .oasis-panel2 {
            scroll-margin-top: 150px;
        }
    }

    /* ==========================================================
oasis-panel 2 ENDE!!
========================================================== */


    /* ==========================================================
oasis-feature-shared-living  
========================================================== */

    .oasis-feature-shared-living {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        margin-top: 20px;
    }

    @media (max-width: 991px) {
        .oasis-feature-shared-living {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .oasis-feature-shared-living {
            grid-template-columns: 1fr;
        }
    }

    /* ==========================================================
oasis-feature-shared-living  ENDE!!
========================================================== */
    /* ==========================================================
OASIS  MESSAGE 
========================================================== */
    .oasis-message {
        position: relative;
        margin: 25px 0;
        padding: 20px 25px;
        border-radius: 8px;
        border-left: 6px solid;
        box-shadow: 0 3px 12px rgba(0,0,0,.08);
        font-family: Arial, Helvetica, sans-serif;
    }

        .oasis-message h4 {
            margin: 0 0 8px 0;
            font-size: 22px;
            font-weight: bold;
        }

        .oasis-message p {
            margin: 0;
            font-size: 17px;
            line-height: 1.6;
        }

        .oasis-message.success {
            background: #f4fbf4;
            border-color: #2e8b57;
            color: #1d5c39;
        }

        .oasis-message.error {
            background: #fff5f5;
            border-color: #c62828;
            color: #8b0000;
        }

        .oasis-message.warning {
            background: #fff9ed;
            border-color: #d6a000;
            color: #7b5b00;
        }

        .oasis-message.info {
            background: #f2f8ff;
            border-color: #2f6db5;
            color: #214f82;
        }

    .oasis-close {
        position: absolute;
        top: 12px;
        right: 15px;
        border: none;
        background: none;
        font-size: 24px;
        cursor: pointer;
        color: #777;
        padding: 0;
        line-height: 1;
    }

        .oasis-close:hover {
            color: #000;
        }

    /* OASIS MESSAGE - Smartphone  */
    /*  Grundsaetzlich @media überschreibt nur die Werte, die auf kleinen Bildschirmen anders sein sollen. */
    @media (max-width:768px) {
        .oasis-message {
            margin: 15px 0;
            padding: 15px 18px;
            border-left-width: 4px;
        }

            .oasis-message h4 {
                font-size: 18px;
                line-height: 1.3;
                padding-right: 35px;
            }

            .oasis-message p {
                font-size: 15px;
                line-height: 1.5;
            }

        .oasis-close {
            top: 10px;
            right: 12px;
            font-size: 20px;
        }
    }

    /* ==========================================================
OASIS  MESSAGE ENDE
======================================================== */



