﻿/* ==========================================================
   OASIS HERO
   EIGENE KOMPONENTE
========================================================== */

.oasis-hero {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    background: #344257;
}


/* ==========================================================
   HERO BILD
========================================================== */

.oasis-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}


/* ==========================================================
   OVERLAY
========================================================== */

.oasis-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.10);
    z-index: 1;
}


/* ==========================================================
   INHALT
========================================================== */

.oasis-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding-top: 55px;
    text-align: center;
}


/* ==========================================================
   STERNE
========================================================== */

.oasis-hero-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 0 0 26px 0;
    padding: 0;
}

    .oasis-hero-stars i {
        color: #FFCC00;
        font-size: 20px;
        line-height: 1;
    }


/* ==========================================================
   OÁSIS
========================================================== */

.oasis-hero-title {
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-size: 82px;
    font-weight: 550;
    line-height: .95;
    letter-spacing: -1px;
}


/* ==========================================================
   GARDEN VILLAGE
========================================================== */

.oasis-hero-subtitle {
    margin: 16px 0 0 0;
    padding: 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 7px;
    text-transform: uppercase;
}


/* ==========================================================
   LINIE
========================================================== */

.oasis-hero-line {
    width: 250px;
    height: 0;
    margin-top: 22px;
    border-top: 1px solid rgba(255,255,255,.80);
}


/* ==========================================================
   LOADER
========================================================== */

.oasis-hero-loading {
    position: absolute;
    inset: 0;
    z-index: 10;
    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);
    }
}


/* ==========================================================
   PHONE
========================================================== */

@media (max-width: 576px) {

    .oasis-hero {
        height: 620px;
    }


    .oasis-hero-inner {
        padding-top: 32px;
    }


    .oasis-hero-stars {
        gap: 4px;
        margin-bottom: 18px;
    }


        .oasis-hero-stars i {
            font-size: 16px;
        }


    .oasis-hero-title {
        font-size: 52px;
        line-height: .95;
    }


    .oasis-hero-subtitle {
        margin-top: 10px;
        font-size: 17px;
        letter-spacing: 3px;
    }


    .oasis-hero-line {
        width: 165px;
        margin-top: 16px;
    }
}


/* ==========================================================
   OASIS HERO ENDE
========================================================== */
