/* ==========================================================================
   Chef Houdart — Custom Stylesheet
   ==========================================================================
   Table of Contents:
   1. Font Faces
   2. CSS Custom Properties
   3. Base & Reset
   4. Navigation
   5. Mobile Menu
   6. Hero Section
   7. Section Commons
   8. Le Chef
   9. Prestations
   10. Expérience en 4 étapes
   11. Contact & Booking
   12. Instagram
   13. Footer
   14. Floating Instagram Button
   15. Modals
   16. Ninja Forms Styling
   17. Animations
   18. Responsive
   ========================================================================== */


/* ==========================================================================
   1. Font Faces
   ========================================================================== */

@font-face {
    font-family: 'DM Serif Text';
    src: url('../fonts/DMSerifText-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Serif Text';
    src: url('../fonts/DMSerifText-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Fira Sans chargée via Google Fonts : 300, 400, 500, 600 */


/* ==========================================================================
   2. CSS Custom Properties
   ========================================================================== */

:root {
    --cream: #efefef;
    --cream-light: #fbfbfb;
    --cream-dark: #EBE4D6;
    --gold: #c27c00;
    --gold-hover: #ae6e00;
    --gold-light: #f09600;
    --dark: #000000;
    --dark-soft: #2B2B2B;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #FFFFFF;
    --footer-bg: #FBF8F3;

    /* Typographie */
    --font-title:    'DM Serif Text', Georgia, 'Times New Roman', serif;
    --font-subtitle: 'Fira Sans', 'Helvetica Neue', Arial, sans-serif;
    --font-body:     'Roboto Flex', 'Helvetica Neue', Arial, sans-serif;

    /* Espacements */
    --section-py:    6rem;
    --section-py-sm: 3.5rem;

    /* Transitions */
    --transition-fast:   0.2s ease;
    --transition-normal: 0.35s ease;
    --transition-slow:   0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Nav */
    --nav-height: 72px;
}



/* ---- Thème base (décommenter pour activer) ----
:root {
    --cream:        #F5F0E6;
    --cream-light:  #FBF8F3;
    --cream-dark:   #EBE4D6;
    --gold:         #C8902E;
    --gold-hover:   #B07D25;
    --gold-light:   #D4A04A;
    --dark:         #000000;
    --dark-soft:    #2B2B2B;
    --text:         #333333;
    --text-light:   #666666;
    --text-muted:   #999999;
    --white:        #FFFFFF;
    --footer-bg:    #FBF8F3;
}
    


/* ---- Thème Alternatif (décommenter pour activer) ----
    --cream: #efefef;
    --cream-light: #fbfbfb;
    --cream-dark: #EBE4D6;
    --gold: #c27c00;
    --gold-hover: #ae6e00;
    --gold-light: #f09600;
    --dark: #000000;
    --dark-soft: #2B2B2B;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #FFFFFF;
    --footer-bg: #FBF8F3;
*/


:root {
    --cream: #181212;
    --cream-light: #211818;
    --cream-dark: #EBE4D6;
    --gold: #673106;
    --gold-hover: #773b0b;
    --gold-light: #de6300;
    --dark: #ffffff;
    --dark-soft: #2B2B2B;
    --text: #b3b3b3;
    --text-light: #bdbdbd;
    --text-muted: #999999;
    --white: #FFFFFF;
    --footer-bg: #232323;
}
.btn-bar--light {
    background-color: #342424 !important;
}
/* ==========================================================================
   3. Base & Reset
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 400;
    line-height: 1.15;
    margin-top: 0;
    color: var(--dark);
}

p {
    margin-top: 0;
}

a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background-color: var(--gold);
    color: var(--white);
}


/* ==========================================================================
   4. Navigation
   ========================================================================== */

.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    z-index: 1100;
    padding: 1.25rem 2.5rem;
    transition:
        background-color var(--transition-normal),
        box-shadow var(--transition-normal),
        padding var(--transition-normal),
        opacity 0.3s ease;
}

.main-nav .nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.nav-links .nav-link {
    font-family: var(--font-subtitle);
    font-weight: 400;
    font-size: 0.90rem;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: var(--dark);
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--gold-hover);
    transition: width var(--transition-normal);
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
    color: var(--gold-light);
}

.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after {
    width: 100%;
}

li.lang-item {  
    padding: 0.2rem 0;
    /* position: relative; */
}


li.lang-item a {
    text-transform: uppercase;
    font-family: var(--font-subtitle);
    font-weight: 900;
    font-size: 0.90rem;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: var(--dark);
    background-color: var(--gold);
    padding: 3px 5px;
}




.nav-monogram {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.nav-monogram img {
    height: auto;
    width: 90px;
    transition: opacity var(--transition-fast);
}

.main-nav.scrolled .nav-monogram img {
        width: 65px;
    }

/* .nav-monogram .monogram-light { display: none; } */
.nav-monogram .monogram-dark {
    display: none;
}

/* Sélecteur de langue (Polylang) */
.nav-lang-switch {
    margin-left: 0.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.nav-lang-switch a,
.mobile-lang-switch a {
    font-family: var(--font-subtitle);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.nav-lang-switch a:hover,
.mobile-lang-switch a:hover {
    color: var(--gold);
}

.main-nav.scrolled .nav-lang-switch {
    border-left-color: rgba(0, 0, 0, 0.12);
}

.mobile-lang-switch {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-lang-switch a {
    color: var(--white);
    font-size: 1.1rem;
}

/* État scrolled */
.main-nav.scrolled {
    position: fixed;
    width: 100%;
   background-color: #342424;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
    padding: 0.75rem 2.5rem;
}

.main-nav.scrolled .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Nav phone — hidden by default, shown on mobile scrolled */
.nav-phone {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--dark);
    text-decoration: none;
}

.nav-phone i {
    font-size: 1rem;
    color: var(--gold-light);
}

.nav-phone:hover {
    color: var(--gold-light);
}

/* Nav toggle (hamburger) — hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1200;
}

.toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: transform var(--transition-normal), opacity var(--transition-fast);
}

.main-nav.scrolled .toggle-bar {
     background-color: var(--dark);
}

/* Hamburger -> X */
.nav-toggle.active .toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle.active .toggle-bar {
    background-color: var(--white);
}


/* ==========================================================================
   5. Mobile Menu
   ========================================================================== */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1150;
    background-color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.mobile-menu-close:hover {
    opacity: 1;
}

.mobile-menu-inner {
    text-align: center;
}

.mobile-menu-logo {
    height: 120px;
    width: auto;
    margin: 0 auto 3rem;
}

.mobile-title p, .mobile-title h1 {
    color: var(--white);
}



.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links li {
    margin-bottom: 1.5rem;
}

.mobile-nav-links a {
    font-family: var(--font-subtitle);
    font-weight: 400;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    transition: color var(--transition-fast);
}

.mobile-nav-links a:hover {
    color: var(--gold);
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;   
}

.mobile-contact-info a {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
}

.mobile-contact-info a:hover {
    color: var(--gold);
}

.mobile-contact-info i {
    margin-right: 0.4rem;
    font-size: 0.85rem;
    color: var(--gold-light);
}


/* ==========================================================================
   6. Hero Section
   ========================================================================== */

.hero-section {
    display: flex;
    min-height: 100vh;
    min-height: 100dvh;
}

.hero-left {
    width: 50%;    
    background-color: var(--cream-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 4rem 4rem;
    position: relative;
}

.hero-left-content {
    max-width: 480px;
}

/* Animations d'entrée — fade-in + slide-up */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-left-content > .hero-subtitle,
.hero-left-content > .hero-title,
.hero-left-content > .hero-text,
.hero-left-content > .hero-cta {
    opacity: 0;
}

.hero-left-content > .hero-subtitle.anim-in,
.hero-left-content > .hero-title.anim-in,
.hero-left-content > .hero-text.anim-in,
.hero-left-content > .hero-cta.anim-in {
    animation: fadeSlideUp 0.6s ease forwards;
}

.nav-links > li,
.nav-monogram {
    opacity: 0;
}

.nav-links > li.anim-in,
.nav-monogram.anim-in {
    animation: fadeSlideUp 0.45s ease forwards;
}

.hero-portrait,
.hero-overlay-content {
    opacity: 0;
}

.hero-portrait.anim-in {
    animation: fadeSlideUp 0.8s ease forwards;
}

.hero-overlay-content.anim-in {
    animation: fadeSlideUp 0.6s ease forwards;
}

.hero-subtitle {
    font-family: var(--font-subtitle);
    font-weight: 300;
    font-size: 1.89rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--dark);
    margin-bottom: -0.25rem;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 2rem;
}

.hero-cta {
    padding-left: 2rem;
    /*
    display: flex;
    flex-direction: column;
    gap: 0;
    */
}

/* ==========================================================================
   Boutons à barre — .btn-bar (réutilisable)
   ========================================================================== */

.btn-bar {
    display: inline-block;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-subtitle);
    font-weight: 300;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2.0px;
    padding: 0.40rem 1rem 0.40rem 1.5rem;
    position: relative;
    /*overflow: hidden;*/
    z-index: 1;
    color: var(--dark);
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: color var(--transition-normal);
    margin: 5px;
    border-radius: 3px;
}

/* Tiret décoratif à gauche */
.btn-bar::before {
    content: '';
    display: block;
    width: 22px;
    height: 3px;
    flex-shrink: 0;
    transition: background-color var(--transition-normal);
    position: absolute;
    left: -10px;
    top: 16px;
}

/* Fond hover — remplissage par la gauche */
.btn-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 3px;
}

.btn-bar:hover::after {
    transform: scaleX(1);
}

/* --- Variante light (fond transparent, tiret doré) --- */
.btn-bar--light {
    background-color: #e9e1d1;
}

.btn-bar--light::before {
    background-color: var(--gold);
}

.btn-bar--light::after {
    background-color: var(--gold);
}

.btn-bar--light:hover {
    color: var(--white);
}

.btn-bar--light:hover::before {
    background-color: var(--white);
}

/* --- Variante filled (fond doré, tiret sombre) --- */
.btn-bar--filled {
    background-color: var(--gold);
    color: var(--white);
}

.btn-bar--filled::before {
    background-color: var(--dark);
}

.btn-bar--filled::after {
    background-color: var(--gold-hover);
}

.btn-bar--filled:hover {
    color: var(--white);
}

.btn-bar--filled:hover::before {
    background-color: var(--white);
}

/* Hero droite */
.hero-right {
    width: 50%;
    position: relative;
    overflow: hidden;
    max-height: 100vh;
    max-height: 100dvh;
    background-color: #181212;
}

.hero-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-puce-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    height: 80px;
    width: auto;
    opacity: 0.9;
}

.hero-overlay-content {
    position: absolute;
    bottom: 3rem;
    left: 2.5rem;
    right: 2.5rem;
}

.hero-slogan {
    font-family: var(--font-title);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}



/* ==========================================================================
   7. Section Commons
   ========================================================================== */

.section {
    padding: var(--section-py) 0;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-family: var(--font-subtitle);
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}


/* ==========================================================================
   8. Le Chef
   ========================================================================== */

.section-chef {
    background-color: var(--cream);
    overflow: hidden;
}

.container-chef {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Grille 3 colonnes — Partie 1 */
.chef-columns {
    display: grid;
    grid-template-columns: 0.8fr 1.1fr 1.5fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 4rem;
}

.chef-columns:last-child {
    margin-bottom: 0;
}

/* Grille inversée — Partie 2 */
.chef-columns--reverse {
    grid-template-columns: 1.4fr 1.2fr 1.0fr;
}

/* Colonnes — animation d'entrée + parallax */
.chef-col {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: transform;
}

.chef-col.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* --- Partie 1 : colonne gauche (illustrations + portrait) --- */
.chef-col--left {
    padding-top: 2rem;
}

.chef-illustrations {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 2rem;
}

.chef-columns-3 .chef-illustrations {   
    margin-bottom: 0rem;
    margin-top: 2rem;

}

.chef-illus {
    width: 80px;
    border-radius: 3px;
    overflow: hidden;
}

.chef-illus.dark {
    background-color: var(--gold);
}

.chef-illus.light {
        background-color: var(--white);
}

.chef-portrait-wrap {
    overflow: hidden;
    border-radius: 2px;
}

.chef-portrait {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Colonnes photos (centre + droite images) --- */
.chef-col--center {
    padding-top: 0;
}

.chef-dish-wrap,
.chef-action-wrap {
    overflow: hidden;
    border-radius: 2px;
}

.chef-dish,
.chef-action {
    width: 100%;
    height: auto;
    display: block;
}

/* Fade carousel générique */
.fade-carousel {
    position: relative;
    overflow: hidden;
}

.fade-carousel__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.fade-carousel__img.active {
    position: relative;
    opacity: 1;
}

/* --- Colonne éditorial (droite partie 1 / gauche partie 2) --- */
.chef-col--right {
    display: flex;
    align-items: center;
    min-height: 100%;
    padding: 0;
}

.chef-col--left-text {
    display: flex;
    align-items: center;
    min-height: 100%;
    padding: 0;
}

/* --- Partie 2 : colonne droite (photo + illustrations) --- */
.chef-col--right-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chef-illus-pair {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.chef-illus-card {
    /*width: 90px;
    height: 90px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    overflow: hidden;
}






/* ==========================================================================
   8b. Content Block — Composant éditorial réutilisable
   ========================================================================== */

/* .content-block { max-width: 520px; } */

.content-block__title {
    font-family: var(--font-title);
    font-size: clamp(1.6rem, 2.5vw, 2.15rem);
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 1.75rem;
}

.content-block__body p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.content-block__body p:last-child {
    margin-bottom: 0;
}

.content-block__body strong, strong, b {
    font-weight: 500;
    color: var(--dark);
}

/* Variante panneau — fond crème identique au hero gauche */
.content-block--panel {
    background-color: var(--cream-light);
    padding: 2.5rem;
}

/* Boutons CTA dans un content-block */
.content-block__cta {
   /* display: flex;*/
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
    padding-left: 2rem;
}


/* ==========================================================================
   9. Prestations
   ========================================================================== */

.section-prestations {
    background-color: var(--cream);
    position: relative;
}

.section-prestations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/texture.png');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 300px auto;
    opacity: 0.04;
    pointer-events: none;
}

/* Variante content-block large pour intro prestations */
.content-block--wide {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.5rem;
}

.content-block__surtitle {
    font-family: var(--font-subtitle);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Galerie 3 photos décalées */
.presta-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.presta-gallery__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.presta-gallery__cards {
    display: flex;
    gap: 0.95rem;
    margin-top: 1.5rem;
}

/* Grille des 6 prestations en 2 colonnes */
.presta-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.presta-service-card {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    /* border-top: 1px solid rgba(0, 0, 0, 0.08); */
    background-color: #f5f0e6;
    background-color: var(--cream-light);
    margin: 1.5rem 0;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.presta-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.presta-service-card__icon {
    font-size: 1.2rem;
    color: var(--dark);
    flex-shrink: 0;
    margin-top: -0.15rem;
}

.presta-service-card__title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.presta-service-card__text {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-light);
    margin-bottom: 0;
}


/* ==========================================================================
   10. Expérience en 4 étapes
   ========================================================================== */

.section-experience {
    padding-top: 0;
    padding-bottom: var(--section-py);
    background-color: var(--cream);
    overflow: hidden;
}

/* --- Bannière parallax --- */
.experience-banner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 420px;
    margin: 0 auto;
    overflow: hidden;
}

.experience-banner__img {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    opacity: 0;
    transition: opacity 1s ease;
}

.experience-banner__img.active {
    opacity: 1;
}

/* --- Portrait + intro --- */
.experience-intro {
    text-align: center;
    padding: 0 1rem 3.5rem;
}

.experience-intro__portrait {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: -70px auto 2rem;
    position: relative;
    z-index: 2;
    border: 0px solid var(--cream);
}

.experience-intro__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Steps --- */
.experience-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 720px;
    margin: 0 auto;
}

.experience-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background-color: var(--cream-light);
    /*border: 1px solid rgba(255, 255, 255, 0.06);*/
    border-radius: 3px;
    padding: 1.75rem 2.25rem;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.experience-step.in-view {
    opacity: 1;
    transform: translateY(0);
}

.experience-step:nth-child(2) { transition-delay: 0.12s; }
.experience-step:nth-child(3) { transition-delay: 0.24s; }
.experience-step:nth-child(4) { transition-delay: 0.36s; }

.experience-step__number {
    font-family: var(--font-title);
    font-size: 4.2rem;
    line-height: 1;
    color: var(--gold-light);   
    flex-shrink: 0;
    min-width: 2.5rem;
    padding-top: 0.1rem;
}

.experience-step__title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    margin: 0 0 0.45rem;
    color: var(--dark);
}

.experience-step__text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text);
    margin: 0;
}

/* ==========================================================================
   11. Contact & Booking
   ========================================================================== */

.section-bookings {
    padding: 0;
}

.bookings-split {
    display: flex;
    min-height: 100vh;
}

.bookings-photo {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.bookings-photo > img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bookings-signature {
    position: absolute;
    top: 2rem;
    right: 2rem;   
    height: auto;
    pointer-events: none;
}

.bookings-content {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background-color: var(--cream);
}

.bookings-content-inner {
    max-width: 680px;
}

.bookings-content .section-title {
    margin-bottom: 1.5rem;
}

.bookings-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.bookings-info {
    margin-bottom: 2.5rem;
}

.bookings-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: inline-block;
    margin: 0 20px 0 0;
}

.bookings-info-item i {
    font-size: 1.1rem;
    color: var(--gold-light);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.bookings-info-item a {
    color: var(--text);
}

/* Variante centrée (sous le bouton Prestations) */
.bookings-info--centered {
    margin-top: 2rem;
    margin-bottom: 0;
}

.bookings-info-item a:hover {
    color: var(--gold-light);
}


/* ==========================================================================
   12. Instagram
   ========================================================================== */

.section-instagram {
    background-color: var(--cream-light);
    padding: 4rem 0;
}

.instagram-placeholder {
    margin-top: 2rem; 
}


/* ==========================================================================
   13. Footer
   ========================================================================== */

.site-footer {  
    background: var(--cream-light);  
    padding: 2rem 0;
}

.footer-text {
    font-family: var(--font-subtitle);
    font-weight: 300;
    font-size: 0.8rem;   
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-text a {
    color:  var(--text);
    transition: color var(--transition-fast);
}

.footer-text a:hover {
    color: var(--gold);
}

.footer-sep {
    margin: 0 0.75rem;
    opacity: 0.3;
}


/* ==========================================================================
   14. Floating Instagram Button
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 5.5rem;
    z-index: 1050;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.whatsapp-float:hover {
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.instagram-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1050;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.instagram-float:hover {
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}


/* ==========================================================================
   15. Modals
   ========================================================================== */
   .modal {
    z-index: 9999;

   }

   .modal-dialog-scrollable .modal-content {
    max-height: 90%;
    overflow: hidden;
}


.modal-content {
    border: none;
    border-radius: 0;
    padding: 1rem;
        background-color: var(--cream-light);
}

.modal-header {
    border-bottom: 0 solid var(--cream-dark);
    padding-bottom: 1rem;
}

.modal-title {
    font-family: var(--font-title);
    font-size: 1.75rem;
}

.modal-body h3 {
    font-family: var(--font-title);
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p, .modal-body li {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.75;
}

.btn-close:focus {
    box-shadow: none;
}


/* ==========================================================================
   16. Ninja Forms Styling
   ========================================================================== */

.ninja-forms-placeholder {
    padding: 1.5rem;
    border-top: 3px dashed var(--cream-dark);
    border-radius: 2px;
    text-align: center;
}

.form-placeholder-text {
    font-family: var(--font-subtitle);
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin: 0;
}

/* Styles préparés pour les champs Ninja Forms */
.nf-form-cont .nf-field-container {
    margin-bottom: 1.25rem;
}


.nf-form-cont .nf-field-label label, span#nf-label-field-8 {
    font-family: var(--font-subtitle);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 0.5rem;
}



.nf-form-cont input[type="text"],
.nf-form-cont input[type="email"],
.nf-form-cont input[type="tel"],
.nf-form-cont input[type="date"],
.nf-form-cont input[type="number"],
.nf-form-cont textarea,
.nf-form-cont select {
    width: 100%;
    padding: 0.65rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #000;
    background-color: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 3px;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.nf-form-cont input:focus,
.nf-form-cont textarea:focus,
.nf-form-cont select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 144, 46, 0.1);
}

.nf-form-cont textarea {
    min-height: 120px;
    resize: vertical;
}

.nf-form-cont input[type="submit"],
.nf-form-cont .nf-element.nf-submit-element {
    display: inline-block;
    font-family: var(--font-subtitle);
    font-weight: 300;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.65rem 2.0rem;
    background-color: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.nf-form-cont input[type="submit"]:hover,
.nf-form-cont .nf-element.nf-submit-element:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
}

.nf-form-cont .nf-error-msg {
    font-size: 0.8rem;
    color: #c0392b;
    margin-top: 0.25rem;
}


/* ==========================================================================
   17. Animations
   ========================================================================== */

/* Stagger des colonnes Le Chef */
.chef-col[data-stagger="1"] {
    transition-delay: 0.2s;
}

.chef-col[data-stagger="2"] {
    transition-delay: 0.4s;
}

/* Parallax transform appliqué via JS */
.chef-col.parallax-active {
    transition: none; /* Désactive la transition pour le scroll parallax fluide */
}


/* ==========================================================================
   18. Responsive
   ========================================================================== */

/* ---------- Tablette large (< 1200px) ---------- */
@media (max-width: 1199.98px) {
    .hero-left {
        width: 60%;
    }

    .hero-right {
        width: 40%;
    }

    .main-nav {
        width: 60%;
    }

    .nav-links .nav-link {   
    font-size: 0.70rem;
    }

    .nav-monogram img {   
    width: 60px;
}
}

/* ---------- Tablette (< 992px) ---------- */
@media (max-width: 991.98px) {

    /* Nav mobile : monogram gauche, toggle droite */
    .main-nav {
        width: 100%;
        padding: 1rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: linear-gradient(0deg, rgba(245, 245, 245, 1) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.43) 100%);
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-inner {
        justify-content: flex-start;
    }
    .nav-monogram {   
    margin-left: 0px;
   }

    .nav-monogram img {
        width: 80px;
    }

    .main-nav.scrolled .nav-monogram img {
        width: 50px;
    }

    /* Monogram : blanc par défaut, sombre quand scrolled */
    .nav-monogram .monogram-dark {
        display: none;
    }

    .nav-monogram .monogram-light {
        display: block;
    }

    .main-nav.scrolled .nav-monogram .monogram-dark {
        display: none;
    }

    .main-nav.scrolled .nav-monogram .monogram-light {
        display: block;
    }

    .main-nav.scrolled {
        padding: 0.75rem 1.5rem;
    }

    .main-nav.scrolled .nav-inner {
        margin: 0;
    }

    .main-nav.scrolled .nav-phone {
        display: flex;
    }

    /* Hero */
    .hero-section {
        flex-direction: column-reverse;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left {
        padding: 6rem 2rem 3rem;
        min-height: 60vh;
    }

    .hero-right {
        min-height: 60vh;
    }


    .hero-portrait {
        min-height: 60vh;
        max-height: 60vh;
    }

    .hero-signature {
        max-width: 110px;
        margin-right: auto;
        margin-left: -12px;
    }

    /* Le Chef colonnes : 2 col + 3ème pleine largeur dessous */
    .container-chef {
        padding: 0 .8rem;
    }

    .chef-columns {
        grid-template-columns: 1fr 2fr;
        gap: 1rem;
        align-items: start;
    }

    .chef-col--left {
        padding-top: 0;
    }

    .chef-columns > :nth-child(3) {
        grid-column: 1 / -1;
    }

    .chef-columns--reverse {
        grid-template-columns: 1fr 2fr;
        grid-template-rows: auto auto;
        gap: 1rem;
        align-items: start;
    }

    .chef-columns--reverse > :nth-child(1) {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .chef-columns--reverse > :nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .chef-columns--reverse > :nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .chef-col--right,
    .chef-col--left-text {
        padding: 0;
    }

    .content-block--panel {
        padding: 2rem;
    }

    /* Prestations */
    .presta-gallery {
        gap: 1.25rem;
    }

    .presta-services {
        gap: 1.25rem;
    }

    /* Contact */
    .bookings-split {
        flex-direction: column;
        min-height: auto;
    }

    .bookings-photo,
    .bookings-content {
        width: 100%;
    }

    .bookings-photo {
        min-height: 50vh;
        max-height: 50vh;
    }

    .bookings-content {
        padding: 3rem 2rem;
    }
}

/* ---------- Mobile (< 768px) ---------- */
@media (max-width: 767.98px) {

    :root {
        --section-py: 3.5rem;
    }

    /* Hero */
    .hero-left {
        padding: 2rem 1.5rem 2.5rem;
        min-height: 50vh;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-right {
       min-height: 60vh;
       max-height: 60vh;
    }

    .hero-puce-overlay {
        height: 56px;
        top: 1rem;
        right: 1rem;
    }

    .hero-overlay-content {
        bottom: 2rem;
        left: 1.5rem;
        right: 1.5rem;
    }

    .hero-slogan {
        font-size: 1.1rem;
    }

    /* Le Chef */
    .chef-col--right,
    .chef-col--left-text {
        padding: 0;
    }

    .content-block--panel {
        padding: 1.75rem;
    }

    .content-block__title {
        font-size: 1.5rem;
    }

    /* Prestations */
    .presta-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .presta-services {
        grid-template-columns: 1fr;
    }

    .content-block--wide {
        max-width: 100%;
    }

    /* Contact */
    .bookings-photo {
        min-height: 40vh;
    }

    .bookings-content {
        padding: 2.5rem 1.5rem;
    }

    /* Footer */
    .footer-text {
        font-size: 0.75rem;
    }

    .footer-sep {
        display: block;
        margin: 0.25rem 0;
        visibility: hidden;
    }

    /* Section titles */
    .section-title {
        font-size: 1.75rem;
    }
}

/* ---------- Petit mobile (< 576px) ---------- */
@media (max-width: 575.98px) {

    .btn-bar {
        font-size: 0.7rem;
        padding: 0.9rem 1.25rem;
        letter-spacing: 2px;
    }

    .chef-illus {
       width: 75px; 
    }


    .presta-gallery {
        grid-template-columns: 1fr 2fr 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .presta-gallery__cards {   
    margin-top: 1.0rem;
}


    .mobile-nav-links a {
        font-size: 1rem;
    }
}
