/**
 * Text on Image Block - Académie des Étoiles
 */

.ade-text-on-image { margin: var(--ade-space-2xl) 0; }

.ade-text-on-image__container {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--ade-shadow-lg);
}

/* Height variants */
.ade-text-on-image--small .ade-text-on-image__container {
    min-height: 250px;
}

.ade-text-on-image--medium .ade-text-on-image__container {
    min-height: 400px;
}

.ade-text-on-image--large .ade-text-on-image__container {
    min-height: 550px;
}

/* Overlay for text readability */
.ade-text-on-image__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.ade-text-on-image__overlay--none {
    display: none;
}

.ade-text-on-image__overlay--light {
    background: rgba(0, 0, 0, 0.2);
}

.ade-text-on-image__overlay--medium {
    background: rgba(0, 0, 0, 0.4);
}

.ade-text-on-image__overlay--dark {
    background: rgba(0, 0, 0, 0.6);
}

/* Content positioning */
.ade-text-on-image__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--ade-space-md);
    padding: var(--ade-space-2xl);
    height: 100%;
    min-height: inherit;
}

/* Position variants */
.ade-text-on-image__content--top-left {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.ade-text-on-image__content--top-center {
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.ade-text-on-image__content--top-right {
    justify-content: flex-start;
    align-items: flex-end;
    text-align: right;
}

.ade-text-on-image__content--center {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ade-text-on-image__content--bottom-left {
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
}

.ade-text-on-image__content--bottom-center {
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}

.ade-text-on-image__content--bottom-right {
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
}

/* Text styling */
.ade-text-on-image__heading {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    max-width: 800px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ade-text-on-image__body {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    max-width: 700px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.ade-text-on-image__body p {
    margin: 0 0 var(--ade-space-sm) 0;
}

.ade-text-on-image__body p:last-child {
    margin-bottom: 0;
}

/* Color schemes */
.ade-text-on-image__content--light {
    color: var(--ade-white);
}

.ade-text-on-image__content--dark {
    color: var(--ade-text);
}

.ade-text-on-image__content--dark .ade-text-on-image__heading,
.ade-text-on-image__content--dark .ade-text-on-image__body {
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .ade-text-on-image--small .ade-text-on-image__container {
        min-height: 200px;
    }

    .ade-text-on-image--medium .ade-text-on-image__container {
        min-height: 300px;
    }

    .ade-text-on-image--large .ade-text-on-image__container {
        min-height: 400px;
    }

    .ade-text-on-image__content {
        padding: var(--ade-space-xl);
    }

    .ade-text-on-image__heading {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .ade-text-on-image__body {
        font-size: 1rem;
    }
}
