/* Variables CSS avec vos couleurs */
:root {
    --brand-red: #e9061e;
    --brand-black: #000000;
    --brand-white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: var(--brand-white);
    color: var(--brand-black);
}

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

/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    background: white;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--brand-black);
    font-size: 1.25rem;
    transition: var(--transition);
}

.logo:hover {
    color: var(--brand-red);
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    position: relative;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    color: var(--brand-black);
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--brand-red);
}

.nav-link.active {
    color: var(--brand-red);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand-red);
    border-radius: 2px;
}

/* État scroll pour les liens desktop */
.scrolled .nav-link {
    color: var(--brand-black);
}

.scrolled .nav-link:hover {
    color: var(--brand-red);
}

/* Bouton CTA */
.cta-desktop {
    display: none;
}

@media (min-width: 768px) {
    .cta-desktop {
        display: block;
    }
}

.cta-button {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--brand-white);
    background: var(--brand-red);
    border: 2px solid var(--brand-red);
    border-radius: 0.375rem;
    transition: var(--transition);
    cursor: pointer;
}

.cta-button:hover {
    background: transparent;
    color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 6, 30, 0.3);
}

/* Bouton Menu Mobile */
.mobile-menu-btn {
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--brand-black);
    transition: var(--transition);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    color: var(--brand-red);
}

/* Hamburger Icon */
.hamburger {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    position: relative;
    transition: var(--transition);
}

.hamburger-line {
    display: block;
    height: 2px;
    width: 100%;
    background: currentColor;
    border-radius: 1px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger-line:nth-child(1) {
    transform: translateY(0);
}

.hamburger-line:nth-child(2) {
    transform: translateY(6px);
    opacity: 1;
}

.hamburger-line:nth-child(3) {
    transform: translateY(12px);
}

/* État ouvert du hamburger */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(6px) rotate(-45deg);
}

/* Navigation Mobile */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-content {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--brand-black);
    transition: var(--transition);
    border-radius: 0.75rem;
    border: 1px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--brand-red);
    background: rgba(233, 6, 30, 0.08);
    border-color: rgba(233, 6, 30, 0.2);
}

/* Overlay pour fermer le menu */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Empêcher le scroll du body quand le menu est ouvert */
body.no-scroll {
    overflow: hidden;
}

/* ===== HERO SLIDER STYLES ===== */
.hero-slider {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, transparent);
}

/* Slides Container */
.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    width: 100%;
    text-align: center;
}

.text-content {
    max-width: 72rem;
    margin: 0 auto;
}

/* Text Animations */
.slide-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--brand-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.6s;
}

.slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.slide-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.8s;
}

.slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 640px) {
    .slide-buttons {
        flex-direction: row;
    }

    .slide-title {
        font-size: 3.75rem;
    }

    .slide-subtitle {
        font-size: 1.875rem;
    }

    .slide-description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .slide-title {
        font-size: 4.5rem;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--brand-white);
    background: var(--brand-red);
    border: 2px solid var(--brand-red);
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(233, 6, 30, 0.3);
}

.btn-primary:hover {
    background: transparent;
    color: var(--brand-white);
    border-color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(233, 6, 30, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--brand-white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--brand-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Arrow Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    color: var(--brand-white);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-prev {
    left: 1rem;
}

.slider-arrow-next {
    right: 1rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(5px);
    }

    60% {
        transform: translateY(3px);
    }
}

/* ===== FOOTER STYLES ===== */
.site-footer {
    background: var(--brand-black);
    color: var(--brand-white);
    padding: 3rem 0 1rem;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--brand-red);
    color: var(--brand-white);
    transform: translateY(-2px);
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--brand-white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--brand-red);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.contact-item svg {
    color: var(--brand-red);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.4;
}

.contact-item span {
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: between;
    }
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 1.5rem;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-links-bottom a:hover {
    color: var(--brand-red);
}

/* ===== PAGE CONTENT STYLES ===== */
.page-content {
    padding: 2rem 0;
    margin-top: 80px;
}

.page-header {
    background: var(--brand-black);
    color: var(--brand-white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.8;
}

/* ===== CURRENT EXHIBITIONS SECTION ===== */
.current-exhibitions-section {
    padding: 4rem 0;
    background: var(--brand-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--brand-black);
    margin-bottom: 1rem;
    text-align: left;
}

.section-description {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 42rem;
    line-height: 1.6;
}

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

@media (min-width: 768px) {
    .exhibitions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .exhibitions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.exhibition-card {
    background: var(--brand-white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.exhibition-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.exhibition-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.exhibition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.exhibition-card:hover .exhibition-image img {
    transform: scale(1.05);
}

.exhibition-content {
    padding: 1.5rem;
}

.exhibition-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--brand-black) !important;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.exhibition-artist {
    font-weight: 500;
    color: var(--brand-red);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.exhibition-dates {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
}

.exhibition-description {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.exhibition-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.exhibition-status.current {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.exhibition-status.upcoming {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.exhibition-status.past {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    border: 1px solid rgba(107, 114, 128, 0.2);
}

.section-cta {
    text-align: center;
}

.cta-button-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: var(--brand-red);
    background: transparent;
    border: 2px solid var(--brand-red);
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button-outline:hover {
    background: var(--brand-red);
    color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 6, 30, 0.3);
}

.cta-button-outline svg {
    transition: transform 0.3s ease;
}

.cta-button-outline:hover svg {
    transform: translateX(2px);
}

/* ===== UPCOMING EVENTS SECTION ===== */
.upcoming-events-section {
    padding: 8rem 0;
    background: var(--brand-white);
}

.events-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .events-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.events-header-text {
    flex: 1;
}

.events-header-cta {
    flex-shrink: 0;
}

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

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (min-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.event-card {
    background: var(--brand-white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.event-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-content {
    padding: 1.5rem;
}

.event-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.event-category.workshop {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.event-category.vernissage {
    background: rgba(233, 6, 30, 0.1);
    color: var(--brand-red);
    border: 1px solid rgba(233, 6, 30, 0.2);
}

.event-category.conference {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--brand-black) !important;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.event-title a,
.exhibition-title a {
    color: #111;
    text-decoration: none;
    font-weight: 700;
}

.event-title a:hover,
.exhibition-title a:hover {
    color: #e9061e;
    /* ton rouge principal */
    text-decoration: none;
}

.event-dates {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.event-date {
    font-weight: 600;
    color: var(--brand-black);
    font-size: 0.875rem;
}

.event-time {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.875rem;
}

.event-description {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.event-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.event-attendees {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
}

.event-price {
    font-weight: 600;
    color: var(--brand-black);
    font-size: 0.875rem;
}

.event-price.free {
    color: #16a34a;
}

.events-cta {
    text-align: center;
    padding-top: 10px;
}

.cta-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--brand-white);
    background: var(--brand-red);
    border: 2px solid var(--brand-red);
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(233, 6, 30, 0.3);
}

.cta-button-primary:hover {
    background: transparent;
    color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(233, 6, 30, 0.4);
}

.cta-button-primary svg {
    transition: transform 0.3s ease;
}

.cta-button-primary:hover svg {
    transform: translateX(2px);
}

/* ===== PRACTICAL INFO SECTION ===== */
.practical-info-section {
    padding: 4rem 0;
    background: var(--brand-white);
}

.info-card {
    background: var(--brand-white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.info-content {
    padding: 2rem;
}

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

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.info-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(233, 6, 30, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--brand-red);
}

.info-title {
    font-weight: 600;
    color: var(--brand-black);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.info-description {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    font-size: 0.875rem;
}

.info-cta {
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .events-header-cta {
        display: none;
    }

    .event-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ===== LATEST NEWS SECTION ===== */
.latest-news-section {
    padding: 4rem 0;
    background: rgba(233, 6, 30, 0.03);
}

.news-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .news-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.news-header-text {
    flex: 1;
}

.news-header-cta {
    flex-shrink: 0;
}

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

@media (min-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-card {
    background: var(--brand-white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.article-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
}

.article-author {
    font-weight: 600;
    color: var(--brand-red);
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--brand-black);
    margin-bottom: 1rem;
    line-height: 1.3;
    flex-grow: 0;
}

.article-excerpt {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.article-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--brand-red);
    background: rgba(233, 6, 30, 0.1);
    border: 1px solid rgba(233, 6, 30, 0.2);
    border-radius: 1rem;
}

.news-cta {
    text-align: center;
}

.cta-button-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--brand-black);
    background: transparent;
    border: 2px solid transparent;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button-ghost:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button-ghost svg {
    transition: transform 0.3s ease;
}

.cta-button-ghost:hover svg {
    transform: translateX(2px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .news-header-cta {
        display: none;
    }
}

/* Animation pour les articles */
.article-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.article-card:nth-child(1) {
    animation-delay: 0.1s;
}

.article-card:nth-child(2) {
    animation-delay: 0.2s;
}

.article-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.exhibition-card,
.event-card {
    position: relative;
}

.stretched-link {
    position: absolute;
    inset: 0;
    display: block;
    text-indent: -9999px;
    overflow: hidden;
}
/* ===== ARTISTES PAGE STYLES ===== */

/* Hero Section */
.page-artistes {
    padding-top: 80px;
}

.artistes-hero {
    padding: 4rem 0;
    background: linear-gradient(to bottom, rgba(233, 6, 30, 0.05), var(--brand-white));
}

.hero-content {
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--brand-black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

/* Filters Section */
.artistes-filters {
    padding: 2rem 0;
    background: var(--brand-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filters-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .filters-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.filters-left {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .filters-left {
        width: auto;
    }
}

.search-container {
    position: relative;
    flex: 1;
}

@media (min-width: 768px) {
    .search-container {
        width: 20rem;
        flex: none;
    }
}

.search-container svg {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 0, 0, 0.5);
}

.search-input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: var(--brand-white);
}

.search-input:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(233, 6, 30, 0.1);
}

.filter-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    color: var(--brand-black);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-button:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
}

.artists-count {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.875rem;
    text-align: center;
}

@media (min-width: 768px) {
    .artists-count {
        text-align: right;
    }
}

/* Artists Grid Section */
.artistes-grid-section {
    padding: 4rem 0;
    background: var(--brand-white);
}

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

@media (min-width: 768px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.artist-card {
    background: var(--brand-white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.artist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.artist-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.artist-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.05);
}

.artist-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, transparent);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    color: var(--brand-white);
    transition: all 0.3s ease;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.artist-speciality {
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.artist-country {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.artist-content {
    padding: 1.5rem;
    text-align: center;
}

.artist-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--brand-black);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.artist-card:hover .artist-name {
    color: var(--brand-red);
}

.artist-location {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
}

.artist-bio {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.artist-cta {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}

.artist-button {
    width: 100%;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    color: var(--brand-black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.artist-button:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* CTA Section */
.artistes-cta {
    padding: 4rem 0;
    background: var(--brand-white);
}

.cta-content {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.875rem;
    color: var(--brand-black);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--brand-white);
    background: var(--brand-red);
    border: 2px solid var(--brand-red);
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(233, 6, 30, 0.3);
}

.cta-button:hover {
    background: transparent;
    color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(233, 6, 30, 0.4);
}

/* ===== ARTISTE DETAIL PAGE STYLES ===== */

.page-artiste-detail {
    padding-top: 80px;
}

/* Artist Not Found */
.artist-not-found {
    padding: 4rem 0;
    text-align: center;
}

.not-found-content h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--brand-black);
    margin-bottom: 1rem;
}

.not-found-content p {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.375rem;
    color: var(--brand-black);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
}

/* Navigation */
.artist-navigation {
    padding: 1.5rem 0;
    background: var(--brand-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-black);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--brand-red);
}

/* Artist Profile */
.artist-profile {
    padding: 4rem 0;
    background: var(--brand-white);
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .profile-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.artist-photo {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-bio {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bio-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1.5rem;
}

.artist-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--brand-black);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .artist-name {
        font-size: 3rem;
    }
}

.artist-info {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
}

.artist-description {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.7;
}

/* Artworks Section */
.artist-artworks {
    padding: 4rem 0;
    background: var(--brand-white);
}



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

@media (min-width: 768px) {
    .artworks-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.artwork-card {
    background: var(--brand-white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

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

.artwork-image {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.artwork-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artwork-card:hover .artwork-img {
    transform: scale(1.05);
}

.artwork-content {
    padding: 1.5rem;
    text-align: center;
}

.artwork-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--brand-black);
}

/* Events Section */
.artist-events {
    padding: 4rem 0;
    background: var(--brand-white);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    /* max-width: 56rem; */
    margin: 0 auto;
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.event-card {
    background: var(--brand-white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.event-content {
    padding: 1.5rem;
    text-align: center;
}

.event-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(233, 6, 30, 0.1);
    color: var(--brand-red);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.event-badge.exposition {
    background: rgba(233, 6, 30, 0.1);
    color: var(--brand-red);
}

.event-badge.résidence {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.event-badge.atelier {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--brand-black);
    margin-bottom: 0.5rem;
}

.event-dates {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
}

.event-button {
    width: 100%;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    color: var(--brand-black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-button:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Animations */
.artist-photo,
.artist-bio,
.artwork-card,
.event-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.artist-photo {
    animation-delay: 0.1s;
}

.artist-bio {
    animation-delay: 0.2s;
}

.artwork-card:nth-child(1) {
    animation-delay: 0.3s;
}

.artwork-card:nth-child(2) {
    animation-delay: 0.4s;
}

.artwork-card:nth-child(3) {
    animation-delay: 0.5s;
}

.event-card:nth-child(1) {
    animation-delay: 0.6s;
}

.event-card:nth-child(2) {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PAGE COMMON STYLES ===== */
.page-galerie,
.page-reservations,
.page-actualites {
    padding-top: 80px;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--brand-black);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 3rem;
    }
}

.page-description {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== GALERIE PAGE STYLES ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    aspect-ratio: 1/1;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-placeholder:hover {
    background: rgba(0, 0, 0, 0.1);
}

.gallery-notice {
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    font-style: italic;
}

/* ===== RESERVATIONS PAGE STYLES ===== */
.reservation-banner {
    height: 16rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.reservations-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}


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

@media (min-width: 768px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.room-card {
    background: var(--brand-white);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.room-image {
    height: 12rem;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.5);
}

.room-content {
    padding: 2rem;
}

.room-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--brand-black);
    margin-bottom: 1rem;
}

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

.room-details p {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
}

.detail-label {
    font-weight: 500;
    color: var(--brand-black);
}

.room-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.375rem;
    color: var(--brand-black);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-button:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
}

.info-section {
    background: var(--brand-white);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

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

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-subtitle {
    font-weight: 600;
    color: var(--brand-black);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.info-text {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.info-label {
    font-weight: 500;
    color: var(--brand-black);
}

.info-list {
    color: rgba(0, 0, 0, 0.7);
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--brand-red);
}

.contact-section {
    background: rgba(233, 6, 30, 0.03);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.contact-description {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--brand-white);
    background: var(--brand-red);
    border: 2px solid var(--brand-red);
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(233, 6, 30, 0.3);
}

.contact-button:hover {
    background: transparent;
    color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(233, 6, 30, 0.4);
}

/* ===== ACTUALITES PAGE STYLES ===== */
.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-card {
    background: var(--brand-white);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.article-image {
    height: 12rem;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.5);
}

.article-content {
    padding: 1.5rem;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--brand-black);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.article-excerpt {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
}

.article-link {
    color: var(--brand-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-link:hover {
    text-decoration: underline;
}

.articles-notice {
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    font-style: italic;
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.pagination-list {
    display: flex;
    gap: .5rem;
    list-style: none;
    padding: 0;
}

.pagination-list a,
.pagination-list span {
    display: inline-block;
    padding: .5rem .8rem;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: .5rem;
    text-decoration: none;
    color: #111;
    font-weight: 600;
}

.pagination-list .current {
    background: #111;
    color: #fff;
    border-color: #111;
}

.pagination-list a:hover {
    background: #f6f6f7;
}