/* Okau Hero Wrapper */
.okau-hero-wrapper {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Hero Container */
.okau-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Height Variants */
.okau-hero-small {
    min-height: 400px;
    max-height: 400px;
}

.okau-hero-medium {
    min-height: 500px;
    max-height: 500px;
}

.okau-hero-large {
    min-height: 700px;
    max-height: 700px;
}

.okau-hero-full {
    min-height: 100vh;
}

.okau-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Hero Overlay */
.okau-hero__overlay {
    position: absolute;
    padding: 3rem 4rem;
    border-radius: 12px;
    z-index: 10;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.95) !important;
}

/* Overlay Position Classes */
.okau-hero__overlay-top-left {
    top: 3rem;
    left: 3rem;
}

.okau-hero__overlay-top-center {
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
}

.okau-hero__overlay-top-right {
    top: 3rem;
    right: 3rem;
}

.okau-hero__overlay-center-left {
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
}

.okau-hero__overlay-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    width: 90%;
}

.okau-hero__overlay-center-right {
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
}

.okau-hero__overlay-bottom-left {
    bottom: 3rem;
    left: 3rem;
}

.okau-hero__overlay-bottom-center {
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}

.okau-hero__overlay-bottom-right {
    bottom: 3rem;
    right: 3rem;
}

/* Overlay Typography */
.okau-hero__heading {
    margin: 0 0 1.5rem 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #000000 !important;
}

.okau-hero__text {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #333333 !important;
}

/* Preview Mode */
.okau-hero-preview {
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.okau-hero-preview__placeholder {
    text-align: center;
    color: #6c757d;
}

.okau-hero-preview__placeholder i {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .okau-hero-small {
        min-height: 300px;
        max-height: 300px;
    }
    
    .okau-hero-medium {
        min-height: 450px;
        max-height: 450px;
    }
    
    .okau-hero-large {
        min-height: 600px;
        max-height: 600px;
    }
    
    .okau-hero__overlay {
        padding: 2.5rem 3rem;
        max-width: calc(100% - 3rem);
        width: calc(100% - 3rem);
        border-radius: 12px;
    }
    
    .okau-hero__overlay-center {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 70%;
    }
    
    .okau-hero__heading {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        line-height: 1.3;
    }
    
    .okau-hero__text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .okau-hero__overlay-top-left,
    .okau-hero__overlay-top-center,
    .okau-hero__overlay-top-right {
        top: 2rem;
        left: 1.5rem;
        right: 1.5rem;
        transform: none;
    }
    
    .okau-hero__overlay-bottom-left,
    .okau-hero__overlay-bottom-center,
    .okau-hero__overlay-bottom-right {
        bottom: 2rem;
        left: 1.5rem;
        right: 1.5rem;
        transform: none;
    }
    
    .okau-hero__overlay-center-left,
    .okau-hero__overlay-center-right {
        top: 50%;
        left: 1.5rem;
        right: 1.5rem;
        transform: translateY(-50%);
    }
}

@media (max-width: 575.98px) {
    .okau-hero-small {
        min-height: 484px;
        max-height: 353px;
    }
    
    .okau-hero-medium {
        min-height: 350px;
        max-height: 350px;
    }
    
    .okau-hero-large {
        min-height: 450px;
        max-height: 450px;
    }
    
    .okau-hero__overlay {
        padding: 2rem 2.5rem;
        max-width: calc(100% - 2rem);
        width: calc(100% - 2rem);
        border-radius: 12px;
    }
    
    .okau-hero__overlay-center {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 90%;
    }
    
    .okau-hero__heading {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .okau-hero__text {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
}

