/* ═══════════════════════════════════════════════
   CAHIER DES CHARGES — Combotcha
   ═══════════════════════════════════════════════ */
body {
    background-image: url('../images/allover-plain.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-color: #FFEFE6;
}

h1 { display: none; }

/* ─── ANIMATION ──────────────────────────────── */
.cdc-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.cdc-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── HERO ───────────────────────────────────── */
.cdc-hero {
    background-color: #FFD3EA;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 2rem 2.5rem;
    width: 100%;
}

.cdc-hero__top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

.cdc-title {
    font-family: 'GillSans-UltraBold', sans-serif;
    font-size: 2.8rem;
    color: #FF1D0F;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

.cdc-cat {
    width: 65px;
    height: auto;
    flex-shrink: 0;
}

/* ─── INTRO (dans le hero) ───────────────────── */
.cdc-intro {
    max-width: 760px;
    width: 100%;
}

.cdc-intro__text {
    font-family: 'Americane', sans-serif;
    font-size: 1rem;
    color: #2A5842;
    line-height: 1.75;
    margin-bottom: 0.8rem;
}

.cdc-intro__spoiler {
    font-family: 'Blisstwin', cursive;
    font-style: italic;
    font-size: 0.95rem;
    color: #FF1D0F !important;
    margin: 0;
    line-height: 1.6;
}

/* ─── PAGE WRAPPER ───────────────────────────── */
.cdc-page {
    padding: 2rem 2rem 0;
    max-width: 760px;
    margin: 0 auto;
}

/* ─── BLOCS NUMÉROTÉS ────────────────────────── */
.cdc-bloc {
    margin-bottom: 2.5rem;
}

.cdc-bloc__title {
    font-family: 'Blisstwin', cursive;
    font-style: italic;
    font-size: 1.6rem;
    font-weight: normal;
    color: #6EA14F;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: baseline;
    gap: 0.35em;
    line-height: 1.3;
}

.cdc-bloc__card {
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
}

.cdc-bloc:nth-child(odd) .cdc-bloc__card {
    background-color: #FFA3C8;
}

.cdc-bloc:nth-child(even) .cdc-bloc__card {
    background-color: #FFD3EA;
}

.cdc-bloc__text {
    font-family: 'Americane', sans-serif;
    font-size: 0.95rem;
    color: #2A5842;
    line-height: 1.75;
}

.cdc-bloc__text + .cdc-bloc__text {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(42, 88, 66, 0.15);
}

/* ─── BLOC OBJECTIF ──────────────────────────── */
.cdc-objectif {
    background-color: #2A5842;
    margin: 0 calc(-50vw + 50%);
    padding: 3.5rem 2rem;
}

.cdc-obj__inner {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cdc-obj__content {
    flex: 1;
}

.cdc-obj__title {
    font-family: 'GillSans-UltraBold', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    color: #FFD3EA;
    margin: 0 0 1.25rem;
    letter-spacing: 0.04em;
}

.cdc-obj__text {
    font-family: 'Americane', sans-serif;
    font-size: 1rem;
    color: #FFEFE6;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.cdc-obj__text em {
    font-family: 'Blisstwin', cursive;
    font-style: italic;
    color: #FFD3EA;
}

.cdc-obj__img {
    width: 260px;
    height: auto;
    flex-shrink: 0;
    align-self: center;
}

/* ─── CTA ────────────────────────────────────── */
.cdc-obj__cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background-color: #6EA14F;
    color: #FFEFE6;
    font-family: 'GillSans-UltraBold', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.cdc-obj__cta:hover {
    background-color: #FF1D0F;
    transform: scale(1.04);
}

/* ─── VIDE ───────────────────────────────────── */
.cdc-empty {
    text-align: center;
    font-family: 'Blisstwin', cursive;
    font-style: italic;
    color: #FF1D0F;
    padding: 3rem 0;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 767px) {
    .cdc-hero {
        padding: 2rem 1.2rem 2rem;
    }

    .cdc-page {
        padding: 1.5rem 1.2rem 0;
    }

    .cdc-objectif {
        padding: 2.5rem 1.2rem;
    }

    .cdc-obj__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cdc-obj__img {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .cdc-cat { display: none; }
    .cdc-bloc__card { padding: 1rem 1.2rem; }
} 