/* ─────────────────────────────────────────────────────────────────────────────
   style.css — La Main de Fleur (vitrine statique)
   Compilé depuis app.scss + home.scss + variables.scss
   ───────────────────────────────────────────────────────────────────────────── */

/* ─── VARIABLES (custom properties) ─────────────────────────────────────── */
:root {
    --beige:      #f5ede4;
    --rose-dark: #e0cfc9;
    --brown:      #8b6b5a;
    --dark:       #1a1410;
    --white-warm: #fdfaf7;
    --black:      #0D0D0D;
    --white:      #fafafa;
    --pink:       #e0cfc9;
    --text-color: #212529;
}


@font-face {
    font-family: 'Spinnaker';
    src: url('fonts/Spinnaker-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/Nunito-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/Nunito-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}


/* ─── RESET / BASE ───────────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
    overscroll-behavior-x: none;
}

body {
    color: var(--text-color);
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

h1, h3 {
    font-family: Spinnaker, serif !important;
}

h4, h5, h6 {
    font-family: Jost, serif !important;
}

a {
    font-family: Jost, serif !important;
}

a:hover {
    text-decoration: none !important;
}

/* ─── CLASSES GÉNÉRALES ──────────────────────────────────────────────────── */
.text_container {
    max-width: 80vw;
    margin: 150px auto;
}

.section_title {
    font-family: Spinnaker, serif !important;
    font-size: 48px;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 0 !important;
}

.paragraph {
    font-family: Jost, serif !important;
    font-size: 20px;
}

.text_center {
    text-align: center;
}

@media (max-width: 500px) {
    .text_center {
        text-align: left;
    }
}

.black_font { color: var(--black); }
.white_font { color: var(--white); }

.cta_general {
    padding: 20px 40px;
    font-family: Spinnaker, serif !important;
    font-size: 26px;
    border-radius: 50px;
    border: solid 1px var(--black);
    transition: all 0.3s;
    cursor: pointer;
}

@media (max-width: 500px) {
    .cta_general {
        padding: 16px 30px;
        font-size: 18px;
    }
}

.cta_black {
    color: var(--white);
    background-color: var(--black);
}

.cta_black:hover {
    color: var(--black);
    background-color: var(--white);
    border: solid 1px;
}


/* ─── NAVBAR ─────────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px 24px;
    }
}

.navbar.scrolled {
    background: rgb(225, 208, 201);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 48px;
    box-shadow: 0 1px 0 rgba(139, 107, 90, 0.1);
}

@media (max-width: 768px) {
    .navbar.scrolled {
        padding: 14px 24px;
    }
}

.navbar_logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logoHome {
    width: 160px;
    filter: brightness(0) invert(1);
    transition: filter 0.4s ease, width 0.4s ease;
}

@media (max-width: 768px) {
    .logoHome {
        width: 130px;
    }
}

.navbar.scrolled .logoHome {
    filter: none;
}

.navbar_right {
    display: flex;
    align-items: center;
    gap: 28px;
}

/* Burger */
.navbar_burger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.navbar_burger span {
    display: block;
    height: 1px;
    background: var(--white);
    transition: background 0.4s ease, width 0.3s ease;
}

.navbar_burger span:first-child { width: 24px; }
.navbar_burger span:last-child  { width: 16px; }

.navbar_burger:hover span { width: 24px; }

.navbar.scrolled .navbar_burger span {
    background: var(--dark);
}

/* Livre dans la navbar */
.navbar_book {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    visibility: hidden;
}

@media (max-width: 1024px) {
    .navbar_book { display: none; }
}

.navbar_book__img {
    width: 32px;
    height: 48px;
    object-fit: cover;
    object-position: top center;
    border-radius: 2px 4px 4px 2px;
    box-shadow: -2px 0 0 rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.2);
}

.navbar_book__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.navbar.scrolled .navbar_book {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.navbar_book__label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brown);
}

.navbar_book__title {
    font-family: 'Spinnaker', serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--dark);
    white-space: nowrap;
}

.navbar_book__title em {
    font-style: italic;
    color: var(--brown);
}

.navbar_book__cta {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--dark);
    padding: 8px 20px;
    border-radius: 100px;
    white-space: nowrap;
    transition: background 0.3s;
}

.navbar_book:hover .navbar_book__cta {
    background: var(--brown);
    color: var(--white);
}


/* ─── OFFCANVAS (menu latéral) ───────────────────────────────────────────── */
.offcanvas_bar.uk-offcanvas-bar {
    background: var(--white);
    padding: 60px 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 340px;
}

@media (max-width: 500px) {
    .offcanvas_bar.uk-offcanvas-bar {
        width: 100vw;
        padding: 60px 32px 40px;
    }
}

.offcanvas_close.uk-offcanvas-close {
    top: 24px;
    right: 32px;
}

.offcanvas_close.uk-offcanvas-close svg {
    width: 24px !important;
    color: var(--dark) !important;
}

.offcanvas_nav {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.offcanvas_nav li {
    border-bottom: 1px solid rgba(26, 20, 16, 0.07);
}

.offcanvas_nav li:first-child {
    border-top: 1px solid rgba(26, 20, 16, 0.07);
}

.offcanvas_link {
    display: block;
    font-family: 'Spinnaker', serif !important;
    font-size: 28px;
    font-weight: 300;
    color: var(--dark) !important;
    text-decoration: none;
    padding: 18px 0;
    line-height: 1;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.offcanvas_link:hover {
    color: var(--brown) !important;
    padding-left: 10px;
    text-decoration: none !important;
}

.offcanvas_buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 48px;
}

.offcanvas_btn {
    display: block;
    text-align: center;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: 'Jost', sans-serif !important;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.offcanvas_btn--dark {
    background: var(--dark);
    color: var(--white);
    border: 1px solid var(--dark);
}

.offcanvas_btn--dark:hover {
    background: var(--white);
    color: var(--dark);
}

.offcanvas_btn--light {
    background: transparent;
    color: var(--dark);
    border: 1px solid rgba(26, 20, 16, 0.2);
}

.offcanvas_btn--light:hover {
    background: var(--pink);
    border-color: var(--pink);
}


/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(253, 250, 247, 0.08);
    padding: 64px 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer_main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer .left {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.footer .center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.footer_bottom {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(253, 250, 247, 0.06);
    padding-top: 24px;
}

.footer_copyright {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: rgba(253, 250, 247, 0.3);
    text-transform: uppercase;
}

.footerLink {
    font-family: 'Jost', sans-serif !important;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253, 250, 247, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footerLink:hover {
    color: var(--rose-dark);
}

.logoFooter {
    height: 96px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logoFooter:hover {
    opacity: 1;
}

.footer .right .uk-icon-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(253, 250, 247, 0.06);
    border: 1px solid rgba(253, 250, 247, 0.1);
    color: rgba(253, 250, 247, 0.6) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.footer .right .uk-icon-button:hover {
    background: var(--brown);
    border-color: var(--brown);
    color: var(--white) !important;
}

@media (max-width: 768px) {
    .footer {
        padding: 48px 40px 32px;
    }
}

@media (max-width: 500px) {
    .footer {
        padding: 40px 24px 28px;
        gap: 36px;
    }
    .footer_main {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    .footer .left {
        align-items: center;
    }
    .footer .right {
        justify-content: center;
    }
}

@media (min-width: 500px) {
    .footer .center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOME.CSS — styles spécifiques à la page d'accueil
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Animations ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes heroZoom {
    to { transform: scale(1); }
}

@keyframes scrollAnim {
    0%   { top: -100%; }
    50%  { top: 0; }
    100% { top: 100%; }
}

@keyframes cardFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ─── HERO ───────────────────────────────────────────────────────────────── */
.home_main_div {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    width: 100vw;
}

.home_main_div::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("images/logo_home.jpg") center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 8s ease-out forwards;
    z-index: 0;
}

.home_main_div::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(20,14,10,0.05) 0%,
        rgba(20,14,10,0.55) 60%,
        rgba(20,14,10,0.75) 100%
    );
    z-index: 1;
}

.hero_content {
    position: relative;
    z-index: 2;
    padding: 0 80px 80px;
    max-width: 800px;
}

.hero_eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.5s forwards;
}

.homeTitle {
    font-family: 'Spinnaker', sans-serif !important;
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 300;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.9s ease-out 0.8s forwards;
}

.homeTitle em {
    font-style: italic;
    color: var(--pink);
}

.homeUnderTitle {
    font-family: 'Jost', sans-serif !important;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(253,250,247,0.75);
    margin-bottom: 48px;
    max-width: 420px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.9s ease-out 1.1s forwards;
}

.homeScrollDown {
    font-family: 'Jost', sans-serif !important;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(253,250,247,0.4);
    padding-bottom: 6px;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeUp 0.9s ease-out 1.4s forwards;
}

.homeScrollDown p { margin: 0; }
.homeScrollDown img { display: none; }

.homeScrollDown::after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: currentColor;
    position: relative;
    flex-shrink: 0;
}

.homeScrollDown:hover {
    color: var(--pink);
    border-bottom-color: var(--pink);
    gap: 22px;
}

.hero_scroll_indicator {
    position: absolute;
    bottom: 48px;
    right: 64px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeIn 0.8s ease 2s forwards;
}

.hero_scroll_indicator span {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253,250,247,0.5);
    writing-mode: vertical-rl;
}

.scroll_line {
    width: 1px;
    height: 60px;
    background: rgba(253,250,247,0.3);
    position: relative;
    overflow: hidden;
}

.scroll_line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pink);
    animation: scrollAnim 2s ease-in-out 2s infinite;
}

@media (max-width: 768px) {
    .hero_content {
        padding: 0 32px 64px;
    }
    .hero_scroll_indicator {
        display: none;
    }
}


/* ─── INTRO SECTION ──────────────────────────────────────────────────────── */
#programs_section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    padding: 100px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    #programs_section {
        grid-template-columns: 1fr;
        padding: 64px 32px;
    }
}

.section_intro_label {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section_intro_label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--brown);
}

.section_intro_left .section_title {
    font-family: 'Spinnaker', serif !important;
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dark);
    padding-right: 40px;
    text-align: left;
    margin: 0;
}

.section_intro_left .section_title em {
    font-style: italic;
    color: var(--brown);
}

.section_intro_right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 60px;
}

.section_intro_right .paragraph {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(26,20,16,0.65);
    max-width: 420px;
    text-align: left;
}


/* ─── PROGRAMME GRID ─────────────────────────────────────────────────────── */
.programmes_header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 0 48px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.programmes_title_label {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--dark);
}

.programmes_count {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    color: rgba(26,20,16,0.4);
    letter-spacing: 0.05em;
}

@media (max-width: 700px) {
    .programmes_header {
        padding: 0 16px;
    }
}

.programme_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 16px;
    margin: 0 auto 40px;
    padding: 0 48px;
    max-width: 1280px;
}

/* p2 et p5 décalées vers le haut */
#p2.uk-scrollspy-inview,
#p5.uk-scrollspy-inview {
    transform: translateY(calc(-20% + 12px));
}

@media (max-width: 700px) {
    .programme_grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        max-width: 95vw;
        padding: 0 16px;
        gap: 12px;
    }
    #p1, #p2, #p3, #p4, #p5, #p6 {
        grid-column: auto;
        grid-row: auto;
        height: auto;
    }
}

.programme_card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    color: var(--white);
    overflow: hidden;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow 0.4s ease;
    animation: cardFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.programme_card:nth-child(1) { animation-delay: 0s; }
.programme_card:nth-child(2) { animation-delay: 0.08s; }
.programme_card:nth-child(3) { animation-delay: 0.16s; }
.programme_card:nth-child(4) { animation-delay: 0.24s; }
.programme_card:nth-child(5) { animation-delay: 0.32s; }
.programme_card:nth-child(6) { animation-delay: 0.4s; }

.programme_card:not(#p6):hover {
    box-shadow: 0 20px 60px rgba(20,14,10,0.18);
    color: var(--white);
}

/* Overlay dégradé */
.programme_card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20,14,10,0.72) 0%,
        rgba(20,14,10,0.1) 55%,
        rgba(20,14,10,0.0) 100%
    );
    transition: background 0.4s;
    pointer-events: none;
    z-index: 1;
}

#p1:hover::before,
#p2:hover::before,
#p3:hover::before,
#p4:hover::before,
#p5:hover::before {
    background: rgba(20,14,10,0.52);
}

.card_content {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.programme_card:hover .card_content {
    transform: translateY(-6px);
}

.card_tag {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s 0.05s;
    display: block;
}

.programme_card:hover .card_tag {
    opacity: 1;
    transform: translateY(0);
}

.card_title {
    font-family: 'Spinnaker', serif !important;
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: block;
}

#p2 .card_title { font-size: 28px; }

.card_program_description {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(253,250,247,0.85);
    display: none;
    z-index: 2;
    position: relative;
    padding: 0 24px 24px;
}

.programme_card:hover .card_program_description {
    display: block;
}

@media (max-width: 500px) {
    .programme_card { height: 220px; }
    .card_program_description { display: none !important; }
    .card_title { font-size: 18px; }
}

/* Placeholder p6 */
#p6 {
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}

#p6::before { display: none; }

#p6 .card_title {
    font-family: 'Spinnaker', serif !important;
    font-style: italic;
    color: var(--brown);
    font-size: 18px;
    text-shadow: none;
    opacity: 0.8;
}


/* ─── PRÉSENTATION ───────────────────────────────────────────────────────── */
.presentation {
    display: grid;
    grid-template-columns: 340px 1fr;
    overflow: hidden;
    border-radius: 24px;
    background: var(--beige);
    width: calc(100% - 96px);
    max-width: 87vw;
    margin: 200px auto 200px;
    min-height: 420px;
}

@media (max-width: 1024px) {
    .presentation {
        grid-template-columns: 1fr;
        width: calc(100% - 64px);
    }
}

@media (max-width: 500px) {
    .presentation {
        width: calc(100% - 32px);
        margin: 40px auto 80px;
        max-width: 100vw;
    }
}

.contain_photo {
    position: relative;
    overflow: hidden;
}

.contain_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.7s ease;
}

@media (max-width: 1024px) {
    .contain_photo {
        height: 320px;
    }
}

.presentation:hover .contain_photo img {
    transform: scale(1.03);
}

.contain_presentation {
    padding: 64px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
}

@media (max-width: 1024px) {
    .contain_presentation {
        padding: 48px 40px;
    }
}

@media (max-width: 500px) {
    .contain_presentation {
        padding: 32px 24px;
    }
}

.presentation_label {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.presentation_label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--brown);
    display: block;
}

.presentation_title {
    font-family: 'Spinnaker', serif !important;
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dark);
    margin: 0;
}

.presentation_title em {
    font-style: italic;
    color: var(--brown);
}

.contain_presentation.paragraph p {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(26,20,16,0.65);
    margin-bottom: 40px;
    max-width: 100%;
    text-align: left;
}

.contain_presentation .cta_black {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--dark);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 100px;
    transition: all 0.3s;
    align-self: flex-start;
    position: static;
    border: none;
}

.contain_presentation .cta_black::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
    transition: width 0.3s;
}

.contain_presentation .cta_black:hover {
    background: var(--brown);
}

.contain_presentation .cta_black:hover::after {
    width: 24px;
}

@media (max-width: 1024px) {
    .contain_presentation .cta_black {
        align-self: center;
    }
}


/* ─── AVIS CLIENTS ───────────────────────────────────────────────────────── */
.avis_clients {
    background: var(--dark);
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.avis_clients::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 60px;
    font-family: 'Spinnaker', serif;
    font-size: 400px;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .avis_clients {
        padding: 80px 32px;
    }
}

.avis_clients .section_title {
    font-family: 'Spinnaker', serif !important;
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 300;
    color: var(--white);
    max-width: 1184px;
    margin: 0 auto 64px !important;
    width: 100%;
}

.avis_clients .section_title em {
    font-style: italic;
    color: var(--rose-dark);
}

.avis_clients .uk-slider-container {
    max-width: 1184px;
    margin: 0 auto;
    width: 100%;
}

.uk-panel {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 36px;
    margin-right: 24px;
    transition: background 0.3s;
    height: 100%;
}

.uk-panel:hover {
    background: rgba(255,255,255,0.08);
}

.avis_clients .avis {
    font-family: 'Spinnaker', serif;
    font-size: 17px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(253,250,247,0.75);
    margin-bottom: 28px;
    text-align: left;
}

.avis_clients .avis::before { content: '"'; }
.avis_clients .avis::after  { content: '"'; }

.avis_clients .author {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.05em;
    text-align: left;
}


/* ─── RÉSEAUX SOCIAUX ────────────────────────────────────────────────────── */
.contain_socials {
    padding: 100px 0;
}

.socials_label {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brown);
    text-align: center;
    margin-bottom: 0;
}

.contain_socials .section_title {
    font-family: 'Spinnaker', serif !important;
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 300;
    color: var(--dark);
    text-align: center;
    margin-bottom: 8px;
}

.contain_socials .section_title em {
    font-style: italic;
    color: var(--brown);
}

.social_medias {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 80vw;
    margin: 0 auto;
    min-height: 40vh;
    align-items: center;
}

.social_medias .social_links {
    display: flex;
    flex-direction: row;
}

.social_links .btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: fit-content;
    margin: 0 60px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s;
    justify-content: flex-end;
}

.social_links .btn p {
    font-family: Jost, serif !important;
    transition: all 0.3s;
}

.social_links .btn:hover p {
    color: var(--pink);
}

.social_links img {
    max-width: 60px;
    height: fit-content;
}

.social_medias .social_display {
    position: relative;
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.social_medias .mobile {
    display: none;
}

@media (max-width: 500px) {
    .social_medias .desktop {
        display: none;
    }
    .social_medias .mobile {
        display: flex;
    }
    .social_links.mobile .social_single_link {
        color: var(--black);
        font-family: Spinnaker, serif !important;
    }
    .contain_social_title {
        display: flex;
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        margin-bottom: 40px;
    }
    .social_insta, .social_tiktok, .social_youtube {
        display: flex;
        justify-content: center;
    }
}

.social_insta img, .social_tiktok img {
    max-width: 200px;
    max-height: 100%;
}

.social_youtube img {
    width: 600px;
}

/* Contenu réseaux — opacité et transition */
.content {
    position: absolute;
    top: 0; left: 0;
    width: fit-content;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0s linear 0.5s;
    z-index: 1;
}

.content.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
    z-index: 2;
    position: static;
}

.social_display .content {
    opacity: 0;
    transition: opacity 0.4s;
}

.social_display .content.active {
    opacity: 1;
    transition: all 0.6s;
}

.social_display .content.active:hover {
    transform: scale(1.05);
}

.social_single_link {
    cursor: pointer;
}

/* Cards réseaux (mobile) */
.social_cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 90vw;
    margin: 0 auto;
}

.social_card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: rgba(255, 230, 219, 0.3);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-decoration: none;
    color: var(--black);
    transition: transform 0.3s, box-shadow 0.3s;
}

.social_card:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.social_card__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
}

.social_card__header img {
    width: 40px;
    height: 40px;
}

.social_card__header span {
    font-family: Spinnaker, serif;
    font-size: 14px;
}

.social_card__preview {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

.social_card__preview img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: top;
}
