/**
 * LD Solutions - Section Presentation
 * Style bento aligné avec la section services
 *
 * @package ldsolutions
 * @version 8.0.0
 */

/* ============================================================
   VARIABLES
   ============================================================ */

.lds-presentation {
    --pres-bg: var(--lds-white, #ffffff);
    --pres-blue: var(--lds-navy, #021B50);
    --pres-accent: var(--lds-blue, #125AF8);
    --pres-text: var(--lds-black, #151E28);
    --pres-text-muted: rgba(21, 30, 40, 0.6);
    --pres-ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ============================================================
   SECTION
   ============================================================ */

.lds-presentation {
    position: relative;
    background: var(--pres-bg);
    padding: 160px 2rem 80px;
    overflow: visible;
}

.lds-presentation__container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================================
   BENTO LAYOUT
   ============================================================ */

.lds-presentation__bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: flex-start;
}

/* ============================================================
   CONTENU
   ============================================================ */

.lds-presentation__content {
    background: transparent;
    padding: 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.lds-presentation__title {
    font-family: 'Chillax', Arial, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
    /* Dégradé bleu comme les autres titres */
    color: var(--lds-navy, #021B50);
}

.lds-presentation__title span {
    font-style: italic;
}

.lds-presentation__text {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--pres-text-muted);
    margin: 0 0 2rem;
}

/* ============================================================
   CTA
   ============================================================ */

.lds-presentation__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 28px;
    border-radius: 16px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, #0a3fd0 0%, #1a6aff 100%);
    text-decoration: none;
    border: 2.5px solid rgba(100, 170, 255, 0.5);
    box-shadow:
        0 4px 12px rgba(18, 90, 248, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.35s ease;
    width: fit-content;
    z-index: 1;
}

.lds-presentation__cta:hover,
.lds-presentation__cta:focus {
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, #0d45da 0%, #2575ff 100%);
    border-color: rgba(130, 190, 255, 0.6);
    gap: 14px;
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(18, 90, 248, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

.lds-presentation__cta svg {
    width: 18px;
    height: 18px;
    stroke: var(--lds-white, #ffffff);
    transition: transform 0.3s ease;
}

.lds-presentation__cta:hover svg {
    transform: translateX(4px);
}

/* ============================================================
   IMAGE
   ============================================================ */

.lds-presentation__image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* Overlay bleu navy */
.lds-presentation__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 27, 80, 0.6) 0%, rgba(18, 90, 248, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

.lds-presentation__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .lds-presentation {
        padding: 80px 1.5rem;
    }

    .lds-presentation__content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .lds-presentation {
        padding: 60px 1rem;
    }

    .lds-presentation__bento {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lds-presentation__content {
        padding: 32px;
        order: 1;
    }

    .lds-presentation__image {
        order: 0;
        min-height: 300px;
    }

    .lds-presentation__title {
        font-size: 1.5rem;
    }

    .lds-presentation__cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .lds-presentation {
        padding: 50px 1rem;
    }

    .lds-presentation__content {
        padding: 24px;
    }

    .lds-presentation__image {
        min-height: 250px;
    }

    .lds-presentation__title {
        font-size: 1.375rem;
    }

    .lds-presentation__text {
        font-size: 0.9375rem;
    }

    .lds-presentation__cta {
        height: 52px;
        padding: 0 24px;
        border-radius: 14px;
    }
}
