/* Les Glacières - Site Statique */
/* Palette de couleurs fidèle au site original */

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

:root {
    /* Polices */
    --font-title: 'Bebas Neue', 'Arial Black', sans-serif;
    --font-body: 'Roboto Mono', 'Courier New', monospace;
    --font-accent: 'Black Han Sans', sans-serif;

    /* Couleurs principales */
    --bg-cream: #F5F0E8;
    --text-dark: #1a1a1a;
    --text-muted: #666;

    /* Couleurs des 4 colonnes */
    --cours-title: #D4A84B;
    --cours-bg: #FDF6E3;
    --cours-border: #E8C547;

    --events-title: #7B8FA3;
    --events-bg: #C5D8E8;

    --location-title: #E8945A;
    --location-bg: #F5C896;

    --artisans-title: #9B6BB3;
    --artisans-bg: #E8D0F0;
    --artisans-text: #5BC0DE;

    /* Couleurs features */
    --feature-gray: #E8E8E8;
    --feature-green: #B8E6B8;
    --feature-yellow: #FDF6E3;
    --feature-pink: #FFE4E8;

    /* Autres */
    --btn-blue: #A8D4E6;
    --accent-yellow: #F5D742;
    --accent-pink: #E8A0B0;
    --footer-dark: #1a1a1a;
    --white: #ffffff;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-cream);
}

/* Header & Navigation */
header {
    background: var(--bg-cream);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--cours-title);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--bg-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-main {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -230px; /* Superpose sur le bâtiment */
}

.hero-title {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    margin-left: -1rem;
}

.hero-les {
    font-family: var(--font-title);
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    margin-right: -1rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.hero-glacieres {
    font-family: var(--font-title);
    font-size: 5.7rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--text-dark);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-family: 'Marcellus SC', serif;
    font-size: 1.6rem;
    color: #6CA7EB;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hero-map {
    position: absolute;
    right: 5%;
    bottom: 22%;
    opacity: 0.7;
}

.hero-map img {
    max-width: 180px;
    height: auto;
}

/* Illustration du bâtiment */
.hero-building {
    position: relative;
    z-index: 1;
    max-width: 892px;
    width: 90%;
    margin: 0 auto 1rem;
}

.hero-building img {
    width: 100%;
    height: auto;
    opacity: 0.8;
}

/* Formes décoratives */
.deco-shape {
    position: absolute;
    z-index: 0;
}

.deco-cube {
    width: 30px;
    height: 30px;
    background: #f0d0b8;
    opacity: 0.6;
    transform: rotate(15deg);
}

.deco-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e8c5a0;
    background: transparent;
    opacity: 0.5;
}

.deco-triangle {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid #d4a84b;
    opacity: 0.4;
}

.hero-arrow {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-arrow img {
    display: block;
    width: 51px;
    height: 51px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

/* Section Que recherches-tu */
.recherche-section {
    padding: 4rem 5%;
    background: var(--bg-cream);
    text-align: center;
}

.recherche-section .section-title {
    font-family: var(--font-title);
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 400;
}

.recherche-quote {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1rem;
}

.recherche-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.recherche-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recherche-header {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.recherche-header.cours { color: var(--cours-title); }
.recherche-header.events { color: var(--events-title); }
.recherche-header.location { color: var(--location-title); }
.recherche-header.artisans { color: var(--artisans-title); }

.recherche-arrow {
    margin-bottom: 0.5rem;
}

.recherche-arrow img {
    width: 48px;
    height: 48px;
}

.recherche-box {
    border-radius: 25px;
    padding: 1.5rem;
    width: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #000;
}

.recherche-box.cours {
    background: var(--cours-bg);
}

.recherche-box.events {
    background: var(--events-bg);
}

.recherche-box.location {
    background: var(--location-bg);
}

.recherche-box.artisans {
    background: var(--artisans-bg);
}

.recherche-box p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: center;
}

.recherche-box.artisans p {
    color: var(--artisans-text);
    font-weight: 500;
}

.recherche-box ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1rem;
}

.recherche-box ul li {
    margin-bottom: 0.5rem;
}

.recherche-box ul li::before {
    content: "• ";
}

.btn-go {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: var(--btn-blue);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: auto;
    align-self: center;
    border: 2px solid var(--text-dark);
}

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

/* Section Qui sommes-nous */
.qui-section {
    padding: 4rem 5%;
    background: var(--bg-cream);
}

.qui-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    align-items: center;
}

.qui-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qui-header h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 400;
}

.qui-text {
    text-align: left;
}

.qui-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.qui-content {
    max-width: 1200px;
    margin: 0 auto;
}

.qui-stats {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.stat-ateliers {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-number {
    font-size: 5rem;
    font-weight: 300;
    color: #ddd;
    line-height: 1;
}

.stat-ateliers .stat-label {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.stat-collab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-collab .stat-label {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
}

.icon-diamond.yellow {
    width: 20px;
    height: 20px;
    background: var(--cours-title);
    transform: rotate(45deg);
}

/* Features Grid - 4 boîtes colorées + Vidéo */
.features-section {
    padding: 2rem 5%;
    background: var(--bg-cream);
}

.features-with-video {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    align-items: stretch;
}

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

.features-video {
    display: flex;
    align-items: stretch;
    background: #000;
    border-radius: 12px;
}

.features-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.feature-box {
    padding: 1.2rem;
    border-radius: 12px;
}

.feature-box h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.feature-box p {
    font-size: 0.8rem;
    line-height: 1.5;
}

.feature-box.gray {
    background: var(--feature-gray);
}

.feature-box.green {
    background: var(--feature-green);
}

.feature-box.yellow {
    background: var(--feature-yellow);
}

.feature-box.pink {
    background: var(--feature-pink);
}

/* Section Projet */
.project-section {
    padding: 4rem 5%;
    background: var(--bg-cream);
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
}

.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.project-images {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-images img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.project-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-text h2 {
    font-family: var(--font-title);
    font-size: 3rem;
    color: var(--artisans-title);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.project-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.project-text blockquote {
    font-style: italic;
    color: var(--accent-pink);
    font-size: 1.2rem;
    margin: 2rem 0;
}

.project-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.project-bottom .project-deco {
    position: absolute;
    right: 0;
}

.btn-project {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--btn-blue);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid var(--text-dark);
}

.project-deco {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Citation grande */
.quote-section {
    padding: 4rem 5%;
    background: var(--bg-cream);
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.quote-section blockquote {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Section Communauté */
.community-section {
    padding: 4rem 5%;
    background: var(--bg-cream);
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.community-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.community-deco {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.community-text h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--location-title);
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 400;
}

.community-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.community-text .btn {
    display: block;
    width: fit-content;
    margin: 1.5rem auto 0;
}

.community-images {
    display: flex;
    align-items: center;
    justify-content: center;
}

.community-images img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Section témoignages */
.testimonials-section {
    padding: 4rem 5%;
    background: var(--bg-cream);
}

.testimonials-section h2 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    justify-items: center;
}

.testimonial-img {
    max-width: 100%;
    height: auto;
}

.icon-diamond-img {
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.icon-eye-img {
    width: 50px;
    height: 50px;
    vertical-align: middle;
    margin-left: 0.5rem;
}


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

.vibrer-img {
    max-width: 200px;
    height: auto;
}

.vibrer-text strong {
    display: block;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.vibrer-text .non {
    color: var(--accent-pink);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--artisans-title);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-role {
    display: block;
    font-size: 0.9rem;
    color: var(--artisans-title);
    font-style: italic;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================= */
/* PAGE PROJET             */
/* ======================= */

.projet-page {
    padding-top: 80px;
}

/* Hero Projet */
.projet-hero {
    width: 100%;
    padding: 0 5%;
}

.projet-hero img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 0;
}

/* Intro Projet */
.projet-intro {
    padding: 4rem 5%;
}

.projet-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.projet-intro-title h1 {
    font-family: var(--font-title);
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 400;
}

.projet-intro-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.projet-intro-labels {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 0.3;
}

.label-humain, .label-quartier {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
}

.projet-intro-decos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.deco-img {
    width: 200px;
    height: auto;
    opacity: 0.5;
}

.deco-img:first-child {
    transform: translateX(-30px);
}

.deco-img:last-child {
    transform: translateX(30px);
}

.projet-arrow {
    text-align: center;
    margin-top: 2rem;
}

.projet-arrow img {
    width: 50px;
    height: auto;
}

/* Section Histoire */
.histoire-section {
    padding: 4rem 5%;
    border-top: 1px solid #ccc;
}

.section-title-orange {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--location-title);
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.histoire-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.histoire-item h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.histoire-item p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.histoire-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.histoire-img-left {
    position: relative;
}

.coeur-overlay {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border: 3px solid #e74c3c;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(-10deg);
    pointer-events: none;
}

/* Section Benoît */
.benoit-section {
    padding: 4rem 5%;
    border-top: 1px solid #ccc;
}

.benoit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.benoit-images {
    position: relative;
}

.benoit-photo-main {
    width: 60%;
    border-radius: 8px;
}

.benoit-photo-secondary {
    position: absolute;
    bottom: -20px;
    right: 10%;
    width: 50%;
    border-radius: 8px;
}

.benoit-deco {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.5;
}

.label-locomotive, .label-reves {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--events-title);
}

.benoit-text h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.benoit-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Section Team */
.team-section {
    padding: 4rem 5%;
    border-top: 1px solid #ccc;
}

.section-title-blue {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--events-title);
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
}

.team-section .team-grid {
    grid-template-columns: repeat(4, 1fr);
}

.team-section .team-photo {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 0;
    border: none;
    margin-bottom: 1rem;
}

.team-section .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.team-deco {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: 20px;
    left: 20px;
}

.team-deco.green {
    background: #8BC34A;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.team-deco.cross {
    background: #333;
    clip-path: polygon(35% 0%, 65% 0%, 65% 35%, 100% 35%, 100% 65%, 65% 65%, 65% 100%, 35% 100%, 35% 65%, 0% 65%, 0% 35%, 35% 35%);
}

.team-deco.orange {
    background: var(--location-title);
    width: 8px;
    height: 60px;
    clip-path: none;
}

.team-deco.yellow {
    background: #F5D742;
    border-radius: 50%;
}

.team-name.blue {
    color: var(--events-title);
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.team-section .team-role {
    color: var(--text-dark);
    font-style: normal;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-section .team-member p {
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Section Quartier */
.quartier-section {
    padding: 4rem 5%;
    border-top: 1px solid #ccc;
}

.quartier-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quartier-title {
    font-family: var(--font-title);
    font-size: 2rem;
    color: #F8BBD9;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.quartier-title span {
    display: block;
    font-size: 1.5rem;
}

.quartier-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.quartier-images {
    position: relative;
}

.quartier-img-old {
    width: 70%;
    border-radius: 8px;
}

.quartier-img-new {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 60%;
    border-radius: 8px;
}

/* Section Photos */
.photos-section {
    padding: 4rem 5%;
    border-top: 1px solid #ccc;
}

.section-title-green {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: #8BC34A;
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
}

.photos-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-item {
    overflow: hidden;
    border-radius: 12px;
}

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

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-item.large {
    grid-column: span 1;
    grid-row: span 2;
}

.photo-item.tall {
    grid-row: span 2;
}

/* Responsive Projet */
@media (max-width: 992px) {
    .projet-intro-grid,
    .benoit-content,
    .quartier-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .team-section .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 576px) {
    .projet-intro-title h1 {
        font-size: 2.5rem;
    }

    .team-section .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background: var(--footer-dark);
    color: var(--white);
    padding: 3rem 5%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    position: relative;
    min-height: 200px;
}

.footer-logo {
    position: absolute;
    right: 0;
    bottom: 0;
}

.footer-logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section a {
    color: var(--white);
    text-decoration: underline;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-section p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icons a {
    display: inline-flex;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.7;
}

.social-icons svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Sections génériques */
section {
    padding: 4rem 5%;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 400;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--btn-blue);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid var(--text-dark);
    transition: all 0.3s;
}

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

/* Éléments décoratifs */
.deco-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.deco-cube {
    width: 50px;
    height: 50px;
    background: var(--btn-blue);
    opacity: 0.6;
    transform: rotate(15deg) skewX(-5deg);
    border-radius: 3px;
}

.deco-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent-yellow);
    opacity: 0.7;
}

.deco-triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid var(--accent-pink);
    opacity: 0.5;
    transform: rotate(30deg);
}

.icon-diamond {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--accent-yellow);
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .recherche-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qui-content,
    .project-content,
    .community-content {
        grid-template-columns: 1fr;
    }

    .features-with-video {
        grid-template-columns: 1fr;
    }

    .features-video {
        max-height: 400px;
    }

    .features-grid {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .recherche-section .section-title {
        font-size: 1.8rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .community-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.2rem;
    }

    .quote-section blockquote {
        font-size: 1.1rem;
    }
}

/* ==========================================
   PAGE ARTISANS
   ========================================== */

.artisans-page {
    padding-top: 80px;
}

.artisans-types {
    font-style: italic;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Section Vous cherchez un artisan */
.artisans-cherchez {
    padding: 4rem 5%;
    border-top: 1px solid #ccc;
}

.section-title-yellow {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title-yellow::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--accent-yellow);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.artisans-map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.artisans-zones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.zone-card {
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid currentColor;
}

.zone-card h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.zone-card ul {
    list-style: none;
    font-size: 0.9rem;
    line-height: 1.8;
}

.zone-card .zone-empty {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.8;
}

/* Couleurs des zones */
.zone-orange {
    background: #FFE4B5;
    border-color: #FFD280;
    color: var(--text-dark);
}

.zone-pink {
    background: #FFD9E8;
    border-color: #FFB6D0;
    color: var(--text-dark);
}

.zone-blue {
    background: #B8D4E8;
    border-color: #8FC4E8;
    color: var(--text-dark);
}

.zone-green {
    background: #90EE90;
    border-color: #7CCD7C;
    color: var(--text-dark);
}

.zone-green-light {
    background: #98FB98;
    border-color: #7CCD7C;
    color: var(--text-dark);
}

.zone-purple {
    background: #DDA0DD;
    border-color: #BA55D3;
    color: var(--text-dark);
}

.zone-yellow {
    background: #FFFACD;
    border-color: #F0E68C;
    color: var(--text-dark);
}

.zone-red {
    background: #FF6B6B;
    border-color: #FF4444;
    color: white;
}

.artisans-map {
    position: sticky;
    top: 100px;
}

.artisans-map img {
    width: 100%;
    height: auto;
}

/* Section Les Glaçons */
.glacons-section {
    padding: 4rem 5%;
    border-top: 1px solid #ccc;
}

.glacons-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.glacons-icon {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
}

.glacons-header h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    letter-spacing: 0.2em;
}

.glacons-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.category-tag {
    padding: 0.5rem 1rem;
    border: 2px solid var(--text-dark);
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.category-tag:hover {
    background: var(--text-dark);
    color: var(--white);
}

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

.glacon-card {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

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

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

/* Section Partenaires */
.partenaires-section {
    padding: 4rem 5%;
    border-top: 1px solid #ccc;
}

.partenaires-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.4;
}

.partenaires-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partenaire-logo {
    padding: 1rem 2rem;
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: var(--text-muted);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partenaire-logo:hover {
    opacity: 1;
}

/* Responsive Artisans */
@media (max-width: 992px) {
    .artisans-map-container {
        grid-template-columns: 1fr;
    }

    .artisans-map {
        position: static;
        max-width: 400px;
        margin: 2rem auto 0;
    }
}

@media (max-width: 768px) {
    .artisans-zones {
        grid-template-columns: 1fr;
    }

    .glacons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partenaires-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .glacons-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   ATELIERS A LOUER PAGE
   =========================================== */

/* Types d'espaces */
.espaces-types {
    padding: 4rem 5%;
    background: var(--bg-cream);
}

.espaces-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.espace-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.espace-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.espace-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.espace-info h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.espace-info p,
.espace-info ul {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    flex: 1;
}

.espace-info ul {
    list-style: disc;
    padding-left: 1.2rem;
}

.espace-info ul li {
    margin-bottom: 0.3rem;
}

.btn-demande {
    display: inline-block;
    padding: 0.7rem 1rem;
    background: #7BA3C4;
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.8rem;
    text-align: center;
    transition: opacity 0.3s;
}

.btn-demande:hover {
    opacity: 0.8;
}

/* Couleurs des cartes */
.espace-violet .espace-info {
    background: #E8D0F0;
}

.espace-orange .espace-info {
    background: #F5C896;
}

.espace-jaune .espace-info {
    background: #FDF6A0;
}

.espace-rose .espace-info {
    background: #FFE4E8;
}

/* Avantages section */
.ateliers-avantages {
    padding: 4rem 5%;
    background: var(--bg-cream);
    border-top: 1px solid #ddd;
}

.avantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.avantages-left h2,
.avantages-right h2 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.avantages-left p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.avantages-right ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.avantages-right li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

/* Galerie ateliers */
.ateliers-galerie {
    padding: 4rem 5%;
    background: var(--bg-cream);
}

.galerie-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    text-align: center;
    color: #5BC0DE;
    margin-bottom: 0.5rem;
}

.galerie-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

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

.atelier-img {
    border-radius: 15px;
    overflow: hidden;
}

.atelier-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* Responsive Ateliers */
@media (max-width: 992px) {
    .espaces-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .espaces-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .ateliers-galerie-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .galerie-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .ateliers-galerie-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   GALERIE PAGE - Masonry Layout
   =================================== */

.galerie-page {
    background: var(--bg-cream);
}

.galerie-masonry-section {
    padding: 4rem 5%;
    background: var(--bg-cream);
}

.galerie-masonry {
    column-count: 3;
    column-gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.galerie-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
}

.galerie-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.galerie-item:hover img {
    transform: scale(1.05);
}

/* Responsive Galerie Masonry */
@media (max-width: 992px) {
    .galerie-masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .galerie-masonry {
        column-count: 1;
        max-width: 400px;
    }
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-page {
    background: var(--bg-cream);
}

/* 3 Action cards (Go buttons) */
.contact-actions {
    padding: 4rem 5%;
    background: var(--bg-cream);
}

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

.action-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.action-card h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-go {
    display: inline-block;
    background: #5BC0DE;
    color: #fff;
    padding: 0.8rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-go:hover {
    background: #2980b9;
}

/* Contact info + Transport section */
.contact-info-section {
    padding: 4rem 5%;
    background: #fff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-details h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-details p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-social a {
    color: var(--primary-color);
    transition: color 0.3s;
}

.contact-social a:hover {
    color: #5BC0DE;
}

/* Transport info */
.transport-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.transport-item h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #5BC0DE;
}

.transport-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Map section */
.contact-map-section {
    width: 100%;
}

.contact-map-section iframe {
    width: 100%;
    height: 350px;
    display: block;
}

/* Contact form section */
.contact-form-section {
    padding: 4rem 5%;
    background: var(--bg-cream);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-container h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.form-warning {
    background: #FFF3CD;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

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

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group label {
    position: absolute;
    left: -9999px;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #5BC0DE;
}

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

.btn-submit {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #5BC0DE;
}

/* Responsive Contact */
@media (max-width: 992px) {
    .contact-actions-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

    .transport-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .action-card h3 {
        min-height: auto;
    }
}

/* ===================================
   LEGAL PAGES (Confidentialité, Mentions légales)
   =================================== */

.legal-page {
    background: var(--bg-cream);
    padding-top: 100px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.legal-content h1 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.legal-content h2 {
    font-family: var(--font-title);
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #5BC0DE;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #5BC0DE;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ===================================
   EVENTS PAGE
   =================================== */

.events-hero {
    background: var(--events-bg);
    padding: 1rem;
}

.events-banner {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
}

.events-intro {
    background: var(--bg-cream);
    padding: 4rem 5%;
}

.events-intro-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.events-intro-content h1 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--text-dark);
    letter-spacing: 2px;
}

.gla-gla-logo {
    width: 125px;
    height: auto;
    object-fit: contain;
}

.events-intro-content p {
    flex: 1;
    min-width: 300px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.events-intro-content p strong {
    color: var(--text-dark);
}

.events-list {
    background: var(--bg-cream);
    padding: 2rem 5% 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.event-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.event-card-content h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Responsive Events */
@media (max-width: 768px) {
    .events-intro-content {
        flex-direction: column;
        text-align: center;
    }

    .events-intro-content h1 {
        font-size: 2rem;
    }
}

/* ===================================
   COURS PAGE
   =================================== */

.cours-hero {
    background: #FDF6E3;
    padding: 1rem;
}

.cours-banner {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
}

.cours-intro {
    background: var(--bg-cream);
    padding: 4rem 5%;
}

.cours-intro-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.cours-intro-content h1 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--text-dark);
    letter-spacing: 1px;
    flex: 1;
    min-width: 300px;
}

.cours-intro-text {
    flex: 1;
}

.cours-intro-text p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.cours-intro-text .highlight {
    color: var(--text-dark);
    font-weight: 500;
}

.cours-logo-section {
    background: var(--bg-cream);
    padding: 2rem 5%;
    text-align: center;
}

.gla-gla-logo-centered {
    width: 150px;
    height: auto;
}

.cours-categories-section {
    background: var(--bg-cream);
    padding: 2rem 5%;
}

.cours-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cours-category {
    background: var(--events-bg);
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
    border: 1px solid transparent;
}

.cours-category:hover {
    background: #a8c8d8;
}

.cours-grid-section {
    background: var(--bg-cream);
    padding: 2rem 5% 4rem;
}

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

.cours-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.cours-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cours-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.cours-card-overlay h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.cours-card-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cours-card-light .cours-card-overlay {
    background: linear-gradient(transparent 30%, rgba(255,248,220,0.95));
    color: var(--text-dark);
}

.btn-cours {
    display: inline-block;
    background: #5BC0DE;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    margin-top: 0.8rem;
    transition: background 0.3s;
}

.btn-cours:hover {
    background: #2980b9;
}

/* Responsive Cours */
@media (max-width: 992px) {
    .cours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cours-intro-content {
        flex-direction: column;
    }

    .cours-intro-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .cours-grid {
        grid-template-columns: 1fr;
    }

    .cours-categories {
        gap: 0.5rem;
    }

    .cours-category {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
}
