/* Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #B42401;
    --white: #FFFFFF;
    --black: #000000;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

/* Accessibility - Focus visible */
*:focus-visible {
    outline: 3px solid var(--primary-red);
    outline-offset: 3px;
}

/* Skip to main content link for screen readers */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1rem;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
    background: var(--primary-red);
    padding: 1rem 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Desktop navigation - centré */
@media (min-width: 769px) {
    .nav-container {
        max-width: 100%;
        padding: 0 3rem;
    }

    .nav-menu {
        margin: 0 auto;
    }
}

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

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 0;
}

.nav-logo img {
    height: 50px;
    width: auto;
    opacity: 0;
    transition: all 0.4s ease;
}

.header.scrolled .nav-logo img {
    height: 45px;
    opacity: 1;
}

.nav-logo:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

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

.nav-menu a {
    text-decoration: none;
    color: white;
    font-family: "harman-sans", sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: var(--black);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: white;
    transition: width 0.3s ease;
}

.header.scrolled .nav-menu a::after {
    background: var(--black);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Nav link active state */
.nav-menu a.active::after {
    width: 100%;
    background: var(--primary-red);
}

.header.scrolled .nav-menu a.active::after {
    background: var(--primary-red);
}

/* Espace membres link styling - less prominent */
.nav-member-link {
    opacity: 0.7;
    font-size: 0.95rem !important;
    font-weight: 300 !important;
}

.nav-member-link:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}

/* Video sound toggle - REMOVED TEMPORARILY */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(180, 36, 1, 0.75) 0%, rgba(139, 26, 0, 0.75) 100%);
    z-index: 1;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    text-align: center;
}

.hero h1 {
    font-family: "harman-sans", sans-serif;
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 20px rgba(0,0,0,0.5);
    letter-spacing: -0.02em;
    line-height: 0.95;
    animation: slideInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
    text-transform: uppercase;
}

.hero-logo {
    width: clamp(180px, 18vw, 280px);
    height: auto;
    margin: 0 auto 2rem;
    filter: drop-shadow(3px 3px 20px rgba(0,0,0,0.5));
    animation: slideInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-subtitle {
    font-family: "harman-sans", sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    color: white;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    animation: slideInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: slideInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-red);
    padding: 1.5rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: "harman-sans", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: slideInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    background: var(--black);
    color: white;
}

/* Hero CTA - More prominent and specific */
.hero-cta {
    font-size: 1.4rem;
    padding: 1.75rem 4rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    animation-delay: 0.8s;
}

.hero-cta:hover {
    box-shadow: 0 25px 70px rgba(0,0,0,0.7);
}

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

/* Sections */
.section {
    padding: 8rem 0;
    position: relative;
    scroll-margin-top: 60px; /* Offset for fixed header */
}

.section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(180, 36, 1, 0.2) 50%, transparent 100%);
}

.section:last-of-type::before {
    display: none;
}

/* Section separator icon */
.section-separator {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-red);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-separator i {
    width: 20px;
    height: 20px;
}

.section:last-of-type .section-separator {
    display: none;
}

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

.section-title {
    font-family: "harman-sans", sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    text-align: center;
    color: var(--gray-medium);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-weight: 700;
}

/* About Section */
.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-highlights {
    background: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(180, 36, 1, 0.05);
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.highlight-icon svg,
.highlight-icon i {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-icon svg,
.highlight-item:hover .highlight-icon i {
    transform: scale(1.1) rotate(5deg);
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 3rem 0;
    border-top: 2px solid rgba(180, 36, 1, 0.1);
    border-bottom: 2px solid rgba(180, 36, 1, 0.1);
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(180, 36, 1, 0.02);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(180, 36, 1, 0.05);
    transform: translateY(-5px);
}

.stat-number {
    font-family: "harman-sans", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-medium);
    font-weight: 600;
    text-transform: lowercase;
}

/* About Accordions */
.about-accordions {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accordion-item {
    background: white;
    border-radius: 5px;
    border-left: 4px solid var(--primary-red);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(180, 36, 1, 0.02);
}

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.accordion-header-content i {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.accordion-header-content h3 {
    font-family: "harman-sans", sans-serif;
    font-size: 1.6rem;
    color: var(--primary-red);
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}

.accordion-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-header[aria-expanded="true"] + .accordion-content {
    max-height: 1000px;
}

.accordion-content p {
    padding: 0 2.5rem 2rem 2.5rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.accordion-content p:last-child {
    margin-bottom: 0;
    padding-bottom: 2rem;
}

.info-highlight {
    font-family: "harman-sans", sans-serif;
    font-size: 1.3rem;
    color: var(--primary-red);
    padding: 0;
    background: rgba(180, 36, 1, 0.05);
    border-radius: 5px;
    text-align: center;
    margin: 0 2.5rem 2rem 2.5rem !important;
    line-height: 1.4;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-highlight strong {
    margin: 0;
    padding: 0;
}

/* Services Section - Key Section */
.services {
    background: var(--gray-light);
    box-shadow: inset 0 5px 20px rgba(0,0,0,0.03), inset 0 -5px 20px rgba(0,0,0,0.03);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-icon svg,
.service-icon i {
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon svg,
.service-card:hover .service-icon i {
    transform: scale(1.15) rotate(-5deg);
}

.service-card h3 {
    font-family: "harman-sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--primary-red);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(180, 36, 1, 0.2);
}

.testimonials-title {
    font-family: "harman-sans", sans-serif;
    font-size: 2.5rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: rgba(180, 36, 1, 0.05);
    padding: 2.5rem;
    border-radius: 5px;
    border-left: 4px solid var(--primary-red);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: rgba(180, 36, 1, 0.08);
}

.testimonial-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
}

.testimonial-icon i {
    width: 100%;
    height: 100%;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: var(--primary-red);
    font-family: "harman-sans", sans-serif;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* Ateliers Section */
.ateliers {
    background: white;
}

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

.ateliers-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.ateliers-intro {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: white;
    padding: 2.5rem;
    border-radius: 5px;
    border-left: 5px solid var(--primary-red);
}

.ateliers-icon {
    flex-shrink: 0;
}

.ateliers-icon i {
    width: 60px;
    height: 60px;
}

.ateliers-info h3 {
    font-family: "harman-sans", sans-serif;
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ateliers-info p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.ateliers-location {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-top: 1rem;
}

.ateliers-description h3 {
    font-family: "harman-sans", sans-serif;
    font-size: 1.6rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.ateliers-description p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Ateliers Trial Box */
.ateliers-trial-box {
    background: linear-gradient(135deg, var(--primary-red), #8B1A00);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(180, 36, 1, 0.3);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.ateliers-trial-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
}

.ateliers-trial {
    padding: 3rem 2.5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.trial-badge {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.trial-badge i {
    width: 45px;
    height: 45px;
}

.ateliers-trial h3 {
    font-family: "harman-sans", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.ateliers-trial p {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.ateliers-info-cta {
    padding: 0 2.5rem 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ateliers-info-cta p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.ateliers-info-cta .ateliers-cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-red);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: "harman-sans", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.ateliers-info-cta .ateliers-cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Ateliers Accordions Wrapper */
.ateliers-accordions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.ateliers-accordion-item {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(180, 36, 1, 0.1);
    transition: all 0.3s ease;
}

.ateliers-accordion-item:hover {
    border-color: rgba(180, 36, 1, 0.3);
    box-shadow: 0 8px 30px rgba(180, 36, 1, 0.15);
}

.ateliers-accordion-header {
    width: 100%;
    background: rgba(180, 36, 1, 0.05);
    border: none;
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ateliers-accordion-header:hover {
    background: rgba(180, 36, 1, 0.1);
}

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.accordion-header-content i {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.ateliers-accordion-header h3 {
    font-family: "harman-sans", sans-serif;
    font-size: 1.6rem;
    color: var(--primary-red);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
}

.accordion-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.ateliers-accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.ateliers-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ateliers-accordion-header[aria-expanded="true"] + .ateliers-accordion-content {
    max-height: 1000px;
}

.ateliers-accordion-content .ateliers-highlights {
    padding: 2rem 2.5rem;
}

.ateliers-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ateliers-highlight-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: rgba(180, 36, 1, 0.05);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.ateliers-highlight-item:hover {
    background: rgba(180, 36, 1, 0.1);
    transform: translateX(5px);
}

.ateliers-highlight-item i {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.ateliers-highlight-item span {
    font-size: 1rem;
    line-height: 1.5;
}

.ateliers-accordion-content ul {
    list-style: none;
    padding: 2rem 2.5rem;
    margin: 0;
}

.ateliers-accordion-content li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(180, 36, 1, 0.1);
}

.ateliers-accordion-content li:last-child {
    border-bottom: none;
}

.ateliers-accordion-content li::before {
    content: '•';
    color: var(--primary-red);
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: 0.6rem;
}

.ateliers-details {
    background: white;
    padding: 2.5rem;
    border-radius: 5px;
}

.ateliers-details h4 {
    font-family: "harman-sans", sans-serif;
    font-size: 1.4rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
}

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

.ateliers-details li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(180, 36, 1, 0.1);
}

.ateliers-details li:last-child {
    border-bottom: none;
}

.ateliers-details li::before {
    content: '•';
    color: var(--primary-red);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.ateliers-cta-box {
    background: white;
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    border: 2px solid var(--primary-red);
}

.ateliers-cta-box p {
    color: var(--black);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.ateliers-cta-button {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: "harman-sans", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.ateliers-cta-button:hover {
    background: #8B1A00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(180, 36, 1, 0.4);
}

/* Video Section */
.video-section {
    background: var(--gray-light);
    padding: 5rem 0;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), #8B1A00);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.video-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.video-placeholder p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: #1a0600;
}

.gallery .section-title {
    color: white;
}

.gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--primary-red);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(180, 36, 1, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-family: "harman-sans", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    z-index: 2;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-title {
    opacity: 0;
}

.gallery-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.gallery-placeholder i {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.gallery-placeholder p {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.gallery-placeholder-1 {
    background: var(--primary-red);
}

.gallery-placeholder-2 {
    background: linear-gradient(45deg, var(--primary-red), #8B1A00);
}

.gallery-placeholder-3 {
    background: radial-gradient(circle, var(--primary-red), #8B1A00);
}

.gallery-placeholder-4 {
    background: linear-gradient(135deg, #8B1A00, var(--primary-red));
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(180, 36, 1, 0.85), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
    padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: white;
}

.gallery-overlay-title {
    font-family: "harman-sans", sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1;
}

.gallery-overlay-text {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.95;
}

.gallery-links {
    text-align: center;
    margin-top: 3rem;
}

.gallery-links-text {
    color: white;
    margin-bottom: 2rem;
}

.gallery-links-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.gallery-link {
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.gallery-link i {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.gallery-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.gallery-link:hover i {
    transform: scale(1.15);
}

/* Events Section */
.events {
    background: var(--primary-red);
    color: white;
}

.events .section-title {
    color: white;
}

.events .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Events Accordions */
.events-accordions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.events-year-group {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.events-year-header {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.events-year-header:hover {
    background: rgba(0, 0, 0, 0.4);
}

.events-year-header h3 {
    font-family: "harman-sans", sans-serif;
    font-size: 2rem;
    color: white;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.events-year-header .accordion-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.events-year-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.events-year-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.events-year-header[aria-expanded="true"] + .events-year-content {
    max-height: 3000px;
}

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

.event-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.event-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255,255,255,0.4);
    transform: translateX(5px);
}

.event-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-icon i {
    width: 20px;
    height: 20px;
    display: block;
    line-height: 1;
}

.event-icon svg {
    width: 20px;
    height: 20px;
}

.event-item span {
    font-size: 1rem;
    line-height: 1.4;
    color: white;
}

.event-item-hidden {
    display: none !important;
}

.events-show-all {
    width: calc(100% - 4rem);
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    margin: 0 2rem 2rem;
    border-radius: 5px;
    font-family: "harman-sans", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

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

.events-show-all i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.events-show-all[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Contact Section - Key Section */
.contact {
    background: var(--gray-light);
    box-shadow: inset 0 5px 20px rgba(0,0,0,0.03), inset 0 -5px 20px rgba(0,0,0,0.03);
}

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

.contact-cta {
    background:
        radial-gradient(circle at 20% 50%, rgba(180, 36, 1, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(180, 36, 1, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, rgba(180, 36, 1, 0.05) 0%, rgba(180, 36, 1, 0.1) 100%);
    padding: 4rem 3rem;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 6rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-red);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(180, 36, 1, 0.02) 10px, rgba(180, 36, 1, 0.02) 20px);
    z-index: 0;
    pointer-events: none;
}

.contact-cta-content {
    position: relative;
    z-index: 1;
}

.contact-cta-title {
    font-family: "harman-sans", sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
}

.contact-cta-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-cta-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
}

.contact-cta-icons i {
    width: 70px;
    height: 70px;
    animation: bounce 2s ease-in-out infinite;
}

.contact-cta-icons i:nth-child(2) {
    animation-delay: 0.3s;
}

.contact-cta-icons i:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

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

.contact-text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Contact Info */
.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    text-align: center;
}

.contact-info-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(180, 36, 1, 0.1);
}

.contact-logo {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
}

.contact-info-header h3 {
    font-family: "harman-sans", sans-serif;
    font-size: 2rem;
    color: var(--primary-red);
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-detail:hover {
    transform: translateX(5px);
}

.contact-detail i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-detail a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--primary-red);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: left;
}

.contact-form h3 {
    font-family: "harman-sans", sans-serif;
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--black);
}

.form-group label span {
    color: var(--primary-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-red);
    outline: none;
    box-shadow: 0 0 0 3px rgba(180, 36, 1, 0.1);
}

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

.submit-button {
    width: 100%;
    background: var(--primary-red);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: "harman-sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.submit-button:hover {
    background: #8B1A00;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(180, 36, 1, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
    text-align: center;
    font-weight: 600;
}

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

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: white;
}

.social-link svg,
.social-link i {
    width: 40px;
    height: 40px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 15px 40px rgba(180, 36, 1, 0.4);
}

.social-link:hover svg,
.social-link:hover i {
    transform: scale(1.1) rotate(-5deg);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-red);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(180, 36, 1, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(180, 36, 1, 0.6);
    background: #8B1A00;
}

.back-to-top i {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background: var(--black);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-red);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: transparent;
    border: none;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

.header.scrolled .mobile-menu-toggle span {
    background: white;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .nav-wrapper {
        grid-column: 2;
    }

    .mobile-menu-toggle {
        grid-column: 3;
        justify-self: end;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero Mobile/Tablette */
    .hero {
        padding-bottom: 75%; /* Ratio adapté aux tablettes */
        min-height: 80vh;
    }

    .hero-content {
        padding: 0 2rem;
        max-width: 90%;
        top: 50%;
        text-align: center;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-logo {
        width: clamp(160px, 25vw, 240px);
        margin: 0 auto 1.5rem;
    }

    .hero-subtitle {
        font-size: clamp(1.3rem, 3.5vw, 1.8rem);
        margin-bottom: 1.5rem;
        letter-spacing: 0.01em;
        line-height: 1.3;
        font-weight: 400;
    }

    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        white-space: nowrap;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Navigation mobile */
    .header {
        background: transparent;
    }

    .header.scrolled {
        background: var(--primary-red);
    }

    .nav-menu {
        background: var(--primary-red);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        color: white;
        padding: 0.75rem 0;
        display: block;
        text-align: center;
        width: 100%;
    }

    .nav-menu a:hover {
        color: var(--black);
    }

    /* Logo masqué sur hero mobile, visible au scroll */
    .nav-logo img {
        opacity: 0;
        height: 60px;
    }

    .header.scrolled .nav-logo img {
        opacity: 1;
    }

    .nav-wrapper {
        width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-accordions {
        gap: 1.5rem;
    }

    .stats-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .stat-label {
        font-size: 1rem;
    }

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

    .ateliers-content {
        gap: 2rem;
    }

    .ateliers-main {
        gap: 2rem;
    }

    .ateliers-intro {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .ateliers-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ateliers-highlight-item i {
        width: 32px;
        height: 32px;
    }

    .ateliers-trial {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .ateliers-info-cta {
        padding: 0 1.5rem 2.5rem;
    }

    .ateliers-accordion-header {
        padding: 1.5rem 1.5rem;
    }

    .accordion-header-content {
        gap: 1rem;
    }

    .accordion-header-content i {
        width: 28px;
        height: 28px;
    }

    .ateliers-accordion-header h3 {
        font-size: 1.2rem;
    }

    .ateliers-accordion-content .ateliers-highlights,
    .ateliers-accordion-content ul {
        padding: 1.5rem 1.5rem;
    }

    .contact-cta {
        padding: 3rem 2rem;
        margin-bottom: 4rem;
    }

    /* Video sound toggle - REMOVED */

    .social-links {
        flex-direction: row;
        gap: 1.5rem;
    }

    .gallery-links-buttons {
        flex-direction: column;
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-title {
        padding: 1rem;
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }

    .gallery-overlay-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .gallery-overlay-text {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    /* Events mobile - mode liste compact */
    .events-grid {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .event-item {
        padding: 1rem 1.25rem;
        border-radius: 5px;
        display: flex;
        align-items: center;
        gap: 1rem;
        background: linear-gradient(90deg, rgba(180, 36, 1, 0.95) 0%, rgba(139, 26, 0, 0.95) 100%);
    }

    .event-item::before {
        display: none;
    }

    .event-item:hover {
        transform: translateX(8px);
        box-shadow: 0 5px 20px rgba(180, 36, 1, 0.4);
    }

    .event-year {
        font-size: 0.75rem;
        margin-bottom: 0;
        min-width: 90px;
        flex-shrink: 0;
        border-right: 2px solid rgba(255,255,255,0.3);
        padding-right: 1rem;
        text-align: center;
    }

    .event-name {
        font-size: 0.95rem;
        line-height: 1.3;
    }

    /* Formulaire mobile - 1 colonne */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 1.5rem;
    }

    /* Scroll offset mobile */
    .section {
        scroll-margin-top: 60px; /* Offset for mobile header */
    }
}

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

/* Petits écrans portrait (iPhone, smartphones) */
@media (max-width: 480px) {
    .hero {
        padding-bottom: 140%;
        min-height: 100vh;
    }

    .hero-content {
        padding: 0 1.25rem;
        max-width: 100%;
        width: calc(100% - 2.5rem);
        text-align: center;
        top: 45%;
    }

    .hero-logo {
        width: 150px;
        margin: 0 auto 2rem;
    }

    .hero-subtitle {
        font-size: clamp(1.8rem, 7.5vw, 2.2rem);
        margin-bottom: 2rem;
        letter-spacing: 0.01em;
        line-height: 1.2;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.05rem;
        white-space: nowrap;
    }
}

/* Landscape mobile et petites tablettes */
@media (max-width: 768px) and (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding-bottom: 0;
        min-height: 100vh;
        height: auto;
    }

    .hero-content {
        position: absolute;
        top: 50%;
        padding: 0 3rem;
        max-width: 60%;
    }

    .hero-logo {
        width: 120px;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 3rem;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   MODAL MENTIONS LÉGALES
   ========================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background-color: var(--white);
    margin: 2rem;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.modal-header {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.modal-header h2 {
    font-family: 'harman-sans', 'Nunito', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.modal-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.modal-close:hover {
    transform: scale(1.1);
}

.modal-close i {
    width: 28px;
    height: 28px;
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    line-height: 1.7;
}

.modal-body h3 {
    font-family: 'harman-sans', 'Nunito', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.modal-body h4 {
    font-family: 'harman-sans', 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.modal-body p {
    margin-bottom: 1rem;
    color: var(--black);
}

.modal-body ul {
    margin: 1rem 0 1.5rem 1.5rem;
    padding: 0;
}

.modal-body li {
    margin-bottom: 0.5rem;
    color: var(--black);
}

.modal-body a {
    color: var(--primary-red);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.modal-body a:hover {
    opacity: 0.7;
}

.modal-body strong {
    font-weight: 700;
    color: var(--black);
}

.mentions-update {
    font-style: italic;
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.mentions-link {
    color: var(--white);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.mentions-link:hover {
    opacity: 0.7;
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 1rem;
        max-height: 95vh;
        border-radius: 6px;
    }

    .modal-header {
        padding: 1.25rem 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-close i {
        width: 24px;
        height: 24px;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-body h3 {
        font-size: 1.2rem;
    }

    .modal-body h4 {
        font-size: 1rem;
    }
}

/* ==========================================
   COOKIE CONSENT BANNER
   ========================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cookie-banner-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-light);
    border-radius: 50%;
}

.cookie-banner-icon i {
    width: 28px;
    height: 28px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    font-family: 'harman-sans', 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-medium);
}

.cookie-policy-link {
    color: var(--primary-red);
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.cookie-policy-link:hover {
    opacity: 0.7;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: var(--primary-red);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background-color: #8a1a01;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(180, 36, 1, 0.3);
}

.cookie-btn-reject {
    background-color: transparent;
    color: var(--gray-medium);
    border: 2px solid var(--gray-medium);
}

.cookie-btn-reject:hover {
    background-color: var(--gray-light);
    border-color: var(--black);
    color: var(--black);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-banner-icon {
        width: 40px;
        height: 40px;
    }

    .cookie-banner-icon i {
        width: 24px;
        height: 24px;
    }

    .cookie-banner-text h3 {
        font-size: 1.1rem;
    }

    .cookie-banner-text p {
        font-size: 0.9rem;
    }

    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.875rem 1rem;
    }
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    width: 100%;
    height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 2rem 0;
    box-sizing: border-box;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: calc(100vh - 280px);
    width: auto;
    height: auto;
    min-height: 200px;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    flex-shrink: 1;
    flex-grow: 0;
    margin-bottom: 1rem;
}

.gallery-modal-counter {
    color: white;
    font-family: "harman-sans", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    flex-shrink: 0;
    margin: 0.5rem 0 1rem 0;
}

.gallery-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.gallery-modal-close i {
    width: 30px;
    height: 30px;
}

.gallery-modal-prev,
.gallery-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-modal-prev {
    left: 2rem;
}

.gallery-modal-next {
    right: 2rem;
}

.gallery-modal-prev i,
.gallery-modal-next i {
    width: 35px;
    height: 35px;
}

/* Gallery Thumbnails */
.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    max-width: 100%;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    flex-shrink: 0;
    height: 100px;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.gallery-thumbnails::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
    width: 0;
    height: 0;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    display: none;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    display: none;
}

.gallery-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.gallery-thumbnail:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.5);
}

.gallery-thumbnail.active {
    opacity: 1;
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(180, 36, 1, 0.5);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .gallery-modal-close {
        top: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    .gallery-modal-close i {
        width: 25px;
        height: 25px;
    }

    .gallery-modal-prev,
    .gallery-modal-next {
        width: 50px;
        height: 50px;
    }

    .gallery-modal-prev {
        left: 1rem;
    }

    .gallery-modal-next {
        right: 1rem;
    }

    .gallery-modal-prev i,
    .gallery-modal-next i {
        width: 30px;
        height: 30px;
    }

    .gallery-modal-content {
        height: calc(100vh - 100px);
        max-height: calc(100vh - 100px);
        padding: 1rem 0;
    }

    .gallery-modal-image {
        max-height: calc(100vh - 220px);
        min-height: 150px;
        margin-bottom: 0.5rem;
    }

    .gallery-modal-counter {
        margin: 0.5rem 0;
    }

    .gallery-thumbnails {
        height: 70px;
        padding: 0.5rem 0;
    }
}
