/**
 * ═══════════════════════════════════════════════════════════════
 * PAGE D'ACCUEIL - THEME CLAIR & ROSE
 * ═══════════════════════════════════════════════════════════════
 */

:root {
    /* Couleurs Principales */
    --primary-pink: #ff69b4;
    /* HotPink - Base */
    --pink-light: #ffb6c1;
    /* LightPink - Doux */
    --pink-deep: #c71585;
    /* MediumVioletRed - Profond/Sérieux */
    --pink-pale: #fff0f5;
    /* LavenderBlush - Fond très clair */
    --pink-vivid: #ff1493;
    /* DeepPink - Accents forts */

    --ifrina-gold: #C9B037;
    /* Defining Gold var if missing locally */

    --dark-pink: #d63384;
    /* Une teinte plus foncée pour le texte/hover */
    --light-pink: #ffe6f2;
    /* Fond très clair rose (Legacy) */

    /* Couleurs de Fond et Texte (Thème Clair) */
    --bg-white: #ffffff;
    --bg-light: #fff5f8;
    /* Légère teinte rose au lieu de gris pour le bg-light */
    --text-dark: #333333;
    --text-grey: #666666;

    /* Accents */
    --border-radius: 12px;
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 25px rgba(255, 105, 180, 0.25);
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    color: var(--text-dark);
}

a {
    color: var(--dark-pink);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-pink);
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.navbar {
    background: linear-gradient(to right, #fff, var(--pink-pale)) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.1);
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 4px solid var(--primary-pink);
    /* Pink Border instead of Gold */
}

.navbar-toggler {
    border-color: var(--primary-pink) !important;
    padding: 0.5rem;
}

.navbar-toggler-icon {
    filter: invert(50%) sepia(85%) saturate(1633%) hue-rotate(300deg) brightness(101%) contrast(105%);
    /* Forces pink color on the burger icon */
}

.navbar-toggler:focus {
    box-shadow: 0 0 10px var(--primary-pink);
}

.btn-whatsapp-glow {
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.4);
    animation: btn-glow-pink 2s infinite;
}

@keyframes btn-glow-pink {
    0% {
        box-shadow: 0 0 5px rgba(255, 20, 147, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 20, 147, 0.7);
    }

    100% {
        box-shadow: 0 0 5px rgba(255, 20, 147, 0.4);
    }
}

.navbar .navbar-brand h2 {
    color: var(--dark-pink) !important;
}

.navbar .navbar-brand img {
    mix-blend-mode: multiply;
    /* Blends white background into the header */
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-family: 'Cinzel', serif;
    /* Special Premium Font */
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 1px;
    /* Elegant spacing */
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
    text-transform: uppercase;
    /* More formal/premium */
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: width 0.3s;
    margin-top: 5px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
    /* Underline effect on hover */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-pink) !important;
    transform: translateY(-2px);
    /* Subtle lift */
    text-shadow: 0 2px 5px rgba(255, 105, 180, 0.2);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   HERO / CAROUSEL SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero-header {
    background: transparent !important;
    /* On laisse le carousel gérer le fond */
}

.carousel-item {
    position: relative;
    height: 90vh;
    /* Hauteur immersive */
    min-height: 600px;
    background: #000;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    opacity: 0.8;
    /* Assombrir légèrement l'image de base */
}

/* Gradient Overlay "Cinématique" */
.carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 80%);
    pointer-events: none;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 10;
}

.carousel-content {
    max-width: 900px;
    text-align: center;
}

.carousel-content h6 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ═══════════════════════════════════════════════════════════════
   ARTISTIC HERO (FIELDSET STYLE)
   ═══════════════════════════════════════════════════════════════ */
.hero-frame {
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-frame:hover {
    border-color: var(--primary-pink);
    box-shadow: 0 15px 50px rgba(255, 0, 127, 0.3);
    transform: scale(1.01);
}

.hero-legend {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-pink);
    padding: 0.5rem 2rem;
    border-radius: 50px;
    color: white;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.4);
}

.carousel-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.carousel-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

.btn-artistic-pink {
    background: linear-gradient(45deg, var(--primary-pink), #ff4d94);
    border: 2px solid white !important;
    color: white !important;
    font-family: 'Cinzel', serif;
    padding: 1rem 3rem !important;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 0, 127, 0.2);
}

.btn-artistic-pink:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 0, 127, 0.4);
}

.btn-artistic-gold {
    background: linear-gradient(45deg, var(--ifrina-gold), #ffd700);
    border: 2px solid white !important;
    color: #333 !important;
    font-family: 'Cinzel', serif;
    padding: 1rem 3rem !important;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-artistic-gold:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS & UI
   ═══════════════════════════════════════════════════════════════ */
.bg-pink-light {
    background-color: rgba(255, 0, 127, 0.1) !important;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.btn-outline-pink {
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    background: var(--primary-pink);
    color: white;
}

.carousel-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.carousel-item.active .carousel-content {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .carousel-content h1 {
        font-size: 2.5rem;
    }

    .hero-frame {
        padding: 2rem 1rem;
    }
}


/* ═══════════════════════════════════════════════════════════════
   BOUTONS
   ═══════════════════════════════════════════════════════════════ */
.btn-premium {
    background-color: var(--primary-pink);
    color: white !important;
    border: none;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.3);
}

.btn-premium:hover {
    background-color: var(--dark-pink);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 105, 180, 0.4);
}

.btn-outline-light {
    border-color: var(--primary-pink) !important;
    color: var(--primary-pink) !important;
}

.btn-outline-light:hover {
    background-color: var(--primary-pink) !important;
    color: white !important;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES & CARDS
   ═══════════════════════════════════════════════════════════════ */
.services h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #111;
    position: relative;
    display: inline-block;
}

.services h1::after {
    content: none;
}

.artistic-divider {
    height: 4px;
    width: 100px;
    background: linear-gradient(to right, var(--primary-pink), var(--ifrina-gold));
    border-radius: 10px;
    margin-top: 1.5rem;
}

.artistic-card {
    background: white;
    border: 1px solid rgba(255, 0, 127, 0.1);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.artistic-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-pink);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artistic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 127, 0.1);
    border-color: var(--primary-pink);
}

.artistic-card:hover::before {
    opacity: 1;
}

.artistic-stat-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-light-glass {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.card-light-glass:hover {
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-hover);
}

.service-icon-circle i {
    color: var(--primary-pink) !important;
}

/* ═══════════════════════════════════════════════════════════════
   STATS & SECTION NOIRE (Inversion ou adaptation)
   ═══════════════════════════════════════════════════════════════ */
.bg-black-stripe {
    background-color: var(--bg-light) !important;
    /* On passe en clair */
}

.bg-black-stripe h1,
.bg-black-stripe h2,
.bg-black-stripe h4,
.bg-black-stripe p {
    color: var(--text-dark) !important;
}

.bg-black-stripe .text-gold {
    color: var(--primary-pink) !important;
    /* Remplacer l'or par le rose */
}

.bg-black-stripe .text-pink {
    color: var(--dark-pink) !important;
}

/* Stats specific overwrite if needed */
.bg-black-stripe .display-4 {
    color: var(--dark-pink) !important;
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS SPECIFIQUES (Facts, etc.) - RE-DESIGN LUXE SCROLL
   ═══════════════════════════════════════════════════════════════ */
.stylish-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
    opacity: 0.6;
}

.stylish-line::before,
.stylish-line::after {
    content: "";
    height: 1px;
    background-color: var(--primary-pink);
    width: 150px;
    margin: 0 20px;
}

.stylish-line i {
    color: var(--primary-pink);
    font-size: 1.5rem;
}

.fact-section {
    /* Parallax effect with fallback */
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(40, 0, 20, 0.85)), url('../img/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 6rem 0;
    /* Plus d'espace pour l'aération */
    color: white;
}

.fact-item {
    /* Suppression des cartes "boîtes" pour un look éditorial plus propre */
    background: transparent;
    border: none;
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.fact-item:hover {
    transform: translateY(-5px);
    /* Pas de bordure ou fond au survol, juste le mouvement */
}

.fact-icon {
    /* Icône plus discrète mais élégante */
    background: transparent;
    width: auto;
    height: auto;
    margin-bottom: 1rem;
    box-shadow: none;
}

.fact-item:hover .fact-icon {
    transform: scale(1.1);
    background: transparent;
    box-shadow: none;
}

.fact-icon i {
    color: var(--primary-pink);
    /* L'icône porte la couleur */
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.4));
    /* Lueur néon */
    transition: all 0.3s ease;
}

.fact-item:hover .fact-icon i {
    color: white;
    /* Au survol, l'icône devient blanche et brille plus */
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

.counter-value {
    font-family: 'Cinzel', serif;
    /* Police premium pour les chiffres */
    font-size: 4rem;
    /* Très gros */
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: white;
    line-height: 1;
}

.fact-item h5 {
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Espacement large "Luxe" */
    font-size: 0.9rem;
    margin-top: 1rem;
}

.fact-item small {
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--primary-pink);
    margin: 1rem auto 0 auto;
    /* Petit trait de séparation */
    font-size: 0;
    /* On cache le petit texte descriptif pour épuré, ou on le garde ? */
    /* Le client voulait "stylisé". Le trait est stylisé. */
}

/* On ré-affiche le small text si on veut, mais différemment */
.fact-item .small-text-visible {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    font-style: italic;
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER (Correctly placed now)
   ═══════════════════════════════════════════════════════════════ */
.footer {
    background-color: #111111 !important;
    color: #eeeeee !important;
    padding-top: 3rem;
}

.footer h2,
.footer h4 {
    color: white !important;
}

.footer .text-gold {
    color: var(--primary-pink) !important;
}

.footer .btn-link {
    color: #bbbbbb !important;
}

/* ═══════════════════════════════════════════════════════════════
   UTILITIES & HELPERS
   ═══════════════════════════════════════════════════════════════ */
.text-gold {
    /* Diminuer la présence de l'or : on utilise une teinte plus subtile, moins jaune */
    color: #d4af37 !important;
    opacity: 0.8;
}

.bg-gold {
    /* Pareil pour le fond, un or plus doux */
    background-color: #d4af37 !important;
}

/* NOUVELLES CLASSES ROSE (DEGRÉS) */
.text-pink-light {
    color: var(--pink-light) !important;
}

.text-pink-deep {
    color: var(--pink-deep) !important;
}

.text-pink-vivid {
    color: var(--pink-vivid) !important;
}

.bg-pink-light {
    background-color: var(--pink-light) !important;
}

.bg-pink-deep {
    background-color: var(--pink-deep) !important;
}

.bg-pink-pale {
    background-color: var(--pink-pale) !important;
}

.text-pink {
    color: var(--primary-pink) !important;
}

.bg-pink {
    background-color: var(--primary-pink) !important;
}

/* Boutons ajustés */
.btn-gold {
    background-color: #d4af37;
    /* Or plus doux */
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--pink-deep);
    /* Au survol, on passe au rose profond */
    color: white;
}

.btn-pink {
    background-color: var(--primary-pink);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-pink:hover {
    background-color: var(--pink-deep);
    color: white;
}

.btn-outline-pink {
    border: 1px solid var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    background-color: var(--primary-pink);
    color: white;
}

.bg-luxury-dark {
    background-color: #111111 !important;
    color: #ffffff !important;
}

.transition-premium {
    background: #000000;
    border-top: 3px solid var(--primary-pink);
    border-bottom: 3px solid var(--primary-pink);
    padding: 2.5rem 0;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.2);
    margin: 1rem 0;
}

.transition-premium h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 5px;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
    margin-bottom: 0;
}

.section-divider-dark {
    background: linear-gradient(to right, transparent, var(--primary-pink), var(--ifrina-gold), var(--primary-pink), transparent);
    height: 2px;
    width: 60%;
    margin: 1.5rem auto;
    opacity: 0.8;
}

/* Testimonials */
.testimonial-item {
    position: relative;
    padding: 3rem 2rem 2rem;
}

.testimonial-item .quote-icon {
    color: var(--primary-pink);
    font-size: 3rem;
    opacity: 0.3;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 0;
}

.testimonial-item p.italic {
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-pink);
    transform: translateY(-5px);
}

.testimonial-item h4 {
    font-family: 'Cinzel', serif;
    color: var(--ifrina-gold);
    margin-top: 1rem;
}

.floating-art {
    animation: floating-art-anim 3s ease-in-out infinite;
}

@keyframes floating-art-anim {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.about-art-frame {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(255, 0, 127, 0.2);
    border-radius: 30px;
}

.about-art-frame::after {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    border-top: 5px solid var(--ifrina-gold);
    border-right: 5px solid var(--ifrina-gold);
    border-radius: 0 20px 0 0;
}

.underline-decorative {
    position: relative;
    display: inline-block;
}

.underline-decorative::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-pink);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION PROJETS PROFESSIONNELLE PREMIUM
   ═══════════════════════════════════════════════════════════════ */

.projects-professional {
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.projects-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ifrina-gold), transparent);
}

.projects-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Section */
.projects-header {
    text-align: center;
    margin-bottom: 4rem;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge-text {
    background: linear-gradient(135deg, var(--ifrina-gold), var(--primary-pink));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px rgba(201, 176, 55, 0.3);
}

.badge-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--ifrina-gold), var(--primary-pink));
}

.header-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.title-primary {
    display: block;
    color: var(--ifrina-gold);
    background: linear-gradient(135deg, var(--ifrina-gold), #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-secondary {
    display: block;
    color: var(--primary-pink);
    background: linear-gradient(135deg, var(--primary-pink), var(--pink-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0.5rem;
}

.header-description {
    font-size: 1.3rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.header-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--primary-pink), transparent);
}

/* Filtres et Navigation */
.projects-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(201, 176, 55, 0.1);
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--text-grey);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.filter-tab:hover {
    background: rgba(201, 176, 55, 0.1);
    color: var(--ifrina-gold);
}

.filter-tab.active {
    background: linear-gradient(135deg, var(--ifrina-gold), var(--primary-pink));
    color: white;
    border-color: transparent;
}

.tab-icon {
    font-size: 1rem;
}

.tab-text {
    font-size: 0.9rem;
}

.filter-controls {
    display: flex;
    gap: 0.5rem;
}

.view-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 176, 55, 0.2);
    background: white;
    border-radius: 10px;
    color: var(--text-grey);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-toggle:hover {
    border-color: var(--ifrina-gold);
    color: var(--ifrina-gold);
}

.view-toggle.active {
    background: var(--ifrina-gold);
    color: white;
    border-color: var(--ifrina-gold);
}

/* Grille de Projets */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Carte de Projet */
.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(201, 176, 55, 0.1);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(201, 176, 55, 0.15);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ifrina-gold), var(--primary-pink));
}

/* Header de la carte */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0;
}

.card-category {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-badge {
    background: linear-gradient(135deg, var(--primary-pink), var(--pink-deep));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-date {
    color: var(--text-grey);
    font-size: 0.8rem;
    font-weight: 500;
}

.card-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(201, 176, 55, 0.2);
    background: white;
    border-radius: 50%;
    color: var(--text-grey);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
    transform: scale(1.1);
}

.action-btn.favorite:hover {
    color: #e74c3c;
    border-color: #e74c3c;
}

/* Section Média */
.card-media {
    position: relative;
    margin: 0 1.5rem;
    border-radius: 15px;
    overflow: hidden;
}

/* Tailles des images - RÉDUCTION */
.media-container {
    position: relative;
    height: 160px; /* Réduit de 220px → 160px */
}

/* Textes - Correction couleurs et tailles */
.project-title a {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem; /* Réduit de 1.4rem → 1.1rem */
    color: var(--ifrina-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.project-title a:hover {
    color: var(--primary-pink);
}

.project-description {
    margin-bottom: 1.5rem;
    color: var(--text-grey); /* Forcé en gris au lieu de noir */
    line-height: 1.6;
    font-size: 0.85rem; /* Réduit de 0.9rem → 0.85rem */
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-grey); /* Forcé en gris */
    font-size: 0.75rem; /* Réduit de 0.85rem → 0.75rem */
}

/* Header - Réduction tailles */
.header-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem; /* Réduit de 4rem → 2.5rem */
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.header-description {
    font-size: 1rem; /* Réduit de 1.3rem → 1rem */
    color: var(--text-grey); /* Forcé en gris */
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.media-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .media-image {
    transform: scale(1.05);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.project-card:hover .media-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.project-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 167, 69, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    animation: pulse 2s infinite;
}

.status-indicator.active {
    background: #4caf50;
}

.media-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 176, 55, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.media-placeholder {
    height: 220px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-grey);
}

.placeholder-content {
    text-align: center;
}

.placeholder-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Body de la carte */
.card-body {
    padding: 1.5rem;
}

.project-info {
    margin-bottom: 1rem;
}

.project-title {
    margin-bottom: 1rem;
}

.project-title a {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--ifrina-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.project-title a:hover {
    color: var(--primary-pink);
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-grey);
    font-size: 0.85rem;
}

.meta-item i {
    color: var(--primary-pink);
}

.project-description {
    margin-bottom: 1.5rem;
    color: var(--text-grey);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Métriques */
.project-metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.metric-item {
    flex: 1;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.metric-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.progress-track {
    flex: 1;
    height: 4px;
    background: rgba(201, 176, 55, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ifrina-gold), var(--primary-pink));
    border-radius: 2px;
    transition: width 0.6s ease;
}

.progress-value {
    font-size: 0.8rem;
    color: var(--primary-pink);
    font-weight: 600;
}

.metric-value {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    text-align: center;
}

.metric-value.high {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

/* Tags */
.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(201, 176, 55, 0.1);
    color: var(--ifrina-gold);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.card-footer {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid rgba(201, 176, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-stats {
    display: flex;
    gap: 1rem;
}

.footer-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-grey);
}

.footer-stats .stat i {
    color: var(--primary-pink);
}

.footer-actions {
    display: flex;
    gap: 0.8rem;
}

.btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-outline {
    background: transparent;
    color: var(--ifrina-gold);
    border: 2px solid var(--ifrina-gold);
}

.btn-outline:hover {
    background: var(--ifrina-gold);
    color: white;
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--ifrina-gold), var(--primary-pink));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 176, 55, 0.3);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-content {
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon {
    font-size: 4rem;
    color: var(--primary-pink);
    margin-bottom: 2rem;
    opacity: 0.6;
}

.empty-title {
    font-family: 'Cinzel', serif;
    color: var(--ifrina-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.empty-description {
    color: var(--text-grey);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Section CTA */
.projects-cta {
    position: relative;
    margin-top: 4rem;
    border-radius: 25px;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--ifrina-gold), var(--primary-pink));
    z-index: 1;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    text-align: center;
}

.cta-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: white;
    color: var(--primary-pink);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--primary-pink);
    transform: translateY(-3px);
}

/* Responsive Design pour Section Projets Professionnelle */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.5rem;
    }
    
    .media-container {
        height: 140px; /* Mobile : 160px → 140px */
    }
}

@media (max-width: 768px) {
    .projects-professional {
        padding: 4rem 0;
    }
    
    .projects-wrapper {
        padding: 0 1rem;
    }
    
    .header-title {
        font-size: 2rem; /* Mobile : 2.5rem → 2rem */
    }
    
    .header-description {
        font-size: 0.9rem; /* Mobile : 1rem → 0.9rem */
    }
    
    .header-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
        align-items: center;
    }
    
    .projects-filters {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .media-container {
        height: 120px; /* Mobile : 140px → 120px */
    }
    
    .card-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .footer-actions {
        justify-content: center;
    }
    
    .projet-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .projet-image {
        height: 80px; /* Mobile : 100px → 80px */
    }
    
    .projet-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .projet-metrics {
        grid-template-columns: 1fr;
    }
    
    .projet-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .footer-actions {
        justify-content: center;
    }
    
    .cta-content {
        padding: 2rem 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .projects-professional {
        padding: 3rem 0;
    }
    
    .header-title {
        font-size: 1.8rem; /* Petit mobile : 2rem → 1.8rem */
    }
    
    .header-description {
        font-size: 0.85rem; /* Petit mobile : 0.9rem → 0.85rem */
    }
    
    .filter-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .media-container {
        height: 100px; /* Petit mobile : 120px → 100px */
    }
    
    .card-header {
        padding: 1rem 1rem 0;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .project-title a {
        font-size: 1rem; /* Mobile : 1.1rem → 1rem */
    }
    
    .project-description {
        font-size: 0.8rem; /* Mobile : 0.85rem → 0.8rem */
    }
    
    .project-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 1.6rem; /* Très petit mobile : 1.8rem → 1.6rem */
    }
    
    .header-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .media-container {
        height: 80px; /* Très petit mobile : 100px → 80px */
    }
    
    .project-tags {
        justify-content: center;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT ARTISTIC
   ═══════════════════════════════════════════════════════════════ */

/* En-tête de section premium */
.section-header-premium {
    position: relative;
    padding: 2rem 0;
}

.section-badge {
    display: inline-block;
}

.badge-premium {
    background: linear-gradient(135deg, var(--primary-pink), var(--pink-deep));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.section-title-premium {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0;
    line-height: 1.2;
}

.title-main {
    color: var(--ifrina-gold);
    display: block;
}

.title-accent {
    color: var(--primary-pink);
    display: block;
    font-size: 2.5rem;
    margin-top: -0.5rem;
}

.section-subtitle-premium {
    color: var(--text-grey);
    font-size: 1.1rem;
    margin: 1rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-divider-premium {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--ifrina-gold), var(--primary-pink));
    margin: 2rem auto;
    border-radius: 2px;
    position: relative;
}

.section-divider-premium::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 7px;
    background: var(--ifrina-gold);
    border-radius: 50%;
}

/* Grille de projets premium */
.projects-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

/* Carte de projet premium */
.project-card-premium {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.project-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
}

.project-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ifrina-gold), var(--primary-pink));
}

/* Container d'image */
.projet-image {
    position: relative;
    margin: 1rem 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    height: 100px; /* RÉDUCTION DRASTIQUE : 140px → 100px */
    width: 100%;
}

.projet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Force taille uniforme */
    transition: transform 0.6s ease;
}

.project-card-premium:hover .projet-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.project-card-premium:hover .project-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.project-status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 167, 69, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-dot {
    font-size: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.image-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 176, 55, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-no-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-grey);
    font-size: 3rem;
}

/* Contenu du projet */
.project-content {
    padding: 2rem;
}

.project-header {
    margin-bottom: 1.5rem;
}

.project-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--ifrina-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-grey);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary-pink);
}

.project-description {
    margin-bottom: 2rem;
    color: var(--text-grey);
    line-height: 1.6;
}

.project-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Barre de progression */
.project-progress {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 105, 180, 0.1);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.progress-label {
    font-size: 0.8rem;
    color: var(--text-grey);
    font-weight: 500;
}

.progress-value {
    font-size: 0.9rem;
    color: var(--primary-pink);
    font-weight: 600;
}

.progress-bar-premium {
    height: 6px;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ifrina-gold), var(--primary-pink));
    border-radius: 3px;
    transition: width 0.6s ease;
}

/* Actions du projet */
.project-actions {
    display: flex;
    gap: 1rem;
}

.btn-premium-outline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-pink);
    background: transparent;
    color: var(--primary-pink);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.btn-premium-outline:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-2px);
}

.btn-premium-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--ifrina-gold), var(--primary-pink));
    color: white;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.btn-premium-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

/* Empty state premium */
.empty-state-premium {
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    color: var(--primary-pink);
    margin-bottom: 2rem;
}

.empty-title {
    font-family: 'Cinzel', serif;
    color: var(--ifrina-gold);
    margin-bottom: 1rem;
}

.empty-description {
    color: var(--text-grey);
    max-width: 400px;
    margin: 0 auto;
}

/* Section CTA */
.projects-cta {
    background: linear-gradient(135deg, var(--ifrina-gold), var(--primary-pink));
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.projects-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-premium-large {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-pink);
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-premium-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-premium-secondary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-premium-secondary:hover {
    background: white;
    color: var(--primary-pink);
    transform: translateY(-3px);
}

/* Responsive Design pour Section Projets Premium */
@media (max-width: 1200px) {
    .projects-grid-premium {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .section-header-premium {
        padding: 1.5rem 0;
    }
    
    .section-title-premium {
        font-size: 2.2rem;
        margin: 0.5rem 0;
    }
    
    .title-accent {
        font-size: 1.8rem;
        margin-top: -0.3rem;
    }
    
    .section-subtitle-premium {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .badge-premium {
        font-size: 0.7rem;
        padding: 0.4rem 1.2rem;
    }
    
    .projects-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .project-image-container {
        height: 180px;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .project-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .meta-item {
        font-size: 0.85rem;
    }
    
    .project-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .project-progress {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .progress-label {
        font-size: 0.75rem;
    }
    
    .progress-value {
        font-size: 0.8rem;
    }
    
    .project-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-premium-outline,
    .btn-premium-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .overlay-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .project-status-badge,
    .image-count {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-premium-large,
    .btn-premium-secondary {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-header-premium {
        padding: 1rem 0;
    }
    
    .section-title-premium {
        font-size: 1.8rem;
        margin: 0.3rem 0;
    }
    
    .title-accent {
        font-size: 1.4rem;
        margin-top: -0.2rem;
    }
    
    .section-subtitle-premium {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .badge-premium {
        font-size: 0.65rem;
        padding: 0.3rem 1rem;
        letter-spacing: 1px;
    }
    
    .section-divider-premium {
        width: 80px;
        height: 2px;
        margin: 1.5rem auto;
    }
    
    .projects-grid-premium {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .project-card-premium {
        border-radius: 15px;
    }
    
    .project-image-container {
        height: 150px;
    }
    
    .project-content {
        padding: 1rem;
    }
    
    .project-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .project-meta {
        margin-bottom: 0.8rem;
    }
    
    .meta-item {
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .meta-item i {
        font-size: 0.75rem;
    }
    
    .project-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .project-progress {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .progress-info {
        margin-bottom: 0.3rem;
    }
    
    .progress-label {
        font-size: 0.7rem;
    }
    
    .progress-value {
        font-size: 0.75rem;
    }
    
    .progress-bar-premium {
        height: 4px;
    }
    
    .project-actions {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .btn-premium-outline,
    .btn-premium-primary {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .btn-premium-outline i,
    .btn-premium-primary i {
        font-size: 0.8rem;
    }
    
    .overlay-content {
        padding: 1rem;
    }
    
    .project-status-badge,
    .image-count {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
    
    .project-status-badge i,
    .image-count i {
        font-size: 0.6rem;
    }
    
    .empty-state-premium {
        padding: 2rem 1rem;
    }
    
    .empty-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .empty-title {
        font-size: 1.3rem;
    }
    
    .empty-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .projects-cta {
        padding: 2rem 1rem;
        border-radius: 15px;
        margin-top: 2rem;
    }
    
    .cta-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn-premium-large,
    .btn-premium-secondary {
        width: 100%;
        max-width: 250px;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    
    .btn-premium-large i,
    .btn-premium-secondary i {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .section-title-premium {
        font-size: 1.6rem;
    }
    
    .title-accent {
        font-size: 1.2rem;
    }
    
    .section-subtitle-premium {
        font-size: 0.85rem;
    }
    
    .badge-premium {
        font-size: 0.6rem;
        padding: 0.25rem 0.8rem;
    }
    
    .projects-grid-premium {
        gap: 0.8rem;
        margin: 1rem 0;
    }
    
    .project-card-premium {
        border-radius: 12px;
    }
    
    .project-image-container {
        height: 120px;
    }
    
    .project-content {
        padding: 0.8rem;
    }
    
    .project-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .project-meta {
        margin-bottom: 0.6rem;
    }
    
    .meta-item {
        font-size: 0.75rem;
    }
    
    .project-description {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .project-progress {
        padding: 0.5rem;
        margin-bottom: 0.6rem;
    }
    
    .progress-label {
        font-size: 0.65rem;
    }
    
    .progress-value {
        font-size: 0.7rem;
    }
    
    .project-actions {
        gap: 0.5rem;
    }
    
    .btn-premium-outline,
    .btn-premium-primary {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .overlay-content {
        padding: 0.8rem;
    }
    
    .project-status-badge,
    .image-count {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }
    
    .projects-cta {
        padding: 1.5rem 0.8rem;
        border-radius: 12px;
    }
    
    .cta-title {
        font-size: 1.2rem;
    }
    
    .cta-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .btn-premium-large,
    .btn-premium-secondary {
        max-width: 220px;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .section-title-premium {
        font-size: 1.4rem;
    }
    
    .title-accent {
        font-size: 1rem;
    }
    
    .section-subtitle-premium {
        font-size: 0.8rem;
    }
    
    .badge-premium {
        font-size: 0.55rem;
        padding: 0.2rem 0.6rem;
        /* Facebook Feed Styles */
        .facebook-posts-list {
            max-height: 350px;
            overflow-y: auto;
        }
        
        .facebook-post {
            transition: all 0.3s ease;
        }
        
        .facebook-post:hover {
            background-color: rgba(255, 105, 180, 0.05);
        }
        
        .post-image {
            width: 100%;
            height: auto;
            max-height: 200px;
            object-fit: cover;
        }
        
        .post-message {
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 10px;
            color: #333;
        }
        
        .post-meta {
            font-size: 12px;
        }
        
        .btn-outline-pink {
            color: #ff69b4;
            border: 1px solid #ff69b4;
            background: transparent;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-pink:hover {
            background: #ff69b4;
            color: white;
        }
        
        .loading-spinner {
            text-align: center;
            padding: 40px 20px;
        }
        
        .loading-spinner i {
            animation: spin 2s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Responsive Facebook Feed */
        @media (max-width: 768px) {
            .facebook-posts-list {
                max-height: 300px;
            }
            
            .post-message {
                font-size: 13px;
            }
            
            .btn-outline-pink {
                padding: 3px 10px;
                font-size: 11px;
            }
        }
    }
    
    .project-image-container {
        height: 100px;
    }
    
    .project-content {
        padding: 0.6rem;
    }
    
    .project-title {
        font-size: 0.9rem;
    }
    
    .project-description {
        font-size: 0.75rem;
    }
    
    .btn-premium-outline,
    .btn-premium-primary {
        padding: 0.35rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .cta-title {
        font-size: 1.1rem;
    }
    
    .cta-subtitle {
        font-size: 0.8rem;
    }
    
    .btn-premium-large,
    .btn-premium-secondary {
        max-width: 200px;
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT ARTISTIC
   ═══════════════════════════════════════════════════════════════ */
.contact-artistic-card {
    background: white;
    border: 1px solid rgba(255, 0, 127, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.contact-artistic-card:hover {
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.1);
    transform: translateY(-5px);
}

.form-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.form-control-art {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid transparent !important;
    border-radius: 12px !important;
    color: white !important;
    padding: 12px 20px !important;
    transition: all 0.3s ease !important;
}

.form-control-art:focus {
    border-color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px 0 rgba(255, 0, 127, 0.2) !important;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER & UTILS
   ═══════════════════════════════════════════════════════════════ */
.bg-white-10 {
    background: rgba(255, 255, 255, 0.1);
}

.footer-links a {
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-pink) !important;
    padding-left: 10px;
}

.newsletter-form {
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.btn-square {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.rounded-circle {
    border-radius: 50% !important;
}

/* Gallery */
/* Gallery Premium Enhancements */
.gallery-item-wrap {
    position: relative;
    cursor: pointer;
    perspective: 1000px;
    z-index: 1;
    overflow: hidden;
}

.gallery-item-wrap img {
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: center;
}

.gallery-item-wrap:hover img {
    transform: scale(1.15) rotate(1deg);
}

/* Shimmer Sweep Effect */
.gallery-item-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: skewX(-25deg);
    transition: left 0.7s ease-in-out;
    z-index: 2;
}

.gallery-item-wrap:hover::after {
    left: 150%;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(255, 0, 127, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    backdrop-filter: blur(2px);
}

.gallery-item-wrap:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption-box {
    text-align: left;
    transform: translateY(20px);
    transition: all 0.5s ease-out 0.1s;
}

.gallery-item-wrap:hover .gallery-caption-box {
    transform: translateY(0);
}

.gallery-tag {
    display: inline-block;
    background: var(--primary-pink);
    color: white;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Magazine Frame for Large Image */
.magazine-frame {
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1) inset;
}

.object-fit-cover {
    object-fit: cover;
}

/* Logo Aura */
.logo-aura {
    position: relative;
    display: inline-block;
    padding: 5px;
}

.logo-aura::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--primary-pink) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    border: none;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVENESS (MOBILE & TABLET)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        margin-top: 1rem;
        border-radius: 15px;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--pink-light);
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 70vh;
        min-height: 500px;
    }

    .hero-frame {
        padding: 1.5rem;
        margin: 0 15px;
    }

    .hero-frame h1 {
        font-size: 2.2rem !important;
    }

    .hero-legend {
        font-size: 0.8rem;
        padding: 4px 12px;
    }

    .display-3,
    .display-4,
    .display-1 {
        font-size: 2.5rem !important;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .fact-item {
        padding: 1.5rem;
    }

    .about-art-frame {
        margin-bottom: 2rem;
    }

    .contact-form {
        padding: 2.5rem !important;
    }
}

@media (max-width: 576px) {
    .hero-frame h1 {
        font-size: 1.8rem !important;
    }

    .hero-frame p {
        font-size: 0.9rem !important;
    }

    .btn-artistic-pink,
    .btn-artistic-gold {
        padding: 10px 20px !important;
        font-size: 0.8rem !important;
    }

    .footer {
        padding-top: 3rem !important;
        text-align: center;
    }

    .footer h5 {
        border-left: none !important;
        padding-left: 0 !important;
        margin-top: 1.5rem;
    }

    .footer .newsletter-form {
        margin: 1rem auto;
    }
}
/* Video Integration */
.video-trigger { position: relative; overflow: hidden; }
.video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90px; height: 90px; background: var(--primary-pink); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 2rem; box-shadow: 0 0 30px rgba(255, 105, 180, 0.6); cursor: pointer; z-index: 5; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); animation: pulse-pink 2s infinite; }
.video-trigger:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.15); background: white; color: var(--primary-pink); }
.mini-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: rgba(255, 105, 180, 0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; z-index: 5; transition: all 0.3s ease; }
.video-testimonial-wrap { position: relative; overflow: hidden; border-radius: 15px; }
.video-testimonial-wrap img { transition: all 0.5s ease; }
.video-testimonial-wrap:hover img { transform: scale(1.1); filter: brightness(0.7); }
.video-testimonial-wrap:hover .mini-play-btn { background: white; color: var(--primary-pink); transform: translate(-50%, -50%) scale(1.2); }
@keyframes pulse-pink { 0% { box-shadow: 0 0 0 0 rgba(255, 105, 180, 0.7); } 70% { box-shadow: 0 0 0 20px rgba(255, 105, 180, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 105, 180, 0); } }

/* Video Overlay Gradient */
.video-overlay-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 60%); pointer-events: none; z-index: 2; }
.video-trigger:hover img { transform: scale(1.05); filter: brightness(0.8); }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }
