/* public/css/style.css - Version complète optimisée */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500&display=swap');

/* === VARIABLES === */
:root {
    --font-primary: 'Lato', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --color-dark: #333;
    --color-light: #f8f8f8;
    --transition: all 0.3s ease;
    /* Button + brand accents */
    --btn-border: #e5e7eb;
    --btn-bg: #ffffff;
    --btn-text: #111111;
    --brand-fb: #1877F2;
    --brand-ig: #E4405F;
}

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-dark);
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container--narrow { max-width: 760px; }

/* === HERO SECTION === */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    z-index: -2;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-video.loaded {
    opacity: 1;
}

.hero-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #8a9ba8 url('../images/test1-Couverture.jpg') center/cover;
    z-index: -1;
    transition: opacity 2s ease;
}

.hero-placeholder.hidden {
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

/* === NAVIGATION === */
.hero-title {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 100;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-title.dark-mode {
    color: #333;
    text-shadow: none;
}

/* === MENU PAGE D'ACCUEIL === */

.home-menu-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
}

.home-menu-toggle,
.internal-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.home-menu-toggle .burger-icon,
.internal-menu-toggle .burger-icon {
    width: 24px;
    height: 18px;
    position: relative;
}

.home-menu-toggle .burger-icon span,
.internal-menu-toggle .burger-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    transition: var(--transition);
}

.home-menu-toggle .burger-icon span { background: white; }
.home-menu-toggle.dark-mode .burger-icon span { background: var(--color-dark); }
.internal-menu-toggle .burger-icon span { background: var(--color-dark); }

.home-menu-toggle .burger-icon span:nth-child(1),
.internal-menu-toggle .burger-icon span:nth-child(1) { top: 0; }
.home-menu-toggle .burger-icon span:nth-child(2),
.internal-menu-toggle .burger-icon span:nth-child(2) { top: 8px; }
.home-menu-toggle .burger-icon span:nth-child(3),
.internal-menu-toggle .burger-icon span:nth-child(3) { top: 16px; }

.home-menu-toggle.active .burger-icon span:nth-child(1),
.internal-menu-toggle.active .burger-icon span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.home-menu-toggle.active .burger-icon span:nth-child(2),
.internal-menu-toggle.active .burger-icon span:nth-child(2) {
    opacity: 0;
}

.home-menu-toggle.active .burger-icon span:nth-child(3),
.internal-menu-toggle.active .burger-icon span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

.home-menu-overlay,
.internal-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.home-menu-overlay.active,
.internal-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* === MENU PAGES INTERNES === */
.internal-menu-toggle {
    position: relative;
    display: none; /* Caché par défaut */
}

.internal-menu-toggle.active {
    pointer-events: auto !important;
    z-index: 1001 !important;
}

.internal-menu-toggle.active > .burger-icon span {
    background: white;
}



/* Contenu commun des menus */
.home-menu-overlay .menu-content,
.internal-menu-overlay .menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.home-menu-overlay .menu-content ul,
.internal-menu-overlay .menu-content ul {
    list-style: none;
    text-align: center;
}

.home-menu-overlay .menu-content li,
.internal-menu-overlay .menu-content li {
    margin: 1.5rem 0;
}

.home-menu-overlay .menu-content a,
.internal-menu-overlay .menu-content a {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Playfair Display', serif;
}

/* === LOADING === */
.loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: white;
    text-align: center;
    transition: opacity 0.5s ease;
}

.loading-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    cursor: pointer;
}

.scroll-indicator::before {
    content: '↓';
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* === TYPOGRAPHIE === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1rem; }

a {
    color: #333;
    text-decoration: none;
}

/* === BOUTONS === */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--color-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-dark);
    color: white;
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
}

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

.btn-view-more {
    background: transparent;
    color: var(--color-dark);
    padding: 12px 30px;
    border-radius: 0;
}

.btn-view-more:hover {
    background: var(--color-dark);
    color: white;
}

/* === CHIP BUTTONS (pill style) === */

/* === Social Buttons (distinct style) === */
.btn-social {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    border-radius: 9999px;
    border: 2px solid #ddd;
    background: #f0f0f0;
    font-family: 'Inter', sans-serif;
    color: #666;
    padding: 10px 30px;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    line-height: 1;
}

.btn-social svg { width: 18px; height: 18px; flex: 0 0 18px; display: inline-block; vertical-align: middle; transform: translateY(-2px);margin-right: 6px; }
.btn-social svg path { fill: currentColor; }

.btn-social--facebook:hover, .btn-social--instagram:hover { background:#f5f5f5; color:#222; border-color:#ddd; }





/* === GRILLE ACCUEIL (même système que page séries) === */
.recent-artworks-section {
    padding: 4rem 0;
    background: #f8f8f8;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

/* Grille CSS pour ACCUEIL */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.masonry-item {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.masonry-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

/* === SLIDERS MASONRY ACCUEIL === */
.masonry-item .artwork-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 18px;
}

.masonry-item .artwork-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #eeeeee;
    padding-bottom: 30px;
}

.masonry-item .slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.3s ease;
}

.masonry-item .slider-slide {
    flex: 0 0 100%;
    position: relative;
    width: 260px;
    height: 312px;
    overflow: hidden;
    border-radius: 3px;
}

.masonry-item .slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 8px 0;
}

/* Boutons sliders masonry */
.masonry-item .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    backdrop-filter: blur(4px);
    transition: opacity 0.2s ease;
}

.masonry-item .slider-btn::before {
    content: '';
    width: 7px;
    height: 7px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(-135deg);
}

.masonry-item .slider-next::before {
    transform: rotate(45deg);
}

.masonry-item .artwork-slider-container:hover .slider-btn {
    opacity: 1;
}

.masonry-item .slider-prev {
    left: 32px;
}

.masonry-item .slider-next {
    right: 32px;
}

/* Indicateurs masonry */
.masonry-item .slider-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

/* === EXPOSITIONS PAGE === */
.expositions-page .expo-poster {
    display: block;
    width: 80%;
    max-width: 540px;
    margin: 0 auto;
    height: auto;
    border-radius: 0px;
}

@media (max-width: 640px) {
    .expositions-page .expo-poster {
        width: 100%;
        max-width: none;
    }
}

.masonry-item .slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
}

.masonry-item .slider-dot.active {
    background: white;
    transform: scale(1.2);
}

.artwork-meta {
    padding: 0.2rem 1.5rem 1rem;
}

.artwork-serie {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
    margin-bottom: 0.1rem;
}

.artwork-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 0.1rem;
    line-height: 1;
}

.artwork-material {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.masonry-actions {
    text-align: center;
    margin-top: 3rem;
}

/* === PAGE ARTWORK === */
.artwork-main {
    padding: 2rem 0 4rem;
    background: white;
}

.artwork-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.artwork-gallery-column {
    position: relative;
}

.artwork-gallery-container {
    position: sticky;
    top: 2rem;
}

/* === SLIDER ARTWORK (DIFFÉRENT DU MASONRY) === */
.artwork-gallery-container .artwork-slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3; /* Ratio plus raisonnable */
    background: #eeeeee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 12px 12px 34px; /* Padding autour de l'image */
}

.artwork-gallery-container .artwork-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #eeeeee;
    border-radius: 4px;
}

.artwork-gallery-container .slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.artwork-gallery-container .slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eeeeee;
}

.artwork-gallery-container .slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.artwork-gallery-container .slider-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    background: #eeeeee;
    padding: 8px; /* Petit padding pour l'image elle-même */
}

/* Boutons navigation artwork */
.artwork-gallery-container .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    backdrop-filter: blur(4px);
}

.artwork-gallery-container .slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.artwork-gallery-container:hover .slider-btn {
    opacity: 1;
}

.artwork-gallery-container .slider-btn::before {
    content: '';
    width: 7px;
    height: 7px;
    border-top: 1.5px solid white;
    border-right: 1.5px solid white;
    transform: rotate(-135deg);
}

.artwork-gallery-container .slider-next::before {
    transform: rotate(45deg);
}

.artwork-gallery-container .slider-prev {
    left: 12px;
}

.artwork-gallery-container .slider-next {
    right: 12px;
}

/* Indicateurs artwork */
.artwork-gallery-container .slider-indicators {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 10;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.artwork-gallery-container .slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.artwork-gallery-container .slider-dot.active {
    background: white;
    transform: scale(1.2);
}

.artwork-gallery-container .slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

/* === DÉTAILS ARTWORK === */
.artwork-details-column {
    padding-left: 0.5rem;
}

.artwork-info h1{
    margin: 0;
}

.artwork-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
}

.artwork-info .technical-info h2{
    padding-top: 0.7rem;
}

.description-section .description-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0rem 0 0.4rem;
}

.info-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    padding: 0.2rem 0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #333;
    font-size: 0.85rem;
}

.info-value {
    color: #666;
    font-size: 0.85rem;
}

.serie-link {
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    transition: border-color 0.3s ease;
}

.serie-link:hover {
    border-bottom-color: #333;
}

/* Section disponibilité compacte */
.availability-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid #28a745;
    margin-bottom: 1.5rem;
}

.availability-info.unavailable {
    border-left-color: #6c757d;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.status-badge.available {
    background: #d4edda;
    color: #155724;
}

.status-badge.unavailable {
    background: #e2e3e5;
    color: #383d41;
}

.price-info .price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
}

.price-info .price-note {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.price-info .price.request {
    margin-top: 10px;
    font-size: 0.94rem;
}

.artwork-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.artwork-actions .btn-primary,
.artwork-actions .btn-secondary {
    text-align: center;
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
}

/* === ŒUVRES LIÉES === */
.related-artworks,
.other-artworks {
    padding: 3rem 0;
    background: #f8f8f8;
}

.related-artworks h2,
.other-artworks h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive pour les œuvres liées */
@media (max-width: 1024px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .related-artworks h2,
    .other-artworks h2 {
        font-size: 1.5rem;
    }
}



/* === HEADER PAGES INTERNES === */
.internal-header {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
    position: relative;
}

.header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    position: relative;
}

.header-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    line-height: 1.2;
}

.header-logo:hover {
    color: #666;
}

.header-nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.header-nav a {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    
    transition: color 0.3s ease;
    position: relative;
}

.header-nav a:hover {
    color: #666;
}

.header-nav a.active {
    color: #666;
}

.header-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 1px;
    background: #333;
}


/* === PAGES INTERNES === */
.page-header {
    background: #f8f8f8;
    padding: 1rem 0 1rem;
    border-bottom: 1px solid #eee;
}


.breadcrumb {
    color: #363636;
    font-size: 15px;
    font-weight: 500;
    font-family: sans-serif;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #333;
}

.breadcrumb .separator {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 0.8rem;
    position: relative;
}

.breadcrumb .separator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    transform: translate(-50%, -50%) rotate(45deg);
}

.page-title{ padding: 40px 0 20px;
    
}

.page-description {
    max-width: 600px;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

/* === PAGE CONTACT === */
.contact-hero { position: relative; padding: 1.2rem 0 .8rem; }
.contact-hero-inner { position: relative; border: 0; background: transparent; border-radius: 0; padding: 0; overflow: visible; }
.contact-hero-content h1 { margin: 0 0 .25rem; }
.contact-hero-content .page-description { margin: 0; color:#666; }
.contact-hero-inner::before,
.contact-hero-inner::after,
.contact-hero-deco,
.contact-hero-deco::after { content: none !important; display: none !important; }

.contact-main {
    padding: 4rem 0;
}

.contact-main .container{ /* width controlled by container; two-column split below */ }

.contact-split { display:grid; grid-template-columns: .9fr 1.1fr; gap: 1.5rem; align-items: start; }
.contact-photo { display:flex; justify-content:center; }
.contact-photo img { width:100%; max-width: 320px; height:auto; display:block; border-radius: 8px; border:1px solid #eee; }
.contact-panel .contact-form-wrapper { max-width: 100%; margin: 0; }

@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; }
  .contact-photo { order: 1; }
  .contact-panel { order: 2; }
}

.contact-form-wrapper { max-width: 560px; margin: 0 auto; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-aside {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.25rem;
}
.contact-aside h2 { font-size: 1.2rem; margin-bottom: .4rem; }
.contact-aside p { display:none; }
.contact-details { display:none; }
.contact-socials { display:flex; gap:.6rem; flex-wrap:wrap; justify-content:center; }

@media (min-width: 900px) {
    .contact-grid { grid-template-columns: 320px 1fr; align-items: start; }
    .contact-form-wrapper { margin: 0 auto; }
}

.contact-form {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.form-row { display: grid; grid-template-columns: 1fr; gap: .75rem; margin-bottom: .75rem; }

.form-group { margin-bottom: .75rem; }

.form-group label { display: block; margin-bottom: 0.35rem; font-weight: 600; color: #333; }

.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: .7rem; border: 1px solid #ddd; border-radius: 6px; font-size: .9rem; transition: border-color 0.2s ease; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333;
}

.form-actions { margin-top: 1rem; text-align: center; }

.form-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
    line-height: 1.4;
    text-align: center;
}

/* Captcha image label sizing */
.contact-form .captcha-label img {
    height: 21px;
    width: auto;
    display: inline-block;
}

.form-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* === PAGES LÉGALES === */
.legal-content {
    padding: 4rem 0;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.legal-section h3 {
    color: #333;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #666;
    text-align: justify;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #666;
}

.legal-section a {
    color: #333;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #666;
}

.legal-section strong {
    color: #333;
    font-weight: 600;
}

/* === CTA SECTIONS === */
.cta-section {
    background: #f8f8f8;
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* === PAGE ATELIER === */
.atelier-intro {
    padding: 4rem 0;
}

.atelier-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.atelier-text h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.atelier-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #666;
}

.atelier-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background: #f8f8f8;
}

.creative-process {
    padding: 4rem 0;
    background: #f8f8f8;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: #333;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

.atelier-visit {
    padding: 4rem 0;
}

.visit-content h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.visit-content > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
}

.visit-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.visit-details h3,
.visit-booking h3 {
    margin-bottom: 1rem;
    color: #333;
}

.visit-details ul {
    list-style: none;
    padding-left: 0;
}

.visit-details li {
    margin-bottom: 0.8rem;
    color: #666;
}

.visit-booking p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.materials-tools {
    padding: 4rem 0;
    background: #f8f8f8;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.material-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.material-item h3 {
    margin-bottom: 1rem;
    color: #333;
}

.material-item p {
    color: #666;
    line-height: 1.6;
}

.atelier-cta {
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.cta-content p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* === PAGE SÉRIES === */
.series-listing {
    padding: 4rem 0;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.serie-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.serie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.serie-number {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.serie-content h2 {
    margin-bottom: 1rem;
    color: #333;
}

.serie-description {
    color: #666;
    line-height: 1.6;
}

.serie-stats {
    margin-bottom: 1.5rem;
}

.serie-stats .stat {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #f0f0f0;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
}

.serie-actions {
    text-align: center;
}

.about-teaser {
    padding: 4rem 0;
    background: #f8f8f8;
}

.about-content {
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.about-content p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.7;
}

.about-page-content {
    margin: 0 auto;
    text-align: center;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-page-content h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.about-page-content p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.7;
}

.about-page-hero-image {
    max-width: 340px;
    margin: 0 auto 2rem;
}

.about-page-hero-image img,
.about-page-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-page-section {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-page-section--reverse {
    flex-direction: row-reverse;
}

.about-page-image,
.about-page-text {
    flex: 1;
}

@media (max-width: 768px) {
    .about-page-section,
    .about-page-section--reverse {
        flex-direction: column;
    }
}


.about-page-intro{
    width: 92%;
    max-width: 740px;
    margin: 0 auto;
}

.about-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* === PAGE SÉRIE INDIVIDUELLE === */
.artworks-listing {
    padding: 4rem 0;
}

.artworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.artwork-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artwork-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.artwork-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.artwork-card h3 a {
    color: #333;
    text-decoration: none;
}

.artwork-card h3 a:hover {
    color: #666;
}

.artwork-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.artwork-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.artwork-status {
    margin-bottom: 1.5rem;
}

.status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 1rem;
}

.status.available {
    background: #d4edda;
    color: #155724;
}

.status.sold {
    background: #f8d7da;
    color: #721c24;
}

.price {
    font-weight: 600;
    color: #333;
}

.no-artworks {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.serie-navigation {
    padding: 3rem 0;
    background: #f8f8f8;
    border-top: 1px solid #eee;
}

.nav-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* === PAGE À PROPOS === */
.biography {
    padding: 4rem 0;
}

.bio-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.bio-main h2 {
    margin-bottom: 2rem;
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

.bio-text p {
    margin-bottom: 1.5rem;
}

.bio-sidebar {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
}

.bio-sidebar h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
}

.bio-sidebar p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.bio-sidebar ul {
    list-style: none;
    padding-left: 0;
}

.bio-sidebar li {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
}

.bio-sidebar li::before {
    content: "•";
    color: #999;
    margin-right: 0.5rem;
}

.exhibitions {
    padding: 4rem 0;
    background: #f8f8f8;
}

.exhibitions-list {
    max-width: 800px;
    margin: 0 auto;
}

.exhibition-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.exhibition-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    min-width: 80px;
}

.exhibition-details h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.exhibition-details p {
    margin-bottom: 0.5rem;
    color: #666;
}

.exhibition-type {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: #f0f0f0;
    color: #666;
    font-size: 0.8rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === FOOTER === */
.footer {
    background: #333;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-copyright {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: white;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: white;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #555;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ccc;
}

/* === FILTRES SÉRIES === */
.series-filters {
    padding: 1.2rem 0 1rem;
    background: white;
    border-bottom: 1px solid #eee;
    top: 0;
    z-index: 50;
}

.series-header {
    text-align: center;
    margin-bottom: 1.2rem;
}

.series-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.series-header .page-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.filters-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 50;
    background: white;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: transparent;
    border: 2px solid #ddd;
    border-radius: 25px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
}

.filter-btn:hover {
    border-color: #333;
    color: #333;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: #333;
    border-color: #333;
    color: white;
}

.filter-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.filter-btn.active .filter-count {
    background: rgba(255, 255, 255, 0.3);
}

.filter-btn:not(.active) .filter-count {
    background: #f0f0f0;
    color: #666;
}

/* === DESCRIPTION SÉRIE === */
.serie-description {
    padding: 1rem 0;
    background: #f8f8f8;
    transition: all 0.3s ease;
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.description-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.description-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.serie-stats {
    font-size: 0.9rem;
    color: #999 !important;
    font-style: italic;
}

/* === GRILLE POUR PAGE SÉRIES === */
.artworks-masonry-section {
    padding: 0.4rem 0 2rem;
    background: #f8f8f8;
}

.artworks-masonry-section .masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.artworks-masonry-section .masonry-item {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.artworks-masonry-section .masonry-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
} différent */
.artworks-masonry-section .masonry-item {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

/* Ajout de l'année dans les métadonnées */
.artwork-year {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
    margin-top: 0.2rem;
}

/* === MESSAGE AUCUNE ŒUVRE === */
.no-artworks-message {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin: 2rem auto;
    max-width: 500px;
}

.no-artworks-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.no-artworks-content p {
    color: #666;
    line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .masonry-grid {
        column-count: 2;
    }
    
    .artwork-layout {
        grid-template-columns: 1.8fr 1fr;
        gap: 2rem;
    }
    
    .artwork-gallery-container .artwork-slider-container {
        aspect-ratio: 3/2; /* Ratio plus compact sur mobile */
        padding: 15px; /* Padding réduit sur mobile */
    }
    
    .bio-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .series-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .artworks-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .artworks-masonry-section .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filters-wrapper {
        gap: 0.6rem;
    }
    
    .filter-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
        top: 20px;
        left: 20px;
    }
    
    .home-menu-toggle {
        top: 20px;
        right: 20px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .home-menu-overlay .menu-content a,
    .internal-menu-overlay .menu-content a {
        font-size: 1.5rem;
    }
    
    .page-header {
        padding: 1rem 0 1rem;
    }
    
    /* Artwork responsive */
    .artwork-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .artwork-gallery-container {
        position: static;
    }
    
    .artwork-gallery-container .artwork-slider-container {
        aspect-ratio: 3/2; /* Même ratio que tablet */
        padding: 12px; /* Padding encore plus réduit */
    }
    
    .artwork-details-column {
        padding-left: 0;
    }
    
    .info-item {
        grid-template-columns: 1fr;
        gap: 0.2rem;
        padding: 0.8rem 0;
    }
    
    .info-label {
        font-weight: 700;
    }
    
    .artwork-actions {
        position: sticky;
        bottom: 1rem;
        background: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
        margin: 0 -1rem;
        z-index: 50;
    }
    
    .nav-artworks {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-artwork.next {
        text-align: left;
    }
    
    /* Sliders responsive */
    .masonry-item .slider-btn {
        width: 36px;
        height: 36px;
    }
    
    .masonry-item .slider-btn::before {
        width: 8px;
        height: 8px;
        border-width: 2px;
    }
    
    .masonry-item .slider-prev {
        left: 30px;
    }
    
    .masonry-item .slider-next {
        right: 30px;
    }
    
    .masonry-item .slider-indicators {
        bottom: 16px;
        padding: 6px 10px;
    }
    
    .masonry-item .slider-dot {
        width: 7px;
        height: 7px;
    }
    
    .artwork-gallery-container .slider-btn {
        width: 32px;
        height: 32px;
    }
    
    .artwork-gallery-container .slider-btn::before {
        width: 6px;
        height: 6px;
        border-width: 1.5px;
    }
    
    .artwork-gallery-container .slider-prev {
        left: 8px;
    }
    
    .artwork-gallery-container .slider-next {
        right: 8px;
    }
    
    .artwork-gallery-container .slider-indicators {
        bottom: 12px;
        padding: 6px 10px;
    }
    
    .artwork-gallery-container .slider-dot {
        width: 5px;
        height: 5px;
    }
    
    /* Header responsive */
    .header-nav ul {
        display: none;
    }
    
    .internal-menu-toggle {
        pointer-events: auto !important;
        display: block !important;
        z-index: 1001 !important; /* Plus élevé que l'overlay (999) */
        
    }
    
    /* Atelier responsive */
    .atelier-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .visit-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .materials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 200px;
    }
    
    /* Contact responsive */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Series responsive */
    .series-grid {
        grid-template-columns: 1fr;
    }
    
    .artworks-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-actions {
        flex-direction: column;
        text-align: center;
    }
    
    /* Footer responsive */
    .footer-content {
        gap: 1rem;
    }
    
    .footer-social {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Filtres séries responsive */
    .series-filters {
        padding: 1.2rem 0 1rem;
        background: white;
    }
    
    .series-header {
        margin-bottom: 2rem;
    }
    
    .series-header h1 {
        font-size: 2rem;
    }
    
    .filters-wrapper {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
    }
    
    .filter-btn {
        justify-content: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .artworks-masonry-section .masonry-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .serie-description {
        padding: 1.5rem 0;
    }
    
    .description-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .btn-view-more {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .artwork-main {
        padding: 1rem 0 2rem;
    }
    
    .artwork-layout {
        gap: 1rem;
    }
    
    .artwork-info > div {
        margin-bottom: 1rem;
    }
    
    .artwork-info h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .availability-info {
        padding: 0.8rem;
        border-left-width: 2px;
    }
    
    .status-badge {
        padding: 0.2rem 0.6rem;
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .price-info .price {
        font-size: 1.3rem;
    }
    
    .artwork-actions .btn-primary,
    .artwork-actions .btn-secondary {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    
    .suggestions-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.2rem;
    }
    
    .artwork-gallery-container .artwork-slider-container {
        aspect-ratio: 4/5;
    }
    
    .serie-card {
        padding: 1.5rem;
    }
    
    .artwork-card {
        padding: 1.5rem;
    }
    
    /* Filtres séries responsive 480px */
    .series-header h1 {
        font-size: 1.8rem;
    }
    
    .filter-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .filter-count {
        font-size: 0.75rem;
    }
    
    .description-text h3 {
        font-size: 1.3rem;
    }
    
    .artworks-masonry-section {
        padding: 2rem 0 3rem;
    }
}
/* === Atelier Page === */
.atelier-slider .artwork-gallery-container {
    position: relative;
    top: auto;
}

.atelier-slider {
    margin-bottom: 3rem;
}

.atelier-slider .artwork-gallery-container .artwork-slider-container {
    width: 98%;
    max-width: 990px;
    aspect-ratio: 16/9;
    margin: 0 auto;
}

.tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
}

.tab-button {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-bottom: none;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    border-radius: 4px 4px 0 0;
    margin-right: 0.25rem;
    transition: background 0.3s ease;
}

.tab-button.active {
    background: #fff;
    color: #000;
    border-bottom: 1px solid #fff;
}

.tab-content {
    display: none;
    border: 1px solid #ddd;
    padding: 1rem;
}

.tab-content.active {
    display: block;
}

.workshop-page {
    padding: 0.6rem 0 3.5rem;
}

.workshop-flyer {
    max-width: 560px;
    margin: 0 auto;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
}

.workshop-flyer img {
    width: 100%;
    display: block;
}

.workshop-tabs {
    margin-top: 3rem;
}

.workshop-tabs {
    --tabs-border: #ddd;
    --tabs-bg: #f9f9f9;
    --tabs-bg-active: #fff;
    --tabs-text: #555;
    --tabs-text-active: #111;
}

.workshop-tabs .tab-buttons {
    justify-content: flex-start;
    gap: 0.25rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.workshop-tabs .tab-button {
    background: var(--tabs-bg);
    border: 1px solid var(--tabs-border);
    border-bottom: none;
    color: var(--tabs-text);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0;
    padding: 0.5rem 1.15rem;
    border-radius: 6px 6px 0 0;
    transition: background 0.25s ease, color 0.25s ease;
}

.workshop-tabs .tab-button:hover,
.workshop-tabs .tab-button:focus {
    background: #f1f5f9;
    outline: none;
}

.workshop-tabs .tab-button.active,
.workshop-tabs .tab-button.is-active {
    background: var(--tabs-bg-active);
    color: var(--tabs-text-active);
    border-bottom: 1px solid var(--tabs-bg-active);
    box-shadow: 0 1px 0 var(--tabs-bg-active) inset;
}

.workshop-tabs .tab-content {
    border-radius: 0 12px 12px 12px;
    border: 1px solid var(--tabs-border);
    box-shadow: none;
    padding: 2.25rem 2.5rem;
    background: var(--tabs-bg-active);
    line-height: 1.7;
}

.workshop-article {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.workshop-section {
    padding: 2rem 0;
    border-top: 1px solid #d1d5db;
}

.workshop-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.workshop-section h2,
.workshop-section h3 {
    color: #111827;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.workshop-section h2 {
    font-size: 1.85rem;
}

.workshop-section h3 {
    font-size: 1.25rem;
    text-transform: none;
    letter-spacing: 0.02em;
}

.workshop-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.workshop-section p {
    color: #374151;
    margin: 0.45rem 0;
}

.workshop-section a {
    color: #1d4ed8;
    text-decoration: none;
}

.workshop-section a:hover,
.workshop-section a:focus {
    text-decoration: underline;
}

.workshop-list {
    margin: 0.75rem 0 0.35rem 1.1rem;
    padding-left: 0.9rem;
    color: #1f2937;
}

.workshop-list li {
    margin: 0.3rem 0;
    padding-left: 0.15rem;
}

.workshop-schedule {
    list-style: none;
    margin: 0.6rem 0 0;
    padding-left: 0;
}

.workshop-schedule li {
    margin: 0.3rem 0;
    padding-left: 1.3rem;
    position: relative;
}

.workshop-schedule li::before {
    content: "\2192";
    position: absolute;
    left: 0;
    color: #0f172a;
}

@media (max-width: 960px) {
    .workshop-tabs .tab-content {
        padding: 2rem 1.8rem;
    }
}

@media (max-width: 640px) {
    .workshop-flyer {
        border-radius: 12px;
    }

    .workshop-tabs .tab-buttons {
        flex-wrap: wrap;
    }

    .workshop-tabs .tab-button {
        flex: 1 1 auto;
        font-size: 0.95rem;
        padding: 0.55rem 0.9rem;
    }

    .workshop-tabs .tab-content {
        padding: 1.6rem 1.25rem;
    }
}

.atelier-video {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.atelier-video .video-caption {
    margin-top: 1rem;
    font-style: italic;
}

.atelier-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}




/* === ABOUT PAGE TABS === */
.about-page-tabs { --b:#111; --g:#6b7280; --bd:#e5e7eb; --bg:#fafafa; --bg2:#fff; }
.about-page-tabs .tabs-header { display:flex; gap:.25rem; margin-bottom:0; }
.about-page-tabs .tab-btn {
    background:#f9f9f9;
    border:1px solid #ddd;
    border-bottom:none;
    padding:.4rem .8rem;
    cursor:pointer;
    font-size:.9rem;
    color:#555;
    border-radius:4px 4px 0 0;
    margin-right:.25rem;
    transition: background .3s ease;
}
.about-page-tabs .tab-btn.is-active {
    background:#fff;
    color:#000;
    border-bottom:1px solid #fff;
}
.about-page-tabs .tab-panel { display:block; padding:0; }
.about-page-tabs .tab-panel[hidden] { display:none; }
.about-page-tabs .about-page-hero h2 { margin:.2rem 0 .75rem; font-size:1.5rem; line-height:1.25; }
.about-page-tabs .about-page-contact { border-top:1px solid var(--bd); margin-top:0.1rem; padding: 10px 0 30px; }
.about-page-tabs .about-page-contact p { color:#555; margin:.5rem 0 1rem; }
.about-page-tabs .about-page-contact .cta-actions { display:flex; flex-direction:column; align-items:center; gap:.75rem; }
.about-page-tabs .about-page-contact .cta-row { display:flex; justify-content:center; gap:.6rem; flex-wrap:wrap; }
.about-page-tabs .about-page-contact .cta-row--socials { margin-top:.45rem; }
.about-page-tabs .keywords {
    display:flex;
    flex-wrap:wrap;
    gap:.5rem;
    padding-left:0;
    list-style:none;
}

.about-page-tabs .keywords li {
    background:var(--bg2);
    padding:.25rem .5rem;
    border:1px solid var(--bd);
    border-radius:4px;
}

.about-page-tabs .works {
    display:flex;
    flex-wrap:wrap;
    gap:.5rem 1rem;
    padding-left:1rem;
}

.about-page-tabs .works li { list-style:disc; }
.about-page-tabs p { color:#222; }
.about-page-tabs h3 { margin-top:1.1rem; }

/* Box like Atelier tab-content */
.about-page-tabs .about-page-content {
    
    padding: 1rem;
}

/* Language toggling for About shared content */
.about-page-tabs .lang-fr,
.about-page-tabs .lang-en { display:none; }
.about-page-tabs[data-lang="fr"] .lang-fr { display:block; }
.about-page-tabs[data-lang="en"] .lang-en { display:block; }

.about-page-video {
    max-width: 100%;
}

.about-page-video .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 30px 0
}

.about-page-video .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-page-video p.video-caption{font-size: 13px; }



.about-page-video .video-caption span{font-size: 17px; padding-bottom: 8px; display: inline-block;}


.about-page-tabs-inner-div{border-width: 1px;
    border-style: solid;
    border-color: rgb(221, 221, 221);
    border-image: initial;}


.about-page-contact-logo{display: block; max-width: 300px; margin: 0 auto;}

.about-page-contact-logo img{width: 100%; height: auto;}
