/**
 * Block: bloc_text_01
 * Description: Simple text block with tagline, headline, paragraph and CTA buttons
 *
 * Figma Specs:
 * - Container: 1440px wide, bg white, padding 64px/80px
 * - Content: 1312px wide, gap 40px
 * - Text gap: 24px
 * - Button gap: 16px
 * - Colors: #232425 (text), #2464D1 (brand primary)
 */

/* ========================================
   CONTAINER
   ======================================== */

.bloc-text-01 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    padding: 80px 64px;
}

.bloc-text-01__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    max-width: 1312px;
}

/* ========================================
   CONTENT (Text Area)
   ======================================== */

.bloc-text-01__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    color: #232425;
}

/* Tagline */
.bloc-text-01__tagline {
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

/* Headline */
.bloc-text-01__headline {
    font-family: inherit;
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    margin: 0;
    width: 100%;
}

/* Paragraph */
.bloc-text-01__paragraph {
    font-family: inherit;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    width: 100%;
}

/* ========================================
   ACTIONS (Buttons)
   ======================================== */

.bloc-text-01__actions {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.bloc-text-01__button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 8px 24px;
    font-family: inherit;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.bloc-text-01__button:hover {
    opacity: 0.9;
}

/* Primary Button */
.bloc-text-01__button--primary {
    background-color: #3C0314;
    color: #ffffff;
    border: none;
}

/* Secondary Button */
.bloc-text-01__button--secondary {
    background-color: #ffffff;
    color: #3C0314;
    border: 1px solid #3C0314;
}

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

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .bloc-text-01 {
        padding: 60px 40px;
    }

    .bloc-text-01__headline {
        font-size: 40px;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    .bloc-text-01 {
        padding: 48px 24px;
    }

    .bloc-text-01__container {
        gap: 32px;
    }

    .bloc-text-01__content {
        gap: 16px;
    }

    .bloc-text-01__headline {
        font-size: 32px;
    }

    .bloc-text-01__paragraph {
        font-size: 16px;
    }

    .bloc-text-01__actions {
        flex-direction: column;
        width: 100%;
    }

    .bloc-text-01__button {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .bloc-text-01 {
        padding: 32px 16px;
    }

    .bloc-text-01__headline {
        font-size: 26px;
    }

    .bloc-text-01__button {
        font-size: 16px;
        padding: 8px 16px;
        height: 42px;
    }
}
