/**
 * Quote on Image Block - Académie des Étoiles
 * Quote overlaid on background image with position variants
 */

/* ========================================
   BASE STYLES
   ======================================== */

.ade-quote-on-image {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    margin: var(--ade-space-2xl) 0;
    box-shadow: var(--ade-shadow-lg);
}

/* Background container */
.ade-quote-on-image__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Background image */
.ade-quote-on-image__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark overlay for text readability */
.ade-quote-on-image__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(39, 51, 75, 0.8) 0%, rgba(155, 81, 224, 0.6) 100%);
    opacity: 0.5;
}

/* Content container */
.ade-quote-on-image__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: var(--ade-space-3xl) var(--ade-space-2xl);
}

/* Blockquote */
.ade-quote-on-image__blockquote {
    margin: 0;
    padding: 0;
    max-width: 800px;
}

/* Quote icon */
.ade-quote-on-image__icon {
    margin-bottom: var(--ade-space-lg);
    color: var(--ade-white);
    opacity: 0.9;
}

.ade-quote-on-image__icon svg {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Quote text */
.ade-quote-on-image__text {
    margin: 0 0 var(--ade-space-xl) 0;
    font-size: var(--ade-font-size-xl);
    font-weight: 600;
    line-height: 1.5;
    color: var(--ade-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Footer */
.ade-quote-on-image__footer {
    display: flex;
    flex-direction: column;
    gap: var(--ade-space-xs);
}

/* Author */
.ade-quote-on-image__author {
    font-style: normal;
    font-weight: 700;
    font-size: var(--ade-font-size-medium);
    color: var(--ade-white);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Title */
.ade-quote-on-image__title {
    font-size: var(--ade-font-size-base);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ========================================
   POSITION VARIANTS
   ======================================== */

/* Center alignment (default) */
.ade-quote-on-image--center .ade-quote-on-image__content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ade-quote-on-image--center .ade-quote-on-image__blockquote {
    margin: 0 auto;
}

.ade-quote-on-image--center .ade-quote-on-image__icon {
    display: flex;
    justify-content: center;
}

.ade-quote-on-image--center .ade-quote-on-image__footer {
    align-items: center;
}

/* Left alignment */
.ade-quote-on-image--left .ade-quote-on-image__content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ade-quote-on-image--left .ade-quote-on-image__blockquote {
    margin-left: 0;
    margin-right: auto;
}

/* Right alignment */
.ade-quote-on-image--right .ade-quote-on-image__content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ade-quote-on-image--right .ade-quote-on-image__blockquote {
    margin-right: 0;
    margin-left: auto;
    text-align: right;
}

.ade-quote-on-image--right .ade-quote-on-image__icon {
    display: flex;
    justify-content: flex-end;
}

.ade-quote-on-image--right .ade-quote-on-image__footer {
    align-items: flex-end;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media screen and (max-width: 768px) {
    .ade-quote-on-image {
        min-height: 350px;
    }

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

    .ade-quote-on-image__text {
        font-size: var(--ade-font-size-large);
    }

    .ade-quote-on-image__icon svg {
        width: 56px;
        height: 56px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media screen and (max-width: 480px) {
    .ade-quote-on-image {
        min-height: 300px;
        border-radius: 12px;
    }

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

    .ade-quote-on-image__text {
        font-size: var(--ade-font-size-medium);
    }

    .ade-quote-on-image__icon svg {
        width: 48px;
        height: 48px;
    }

    .ade-quote-on-image__author {
        font-size: var(--ade-font-size-base);
    }

    .ade-quote-on-image__title {
        font-size: var(--ade-font-size-small);
    }

    /* Force center alignment on mobile for better readability */
    .ade-quote-on-image--left .ade-quote-on-image__content,
    .ade-quote-on-image--right .ade-quote-on-image__content {
        justify-content: center;
        text-align: center;
    }

    .ade-quote-on-image--left .ade-quote-on-image__blockquote,
    .ade-quote-on-image--right .ade-quote-on-image__blockquote {
        margin: 0 auto;
    }

    .ade-quote-on-image--right .ade-quote-on-image__icon {
        justify-content: center;
    }

    .ade-quote-on-image--right .ade-quote-on-image__footer {
        align-items: center;
    }
}

/* ========================================
   PRINT
   ======================================== */

@media print {
    .ade-quote-on-image {
        box-shadow: none;
        border: 2px solid var(--ade-gray);
        page-break-inside: avoid;
    }

    .ade-quote-on-image__overlay {
        opacity: 0.7 !important;
    }

    .ade-quote-on-image__text,
    .ade-quote-on-image__author,
    .ade-quote-on-image__title {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    }
}
