/*
Theme Name: OHANA International GmbH – Brand Development, Design & Experience
Theme URI: https://wordpress.org/themes/twentytwentyfour/
Description: Offizielles Ohana Intl. WordPress Theme 2025
Author: Tom Janssens
Author URI: https://tomjanssens.de/
Template: twentytwentyfour
Version: 1.0.0
Text Domain: Ohana Intl. Template
*/

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Load Custom Fonts */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */

    @font-face {
        font-family: 'Roboto-Light';
        font-style: normal;
        font-weight: 300;
        font-display: swap;
        src: url('./fonts/Roboto-Light.woff2') format('woff2');
    }

    @font-face {
        font-family: 'Roboto-Regular';
        font-style: normal;
        font-weight: 400;
        font-display: swap;
        src: url('./fonts/Roboto-Regular.woff2') format('woff2');
    }


    @font-face {
        font-family: 'Roboto-Medium';
        font-style: normal;
        font-weight: 500;
        font-display: swap;
        src: url('./fonts/Roboto-Medium.woff2') format('woff2');
    }

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Main Variables */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */

    :root {
        --color-ohana-beige: #f4edea;
        --color-ohana-blue: #43bed5;
        --color-ohana-brown: #36261F;
        --color-ohana-white: #ffffff;
        --text-color: #36261F;
        --letter-spacing: 0.2rem;
    }

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Main Styles & Resets */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */

    html {
        scroll-behavior: smooth;
        overflow-x: hidden;
    }

    body{
        font-family: 'Roboto-Light', sans-serif;
        color: var(--text-color);
    }

    .full-height {
        min-height: 100vh;
        height: var(--vh, 100vh);
    }

    a:active, a:focus{
        outline: 0;
        border: none;
        -moz-outline-style: none;
    }

    @media (hover: none) and (pointer: coarse) {
        a, button, input, textarea, select, summary, [tabindex]:not([tabindex="-1"]) {
            -webkit-tap-highlight-color: transparent;
        }

        a:focus, button:focus, input:focus, textarea:focus, select:focus, summary:focus, [tabindex]:focus {
            outline: none;
        }
    }

    a, button, img, input, textarea, select {
        -webkit-tap-highlight-color: transparent;
        outline: none;
    }

    /* Homepage / About > Headline Combi */
    .combi-text-wrapper{
        gap: 0;
    }

    /* Hero Section Text Width */
    .text-wrapper{
        width: 70%;
    }

    @media (max-width: 1000px) {
        .text-wrapper{
            width: 100%;
        }
    }

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Font Styles / Headline Styles */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
    
    h1{
        font-family: 'Roboto-Medium', sans-serif;
        font-size: clamp(1.75rem, 4.5vw, 2.8rem);
        line-height: 1.25;
    }

    h2 {
        font-family: 'Roboto-Medium', sans-serif;
        font-size: clamp(1.75rem, 4.5vw, 2.0rem);
        line-height: 1.25;
    }

    h3{
        font-family: 'Roboto-Medium', sans-serif;
        font-size: clamp(1.25rem, 3.5vw, 1.85rem);
        line-height: 1.3;
    }

    h4{
        font-family: 'Roboto-Light', sans-serif;
        font-size: clamp(1.125rem, 3vw, 1.5rem);
        line-height: 1.4;
    }

    h5{
        font-family: 'Roboto-Light', sans-serif;
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        line-height: 1.5;
    }
    
        h5.is-footer a{
            text-decoration: none;
        }

    p {
        font-size: clamp(1rem, 2.25vw, 1.2rem);
        line-height: 1.6;
    }

    p.is-small{
        font-size: clamp(.9rem, 2.25vw, 1.1rem);
    }

    .is-small a{
        font-size: clamp(.9rem, 2.25vw, 1.1rem);
    }

    @media (max-width: 1440px){
        h1{
            font-family: 'Roboto-Medium', sans-serif;
            font-size: clamp(1.4rem, 4.5vw, 2.2rem);
            line-height: 1.25;
        }
    
        h2 {
            font-family: 'Roboto-Medium', sans-serif;
            font-size: clamp(1.4rem, 4.5vw, 1.5rem);
            line-height: 1.25;
        }
    
        h3{
            font-family: 'Roboto-Medium', sans-serif;
            font-size: clamp(1.4rem, 3.5vw, 1.5rem);
            line-height: 1.3;
        }
    
        h4{
            font-family: 'Roboto-Light', sans-serif;
            font-size: clamp(1rem, 3vw, 1.2rem);
            line-height: 1.4;
        }
    
        h5{
            font-family: 'Roboto-Light', sans-serif;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            line-height: 1.5;
        }
        
            h5.is-footer a{
                font-family: 'Roboto-Light', sans-serif;
                font-size: clamp(.9rem, 2.5vw, 1rem);
                text-decoration: none;
            }
    
        p {
            font-size: clamp(.9rem, 2.25vw, 1rem);
            line-height: 1.6;
        }
    
        p.is-small{
            font-size: clamp(.9rem, 2.25vw, 1rem);
        }
    
        .is-small a{
            font-size: clamp(.8rem, 2.25vw, .9rem);
        }
    }

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Ohana Header Navigation */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */

    header nav ul li a span{
        font-size: clamp(1rem, 2.25vw, 1.2rem);
    }

    @media (max-width: 1440px){
        header nav ul li a span{
            font-size: clamp(0.8rem, 1.8vw, 1rem);
        }
    }

    .ohana-header.is-fixed{
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 99999;   
    }

    .home .ohana-header a[href="http://stage.ohana-intl.com/"] {
        color: var(--color-ohana-blue);
    }
    
    .ohana-header .current-menu-item a[aria-current="page"] {
        color: var(--color-ohana-blue);
    }

    .ohana-header .wp-block-navigation .wp-block-navigation-item__content:hover {
        text-decoration: none;
        color: var(--color-ohana-blue);
    }

    .ohana-header p.wp-block-site-title{
        display: none;
    }

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Ohana Mobile Navigation
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */   

    #modal-1.has-modal-open{
        background-color: var(--color-ohana-brown);
        color: var(--color-ohana-white);
    }

    #modal-1-content{
        align-items: center;
    }

    ul.wp-block-navigation__container.is-responsive.items-justified-right.wp-block-navigation{
        align-items: center;
    }

    @media (max-width: 600px) {
        ul.wp-block-navigation__container.is-responsive.items-justified-right.wp-block-navigation li{
            margin-bottom: 20px;
        }
    }

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Ohana Leaves
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */   

    .ohana-leave-header{
        position: absolute;
        will-change: transform;
        pointer-events: none;
        z-index: 99999;
        top: 0;
        left: 0;
        width: 120px;
    }

    .ohana-leave-content {
        width: 100%;
        position: fixed;
        top: 200px;
        will-change: transform;
        pointer-events: none;
    }

        /* GESCHWINDIGKEITS-KLASSEN */
        .parallax-speed-very-slow { --parallax-speed: 0.1; }
        .parallax-speed-slow { --parallax-speed: 0.2; }
        .parallax-speed-medium { --parallax-speed: 0.4; }
        .parallax-speed-fast { --parallax-speed: 0.6; }
        .parallax-speed-very-fast { --parallax-speed: 0.8; }
        .parallax-speed-ultra-fast { --parallax-speed: 1.0; }

        /* START-SCROLL-BEREICHE */
        .parallax-start-0 { --parallax-start: 0; }
        .parallax-start-100 { --parallax-start: 100; }
        .parallax-start-200 { --parallax-start: 200; }
        .parallax-start-300 { --parallax-start: 300; }
        .parallax-start-500 { --parallax-start: 500; }
        .parallax-start-750 { --parallax-start: 750; }
        .parallax-start-1000 { --parallax-start: 1000; }

        /* END-SCROLL-BEREICHE */
        .parallax-end-1000 { --parallax-end: 1000; }
        .parallax-end-1500 { --parallax-end: 1500; }
        .parallax-end-2000 { --parallax-end: 2000; }
        .parallax-end-2500 { --parallax-end: 2500; }
        .parallax-end-3000 { --parallax-end: 3000; }
        .parallax-end-4000 { --parallax-end: 4000; }
        .parallax-end-unlimited { --parallax-end: 999999; }

        /* TRANSITION GESCHWINDIGKEIT */
        .parallax-transition-slow {transition: transform 0.8s ease-out;}        
        .parallax-transition-medium {transition: transform 0.5s ease-out;}
        .parallax-transition-fast {transition: transform 0.2s ease-out;}

        /* ÜBERLAGERUNG ODER DAHINTER */
        .parallax-z-above {z-index: 9998;}
        .parallax-z-below {z-index: -1;}

        @media (max-width: 768px) {
            figure.ohana-content-leaf-right img{
                width: 150px !important;
            }
    
            figure.ohana-content-leaf-left img{
                width: 150px !important;
            }
        }

        @media (max-width: 420px) {
            figure.ohana-content-leaf-right img{
                width: 50px !important;
            }
    
            figure.ohana-content-leaf-left img{
                width: 50px !important;
            }
        }

    .ohana-leave-footer img{
        position: absolute;
        z-index: -1;
        bottom: 0;
    }

    .ohana-leave-footer .leaf-image-left img{
        left: 0;
        width: 160px;
    }

    .ohana-leave-footer .leaf-image-right img{
        width: 200px;
    }

        @media (max-width: 768px) {

            .ohana-leave-header{
                top: 25px;
                width: 80px;
            }
            

            .ohana-leave-footer .leaf-image-left img{
                left: -55px;
                width: 150px;
            }
            
            .ohana-leave-footer .leaf-image-right img{
                width: 150px;
                right: 0;
            }
        }

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Startseite */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
    
    /* Ohana Full Height  */
    .ohana-intro-section{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
    }

    .ohana-intro-logo img{
        width: 1200px;
        height: auto;
        padding: 5%;
        margin-top: 15%;
    }

    .ohana-meaning-text{
        position: relative;
        z-index: 100;
        height: 150px;
    }

        @media (orientation: landscape) and (max-width: 1000px){
            .ohana-intro-section{
                gap: 15px;
            }
            .ohana-meaning-text{
                height: 50px;
            }
        }

    .grow-line-intro {
        position: relative;
        align-items: center;
        width: 4px;
        height: 0%;
        background-color: var(--color-ohana-blue);
    }  

    .grow-line-intro::before {
        content: '';
        position: sticky;
        transform: translateX(-10px);
        width: 16px;
        height: 16px;
        background-color: var(--color-ohana-white);
        border: 4px solid var(--color-ohana-blue);
        border-radius: 50%;
        z-index: 10;
        display: block;
    }

    .circle-bottom-intro {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 12px;
        height: 12px;
        background-color: #3ecbe3;
        border-radius: 50%;
    }

    .ohana-family .ohana-cover-image img{
        object-fit: cover;
    }

    .ohana-family p.ohana-family-text{
        font-size: clamp(1rem, 2.25vw, 1.3rem);
    }

    @media (max-width: 1440px){
        .ohana-family p.ohana-family-text{
            font-size: clamp(.8rem, 1.8vw, 1rem);
        }
    }

    /* Ohana Family Section  */
        @media (max-width: 786px) {
            .ohana-family .wp-block-cover{
                min-height: 160px;
            }
        }

    /* Das Macht Ohana Für Dich Section  */
    .ohana-what-section{
        padding-right: 10%;
        padding-left: 10%;
    }

        @media (max-width: 1200px) {
            .ohana-what-section{
                padding-right: 0%;
                padding-left: 0%;
            }
        }

    .grid-container {
        display: grid !important;
        grid-template-columns: 20% 2% 75% !important;
        gap: 1rem;
    }

    .scroll-container{
        display: block;
        margin: 0 auto;
    }

    .grow-line {
        position: absolute;
        align-items: center;
        width: 4px;
        height: 0%;
        margin-left: 1%;
        background-color: var(--color-ohana-blue);
    }  

    .grow-line::before {
        content: '';
        position: sticky;
        transform: translateX(-10px);
        width: 16px;
        height: 16px;
        background-color: var(--color-ohana-white);
        border: 4px solid var(--color-ohana-blue);
        border-radius: 50%;
        z-index: 10;
        display: block;
    }

    .circle-bottom {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 12px;
        height: 12px;
        background-color: #3ecbe3;
        border-radius: 50%;
    }

        @media (max-width: 768px) {
            .grid-container {
                grid-template-columns: 2% 95% !important; 
                grid-template-areas:
                "item-2 item-1"
                "item-2 item-3";
            }

            .grid-container .ohana-h3-mobile-left{
                text-align: left;
            } 

            .item-1 {
                grid-area: item-1;
            }

            .item-2 {
                grid-area: item-2;
            }

            .item-3 {
                grid-area: item-3;
            }   
        }

    /* The Ohana Way Section / Slider  */
    .ohana-slideshow-container .ohana-slide {
        display: none;
        margin-block-start: 2rem; 
    }

    .ohana-slideshow-container .ohana-slide.IsActive {
        display: flex;
    }

    /* .ohana-slideshow-container .ohana-paginator-wrapper {
        background-color: red;
        display: flex;
        align-items: center;
    } */

    /* .ohana-slideshow-container .ohana-paginator {
        gap: 0;
    } */

    .ohana-slideshow-container .ohana-paginator img {
        opacity: 0.5;
        cursor: pointer;
    }

    .ohana-slideshow-container .ohana-paginator img:hover {
        opacity: 1;
    }
      
    .ohana-slideshow-container .ohana-paginator img.IsActive {
        opacity: 1;
    }

    .ohana-slideshow-container #ohana-arrow-paginator-left img:hover,
    .ohana-slideshow-container #ohana-arrow-paginator-right img:hover{
        cursor: pointer;
    }

    .ohana-slideshow-container #ohana-arrow-paginator-left img,
    .ohana-slideshow-container #ohana-arrow-paginator-right img{
        width: 25px;
    }
    
    .ohana-slideshow-container #ohana-arrow-paginator-right img{
        margin-left: 100px;
    }

    .ohana-slideshow-container #ohana-arrow-paginator-left img{
        margin-right: 100px;
    }

    @media (max-width: 768px) {
        .ohana-slideshow-container .ohana-paginator {
            gap: 0;
        }

        .ohana-slideshow-container #ohana-arrow-paginator-left img,
        .ohana-slideshow-container #ohana-arrow-paginator-right img{
            width: 30px;
            margin-left: 0;
            margin-right: 0;
        }
    }

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Footer */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */

    footer [data-id="#top"] {
        font-size: 14px;
    }

    footer .ohana-footer-social figure img{
        width: 30px;
    }

    @media (max-width: 768px) {
        footer .ohana-footer-social figure img{
            width: 25px;
        }
    }

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* About */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */

    /* About Swiper Slider */

    .about-ohana-wrapper {
        margin-block-start:0;
        overflow: hidden;
        position: relative;
    }

    .about-ohana{
        margin-block-start:0;
        height: 1200px;
        background-size: cover;
        background-position: center; 
        transition: opacity 0.5s ease transform 0.5s ease-in-out;
        overflow: hidden;
    }

    .ohana-about-pointer {
        position: relative;
        width: 40px;
        height: 40px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        background-color: var(--color-ohana-blue);
        box-sizing: border-box;
        z-index: 2;
      }
      
      /* Zwei animierte Ringe */
      .ohana-about-pointer::before,
      .ohana-about-pointer::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 40px;
        height: 40px;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        border: 2px solid var(--color-ohana-blue);
        opacity: 0;
        animation: pulse-ring 3s ease-out infinite;
        z-index: 1;
      }

    /* Keyframes: Ring wächst und verblasst */
    @keyframes pulse-ring {
        0% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.8;
        }
        100% {
            transform: translate(-50%, -50%) scale(1.3);
            opacity: 0;
        }
    }

    .ohana-about-text {
        opacity: 1 !important;
        position: relative;
        bottom: 400px;
    }

    .mySwiper{
        position: absolute !important;
        width: 100% !important;
        padding-top: 0!important;
        padding-bottom: 0!important;
    }
    
    .swiper {
        height: 600px;
    }

    .swiper-wrapper {
        margin-top: 80px !important;
        gap: 0 !important;
    }

    .swiper-slide {
        opacity: 0.5;
        text-align: center;
        max-height: 500px;
        display: flex;
        flex-direction: column;
        justify-content:baseline; 
        align-items: center; 
    }

    .swiper-slide:hover{
        cursor: grab;
    }

    .swiper-slide p{
        opacity: 0;
    }

    .swiper-slide-active,
    .swiper-slide-active p {
        opacity: 1;
    }

    .swiper-slide p {
       line-height: 21px;
    }

    .swiper-slide p strong{
        font-family: 'Roboto-Medium', sans-serif;
     }

    .swiper-slide img {
        width: 300px !important;
        height: auto;
        object-fit: cover;
        clip-path: circle(50% at center);
        margin-bottom: 0.5rem;
    }

    @media (max-width: 600px) {
        .about-ohana{
            height: 1100px;
        }

        .swiper-wrapper {
            margin-top: 80px !important;
        }

        .swiper-slide img {
            width: 220px !important;
        }

        .ohana-about-text {
            bottom: 350px;
        }
    }

    /* Bubble Slider */
    #selectedUser{
        width: 100%;
        max-width: 1000px;
        padding: 25px 0;
    }

    #selectedUser .selected{
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    #selectedUser .selected .aboutTextContainer{
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 25px;
        margin-block-start: 0; 
    }

    #selectedUser .selected img{
        width: 1200px;
        height: auto;
        object-fit: cover;
        clip-path: circle(50% at center);
    }

    #userContainer{
        width: 100%;
        max-width: 1200px;
        margin: 0;
        height: auto;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: center; 
        gap:10px;
    }

    #userContainer .row{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly; 
        /* justify-content: center; */
    }

    .ohana-avatar{
        animation: 
            clipIn 0.5s ease-in-out forwards;
            /* fadeIn 0.5s ease-in forwards; */
        overflow: hidden;
        position: relative;
        clip-path: circle(50% at center);
        transition: all .5s ease-in-out;
    }

    .hidden{
        display: none;  
    }

    .avatar-small{
        width: 125px;
        height: 125px;
    }

    .avatar-medium{
        width: 200px;
        height: 200px;
    }

    .avatar-large{
        width: 275px;
        height: 275px;
    }

    .ohana-avatar img:hover {
        cursor: pointer;
        overflow: hidden;
        transform: scale(1.15);
    }

    .ohana-avatar img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.0);
        transition: all 0.5s ease-in-out;
    }

    .active {
        animation: 
        clipOut 0.5s ease-in-out forwards,
        disappear 0.5s ease-in-out 0.5s forwards;
    }

    .fadeIn{
        animation: fadeIn 0.5s ease-in-out forwards;
    }

    .fadeOut{
        animation: fadeOut 0.5s ease-in-out forwards;
    }


    @keyframes disappear {
        100% { width: 0; margin: 0; padding: 0; }
    }

    @keyframes clipIn {
        0% {clip-path: circle(0% at center);}
        100% {clip-path: circle(50% at center);}
    }

    @keyframes clipOut {
        0% {clip-path: circle(50% at center);}
        100% {clip-path: circle(0% at center);}
    }

    @keyframes fadeIn {
        0% { opacity: 0; }
        100% { opacity: 1; }
    }

    @keyframes fadeOut {
        0% { opacity: 1; }
        100% { opacity: 0; }
    }

    #selectedUser .selected {
        margin-top: 10%;
    }

    @media screen and (max-width:768px) {
        #selectedUser .selected{
            flex-direction: column;
        }

        #selectedUser .selected .aboutTextContainer{
            padding: 0;
            min-height: 150px;
            justify-content: flex-start;
        }

        #selectedUser .selected img {
            margin-top: 10%;
            margin-bottom: 30px;
        }

        .avatar-small{
            width: 75px;
            height: 75px;
        }

        .avatar-medium{
            width: 100px;
            height: 100px;
        }

        .avatar-large{
            width: 125px;
            height: 125px;
        }
    }

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Cases */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
    
    .ohana-cases-intro{
        display: flex;
        justify-content: center;
        align-items: center;
    }

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Case Preview Container / Text Container with CTA */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
        /* .cases-wrapper.has-global-padding{
            padding: 0 !important;
        } */

        .pin-spacer{
            max-width: 100% !important;
        }

        .ohana-case-container {
            position: relative;
            height: 100vh;
            overflow: hidden;
            margin-top: 0;
        }

        .ohana-case-container img{
            width: 100%;
            height: 100vh;
            object-fit: cover;
        }

        .ohana-text-container {
            position: absolute;
            top: 50%; 
            left: 50%;
            transform: translate(-50%, -70%);
            backdrop-filter: blur(5px);
            margin: 0;
            padding: 5%;
            border-radius: 40px;
            text-align: center;
            width: 70%;
            max-width: 600px;
        }

        .ohana-text-container.left {
            left: 25%;
        }

        .ohana-text-container.right {
            left: 75%;
        }

        @media screen and (max-width: 1100px) {
            .ohana-text-container.left {
                left: 40%;
            }
    
            .ohana-text-container.right {
                left: 60%;
            }
        }

    .ohana-text-container .case-button{
        text-transform: uppercase;
    }

    .ohana-text-container .case-button a{
        width: 150px;
        border-radius: 40px;
        letter-spacing: var(--letter-spacing);
        font-size: clamp(.9rem, 2.5vw, 1.0rem);
    }

    .ohana-text-container .case-button:hover{
        opacity: .9;
    }

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Case Details / Custom Parts
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */   
    
    .ohana-case-details .ohana-list-column{
        margin-bottom: 30px;
    }

    /* Blue Dot Icon  */
    ul.is-ohana-style {
        list-style: none;
        padding-left: 0;
    }
    
    ul.is-ohana-style li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    @media (max-width: 1440px){
        ul.is-ohana-style li {
            font-size: clamp(0.8rem, 1.8vw, 1rem);
        }
    }
    
    ul.is-ohana-style li::before {
        content: '';
        width: 15px;
        height: 15px;
        background-image: url('./assets/icons/ohana-check-icon.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        flex-shrink: 0;
        margin-top: .5rem; 
    }

    @media (max-width: 1440px){
        ul.is-ohana-style li::before {
            margin-top: .3rem; 
        }
    }

    @media (max-width: 768px){
        ul.is-ohana-style li::before {
            margin-top: 1.5px; 
        }
    }


    /* Instagram iFrame  */
    .ohana-insta-feed iframe{
        min-width: 200px !important;
    }

    /* Image Grid / Image Slider  */
    .wp-block-group .ohana-case-image-gallery{
        width: 100%;
        margin: 0 auto;
        display: block;
        padding: 0 9.5% 0 9.5%;
    }
    
    .wp-block-group .ohana-case-image-gallery .ohana-image-grid{
        columns: 300px;
    }

    @media screen and (max-width: 940px) {
        .wp-block-group .ohana-case-image-gallery .ohana-image-grid {
            display: none;
        }

        .ohana-mobile-image-slider {
            display: block;
        }
    }

    @media screen and (min-width: 940px) {
        .ohana-mobile-image-slider {
            display: none;
        }
    }

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Contact Flip Card / Contact Form */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */   
    
    .ohana-contact {
        background-color: var(--color-ohana-brown);
        display: flex;
        justify-content: center;
    }    

    .flip-card {
        width: 80%;
        max-width: 1100px;
        height: 100vh;
        perspective: 2000px;
    }

    .flip-card-cta{
        position: absolute;
        bottom: 3%;
        right: 3%;
        cursor: pointer;
        backface-visibility: hidden;
    }

    .flip-card-cta img{
        width: 60px;
    }

    .flip-card .flip-card-mail a,
    .flip-card .flip-card-tel a{
        font-family: 'Roboto-Medium';
    }

    .flip-card-inner {
        position: relative;
        text-align: center;
        transition: transform 0.6s;
        transform-style: preserve-3d;
    }

    .flip-card.flipped .flip-card-inner {
        transform: rotateY(180deg);
    }

    .flip-card-front, .flip-card-back {
        position: absolute;
        width: 100%;
        /* height: 750px; */
        height: auto;
        backface-visibility: hidden;
        border-radius: 40px;
    }

    .flip-card-front {
        /* display: flex;
        align-items: center;
        justify-content: center; */
        background-color: #C3BEBC;
        padding: 80px 0 80px 0;
    }

    .flip-card-back{
        padding: 30px 0 50px 0;
    }

    .flip-card-front .contact-logo img {
        padding: 0 15px 0 15px;
    }

    .flip-card-back {
        background-color: #C3BEBC;
        transform: rotateY(180deg);
    }

    /* Form Styling */
    .flip-card-back .ohana-form .wpforms-field-container{
        padding: 0 4% 0 4%;
    }

    .flip-card-back .ohana-form label,
    .flip-card-back .ohana-form button {
        letter-spacing: var(--letter-spacing);
        text-transform: uppercase;
    }

    .flip-card-back .ohana-form .wpforms-field-container input{
        border-radius: 40px;
        width: 100%;
    }

    .flip-card-back .ohana-form .wpforms-field-container textarea{
        border-radius: 20px;
        width: 100%;
        min-height: 200px; /* adjust the value as needed */
    }

    .flip-card-back .ohana-form .wpforms-submit-container button {
        background-color: var(--color-ohana-brown) !important;
        font-size: clamp(.9rem, 2.5vw, 1rem);
        border-radius: 40px;
        width: 200px;
    }

    .wpforms-container .wpforms-field{
        padding: 15px !important;
    }

    .wpforms-container input.wpforms-field-medium {
        max-width: 100%;
    }

    #wpforms-confirmation-376{
        background-color: transparent;
        border: none;
    }

    .wpforms-container .g-recaptcha{
        display: inline-block;
    }

    @media screen and (max-width:768px) {
        .wp-block-group .flip-card {
            margin-top: 50px;
            height: 700px;
        }

        .flip-card-back .ohana-form .wpforms-field-container textarea{
            min-height: auto;
        }

        .wpforms-container .g-recaptcha{
            scale: 0.7;
        }

        .flip-card-cta{
            bottom: 4%;
            right: 5%;
        }

        .flip-card-cta img{
            width: 40px;
        }
    }

    @media screen and (max-width:420px) {
        .wpforms-container .g-recaptcha{
            scale: 0.6;
        }
    }

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Imprint / Data Privacy */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */

    /* Header */
    .ohana-misc-section{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ohana-misc-section img{
        width: 1000px;
        height: auto;
    }

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Not Found
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */  

.ohana-not-found-section{
    display: flex;
    align-items: center;
    justify-content: center;
}