/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    background-image: none;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

/* Header / Navigation */
.header {
    background-color: #fff;
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

/* Sur mobile, réduire le z-index du header pour qu'il soit en dessous de la sidebar */
@media (max-width: 768px) {
    .header {
        z-index: 100;
    }
    
    .navbar {
        z-index: 100;
    }
    
    .mobile-menu-toggle {
        z-index: 10000;
    }
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 0;
}

.header .navbar {
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    flex-wrap: wrap;
    gap: 40px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
    border-radius: 2px;
}

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

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

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

.nav-left, .nav-right {
    display: flex;
    gap: 25px;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.nav-left {
    order: 1;
    justify-content: flex-end;
}

.nav-right {
    order: 3;
    justify-content: flex-start;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
    white-space: nowrap;
    padding: 5px 0;
}

.navbar a:hover {
    color: #d10000;
}

.navbar .dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar .dropdown span {
    font-size: 10px;
}

.logo {
    flex: 1;
    z-index: 1001;
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo a {
    display: block;
    text-decoration: none;
    margin: 0 auto;
}

.logo-image {
    max-height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Section Contact Banner (après header) */
.section-contact-banner {
    background-color: #f5f5f5;
    padding: 20px 0;
    margin-top: 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.section-contact-banner .container {
    text-align: center;
}

.contact-banner-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #d10000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-banner-text {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin: 0 auto 10px auto;
    line-height: 1.6;
    max-width: 100%;
    display: block;
}

.contact-banner-info {
    text-align: center;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin: 0 auto;
    max-width: 100%;
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: block;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    background-attachment: scroll;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.5;
    padding: 0 10px;
    word-wrap: break-word;
}

/* Header spécifique pour la page Consulting */
.consulting-hero {
    background: linear-gradient(135deg, #d10000 0%, #000000 100%);
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: block;
    width: 100%;
    min-height: auto;
}

.consulting-hero .hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.consulting-hero .hero-subtitle {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0.95;
}

.blog-hero {
    background: linear-gradient(135deg, #d10000 0%, #000000 100%);
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    display: block;
    width: 100%;
    min-height: auto;
}

.blog-hero .hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.blog-hero .hero-subtitle {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0.95;
}

.contact-hero {
    background: linear-gradient(135deg, #d10000 0%, #000000 100%);
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: block;
    width: 100%;
    min-height: auto;
}

.contact-hero .hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-hero .hero-subtitle {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: #d10000;
    color: #fff;
}

.btn-primary:hover {
    background-color: #a00000;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #fff;
    color: #d10000;
    border: 2px solid #d10000;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 40px 0;
}

/* Exception pour certaines sections qui nécessitent plus d'espace */
.section-hero,
.section-artistes,
.section-statistics {
    padding: 60px 0;
    margin-bottom: 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #333;
}

/* Section texte simple */
.section-simple-text {
    padding: 40px 0;
    background-color: #fff;
}

.simple-text-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.simple-text-content p {
    margin-bottom: 20px;
}

.simple-text-content p:last-child {
    margin-bottom: 0;
}

.simple-text-cta {
    margin-top: 30px;
    text-align: center;
}

.section-title.purple {
    color: #d10000;
}

.section-title.red {
    color: #D32F2F;
}

.section-text {
    text-align: center;
    color: #666;
    font-size: 20px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    text-align: center;
    color: #666;
    font-size: 20px;
    margin-bottom: 40px;
}

/* Section Artistes pour votre événement (juste après Hero) */
.section-artistes-evenement {
    background-color: #fff;
    padding: 60px 0;
}

.section-title-artistes-evenement {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #d10000;
    margin-bottom: 40px;
    text-transform: uppercase;
}

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

/* Pour la page editions, grille 3 colonnes */
.section-artistes-evenement .artistes-evenement-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.artiste-evenement-item {
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    position: relative;
    cursor: pointer;
}

.artiste-evenement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.artiste-evenement-image {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 500px;
    object-fit: contain;
    display: block;
    background-color: #f5f5f5;
    transition: transform 0.3s ease;
}

.artiste-evenement-item:hover .artiste-evenement-image {
    transform: scale(1.05);
}

.artiste-evenement-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.artiste-evenement-item:hover::after {
    background: rgba(0, 0, 0, 0.6);
}

.artiste-evenement-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    margin: 0;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    text-align: center;
}

.artiste-evenement-item:hover .artiste-evenement-name {
    opacity: 1;
    transform: translateY(0);
}

/* Style pour la page d'accueil - texte toujours visible */
body.index .artiste-evenement-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    color: #d10000;
    background-color: #000;
    margin: 0;
    text-transform: uppercase;
    opacity: 1;
    transform: translateY(0);
    z-index: 10;
    text-align: center;
}

.artiste-evenement-description {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    padding: 0 20px;
    font-size: 14px;
    color: #fff;
    margin: 0;
    font-style: italic;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    text-align: center;
}

.artiste-evenement-item:hover .artiste-evenement-description {
    opacity: 1;
    transform: translateY(0);
}

/* Section Featured Spectacles (avant NOS ARTISTES) */
.section-featured-spectacles {
    background-color: #f9f9f9;
    padding: 60px 0;
}

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

.featured-spectacle-block {
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #d10000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.featured-spectacle-title {
    color: #d10000;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.featured-spectacle-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    margin: 0;
}

/* Section avec 3 Photos (avant NOS ARTISTES) */
.section-three-photos {
    background-color: #fff;
    padding: 60px 0;
}

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

.photo-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.photo-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Section Présentation de l'Agence */
.section-presentation {
    background-color: #fff;
    padding: 80px 0;
}

.presentation-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.presentation-content p {
    margin-bottom: 20px;
}

.presentation-intro {
    font-size: 18px;
    font-weight: 600;
    color: #d10000;
    margin-bottom: 25px;
}

.presentation-content strong {
    color: #d10000;
    font-weight: 600;
}

/* Section Réalisations */
.section-realisations {
    background-color: #fff;
    padding: 60px 0;
}

.realisations-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.8;
    color: #333;
}

.realisations-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.realisations-intro {
    font-size: 18px;
    margin-bottom: 25px;
}

.realisations-content strong {
    color: #d10000;
    font-weight: bold;
}

/* Section Booking */
.section-booking {
    background-color: #fff;
    padding: 60px 0;
}

.booking-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.8;
    color: #333;
}

.booking-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.booking-intro {
    font-size: 18px;
    margin-bottom: 25px;
}

.booking-content strong {
    color: #d10000;
    font-weight: bold;
}

.booking-cta {
    text-align: center;
    font-size: 18px;
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f8f8;
    border-left: 4px solid #d10000;
    border-radius: 5px;
}

.booking-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Artistes Section (juste après Hero - titre et contact) */
.section-artistes {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.section-artistes .section-title.purple {
    margin-bottom: 20px;
}

.section-artistes .section-text {
    margin-bottom: 15px;
}

.section-artistes .contact-info {
    margin-bottom: 0;
}

/* Grille des spectacles dans la section NOS ARTISTES */
.section-artistes .featured-spectacles-grid {
    margin-top: 50px;
    max-width: 100%;
}

/* Section Artistes Grid (avec les photos) */
.section-artistes-grid {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.artistes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.artiste-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.artiste-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.artiste-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.artiste-name {
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.artiste-description {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
    text-align: center;
}

/* Spectacles Section */
.section-spectacles {
    background-color: #fff;
}

.spectacle-banner {
    display: flex;
    background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    min-height: 400px;
}

.spectacle-banner-image-only {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.spectacle-banner-image-only img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Section Bannière */
.section-banner {
    padding: 20px 0;
    background-color: #fff;
}

.section-banner .banner-image-container {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    overflow: hidden;
}

.section-banner .banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Responsive pour la bannière */
@media (max-width: 768px) {
    .section-banner {
        padding: 15px 0;
    }
    
    .section-banner .banner-image-container {
        margin-top: 15px;
    }
    
    .section-banner .banner-image {
        max-height: 300px;
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .section-banner {
        padding: 10px 0;
    }
    
    .section-banner .banner-image-container {
        margin-top: 10px;
    }
    
    .section-banner .banner-image {
        max-height: 200px;
    }
}

.spectacle-image {
    flex: 0 0 40%;
}

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

.spectacle-info {
    flex: 1;
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spectacle-artist {
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.spectacle-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.spectacle-date {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.spectacle-location {
    font-size: 18px;
    opacity: 0.9;
}

/* Section Vidéo YouTube */
.section-video-youtube {
    background-color: #fff;
    padding: 60px 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Section Liste des Spectacles */
.section-spectacles-list {
    background-color: #fff;
    padding: 60px 0;
}

.spectacles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.spectacle-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.spectacle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.spectacle-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.spectacle-card-content {
    padding: 20px;
}

.spectacle-card-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.spectacle-card-artist {
    font-size: 16px;
    color: #d10000;
    font-weight: 600;
    margin-bottom: 10px;
}

.spectacle-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.spectacle-card-date,
.spectacle-card-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.spectacle-card-date strong,
.spectacle-card-location strong {
    color: #333;
}

.featured-spectacle-artist {
    font-size: 18px;
    color: #d10000;
    font-weight: 600;
    margin-bottom: 10px;
}

.featured-spectacle-date,
.featured-spectacle-location {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.featured-spectacle-date strong,
.featured-spectacle-location strong {
    color: #333;
}

/* Statistiques Section */
.section-statistiques {
    background: linear-gradient(135deg, #d10000 0%, #a00000 100%);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.stat-icon svg {
    width: 48px;
    height: 48px;
    color: #fff;
    stroke: currentColor;
    fill: none;
}

.stat-icon::before {
    content: attr(data-icon);
    font-size: 48px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Newsletter Section */
.section-newsletter {
    background: linear-gradient(135deg, #a00000 0%, #800000 100%);
    color: #fff;
    margin-bottom: 0;
    padding-bottom: 40px;
}

.newsletter-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form input::placeholder {
    color: #999;
}

.btn-validate {
    background-color: #d10000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.btn-validate:hover {
    background-color: #a00000;
}

.newsletter-message {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
}

.newsletter-message.success {
    background-color: rgba(76, 175, 80, 0.3);
    color: #fff;
}

.newsletter-message.error {
    background-color: rgba(244, 67, 54, 0.3);
    color: #fff;
}

/* Section Contact */
.section-contact {
    background-color: #fff;
    padding: 60px 20px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    width: 100%;
    padding: 40px 0;
}

.contact-info {
    padding-right: 20px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 18px;
    font-weight: bold;
    color: #d10000;
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.contact-text a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: #d10000;
}

.contact-description {
    margin-top: 30px;
}

.contact-description p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

.contact-description strong {
    color: #d10000;
}

.contact-form-wrapper {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    margin-top: 50px;
    margin-left: 100px;
    margin-right: 100px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Arial', 'Helvetica', sans-serif;
    transition: border-color 0.3s;
    background-color: #fff;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Responsive pour form-row */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
    text-transform: none;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
    cursor: pointer;
    accent-color: #d10000;
}

.checkbox-label span,
.radio-label span {
    user-select: none;
}

.btn-submit {
    width: 100%;
    background-color: #d10000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #a00000;
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.contact-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.contact-message.success {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 2px solid #4caf50;
    display: block;
}

.contact-message.error {
    background-color: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 2px solid #f44336;
    display: block;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-links-main {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
}

.footer-links-secondary {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #d10000;
    background-color: rgba(209, 0, 0, 0.1);
    text-decoration: none;
}

.footer-copyright {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.footer-copyright p {
    margin: 0;
    padding: 0;
}

.footer-copyright a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #d10000;
}

/* Supprimer tout espace après le footer */
html {
    margin: 0;
    padding: 0;
    background-color: #fff;
    background-image: none;
    height: 100%;
}

html::after,
body::after {
    display: none;
    content: none;
}

/* Responsive */
/* Écrans moyens (tablettes paysage) */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 44px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
}

/* Tablettes et petits écrans */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 12px 20px;
    }

    .navbar a {
        font-size: 13px;
    }

    .nav-left, .nav-right {
        gap: 20px;
    }

    .hero {
        height: 550px;
        margin-top: 0;
    }

    .hero-image {
        min-height: 550px;
        background-position: center center;
        background-size: cover;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 15px;
    }

    .section-title {
        font-size: 30px;
    }

    .featured-spectacles-grid {
        gap: 30px;
    }

    .artistes-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .artistes-evenement-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .spectacles-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/* Mobiles */
@media (max-width: 768px) {
    /* Réduire la taille des titres sur mobile */
    h1 {
        font-size: 28px !important;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 24px !important;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 20px !important;
        line-height: 1.4;
    }
    
    h4 {
        font-size: 18px !important;
        line-height: 1.4;
    }
    
    h5 {
        font-size: 16px !important;
        line-height: 1.4;
    }
    
    h6 {
        font-size: 14px !important;
        line-height: 1.4;
    }
    .container {
        padding: 0 15px;
    }

    /* Header / Navigation */
    .navbar {
        padding: 12px 20px;
        flex-wrap: nowrap;
    }

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

    .logo {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        z-index: 100;
        position: relative;
    }

    .logo a {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        z-index: 100;
        position: relative;
    }

    .logo-image {
        max-height: 50px;
        width: auto;
        margin: 0 auto;
        display: block;
        z-index: 100;
        position: relative;
    }

    .nav-left, .nav-right {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding-top: 80px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        z-index: 10000;
        overflow-y: auto;
        display: flex;
        pointer-events: auto;
    }

    .nav-left.active, .nav-right.active {
        transform: translateX(0);
    }
    
    /* Menu mobile combiné */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding-top: 80px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        z-index: 1000;
        overflow-y: auto;
        display: none;
    }
    
    .mobile-menu.active {
        transform: translateX(0);
        display: flex;
    }

    .navbar a {
        font-size: 18px;
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
        pointer-events: auto;
        position: relative;
        z-index: 10000;
        cursor: pointer;
    }

    .navbar a:hover {
        background-color: #f9f9f9;
        color: #d10000;
    }

    /* Overlay pour fermer le menu */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
        z-index: 9998;
        pointer-events: none;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        /* L'overlay ne doit pas couvrir la sidebar - commencer après 320px */
        left: 320px;
        width: calc(100% - 320px);
    }
    
    /* S'assurer que la sidebar et ses liens sont cliquables et au-dessus de l'overlay */
    .nav-left.active,
    .nav-right.active {
        pointer-events: auto !important;
        z-index: 10000;
    }
    
    .nav-left.active a,
    .nav-right.active a {
        pointer-events: auto !important;
        z-index: 10001;
        position: relative;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
        touch-action: manipulation;
    }

    /* Contact Banner */
    .section-contact-banner {
        padding: 15px 0;
    }

    .contact-banner-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .contact-banner-text {
        font-size: 14px;
        margin-bottom: 8px;
        padding: 0 10px;
    }

    .contact-banner-info {
        font-size: 13px;
        padding: 0 10px;
    }

    /* Hero Section */
    .hero {
        height: 450px;
        margin-top: 0;
    }

    .hero-image {
        min-height: 450px;
        background-position: center center;
        background-size: cover;
    }

    .hero-content {
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0 20px;
        width: 100%;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.4;
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
        width: 100%;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }

    /* Sections générales */
    section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .section-title-artistes-evenement {
        font-size: 20px;
    }

    /* Section Artistes */
    .section-artistes {
        padding: 30px 0;
    }

    .section-text {
        font-size: 14px;
        padding: 0 10px;
    }

    .contact-info {
        font-size: 13px;
        padding: 0 10px;
    }

    /* Section Présentation */
    .section-presentation {
        padding: 40px 0;
    }

    .presentation-content {
        padding: 0 10px;
    }

    .presentation-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .presentation-intro {
        font-size: 16px;
    }

    /* Section Featured Spectacles */
    .section-featured-spectacles {
        padding: 40px 0;
    }

    .featured-spectacles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-spectacle-block {
        padding: 20px;
    }

    .featured-spectacle-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .featured-spectacle-description {
        font-size: 14px;
    }

    /* Section Artistes pour événement */
    .artistes-evenement-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .artiste-evenement-image {
        height: auto;
        min-height: 250px;
        max-height: 400px;
        object-fit: contain;
    }

    .artiste-evenement-name {
        padding: 15px 10px;
        font-size: 14px;
    }

    /* Section Artistes Grid */
    .artistes-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .artiste-image {
        height: 250px;
    }

    .artiste-name {
        padding: 15px;
        font-size: 16px;
    }

    .artiste-description {
        padding: 0 15px 15px;
        font-size: 13px;
    }

    /* Section Vidéo YouTube */
    .section-video-youtube {
        padding: 40px 0;
    }

    .video-wrapper {
        max-width: 100%;
        padding-bottom: 56.25%;
    }

    /* Section Spectacles */
    .section-spectacles {
        padding: 40px 0;
    }

    .spectacle-banner {
        flex-direction: column;
    }

    .spectacle-info {
        padding: 30px 20px;
    }

    .spectacle-title {
        font-size: 28px;
    }

    .spectacle-artist {
        font-size: 16px;
    }

    .spectacle-date,
    .spectacle-location {
        font-size: 14px;
    }

    /* Section Liste Spectacles */
    .section-spectacles-list {
        padding: 40px 0;
    }

    .spectacles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .spectacle-card-image {
        height: 200px;
    }

    .spectacle-card-content {
        padding: 15px;
    }

    .spectacle-card-title {
        font-size: 18px;
    }

    .spectacle-card-artist {
        font-size: 14px;
    }

    .spectacle-card-description {
        font-size: 13px;
    }

    /* Section Booking */
    .section-booking {
        padding: 40px 0;
    }

    .booking-content {
        padding: 0 10px;
    }

    .booking-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .booking-intro {
        font-size: 16px;
    }

    /* Section Réalisations */
    .section-realisations {
        padding: 40px 0;
    }

    .realisations-content {
        padding: 0 10px;
    }

    .realisations-content p {
        font-size: 14px;
    }

    .realisations-intro {
        font-size: 16px;
    }

    /* Section Statistiques */
    .section-statistiques {
        padding: 20px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 15px 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .stat-number {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 14px;
    }

    /* Section Newsletter */
    .section-newsletter {
        padding: 40px 0;
    }

    .newsletter-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }

    .newsletter-form input {
        width: 100%;
        min-width: auto;
    }

    .btn-validate {
        width: 100%;
    }

    /* Section Contact */
    .section-contact {
        padding: 40px 15px;
    }

    .contact-wrapper {
        min-height: auto;
        padding: 20px 0;
        align-items: flex-start;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-details {
        margin-bottom: 30px;
    }

    .contact-item {
        padding: 15px;
        margin-bottom: 20px;
    }

    .contact-icon {
        font-size: 24px;
    }

    .contact-text h3 {
        font-size: 16px;
    }

    .contact-text p {
        font-size: 14px;
    }

    .contact-description {
        margin-top: 20px;
    }

    .contact-description p {
        font-size: 14px;
    }

    .contact-form-wrapper {
        padding: 25px 15px;
        max-width: 100%;
    }

    .contact-form {
        margin-left: 0;
        margin-right: 0;
        margin-top: 20px;
        width: 100%;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Section Three Photos */
    .section-three-photos {
        padding: 40px 0;
    }

    .three-photos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer */
    .footer {
        padding: 20px 0;
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .footer-links {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .footer-links-main {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-links-secondary {
        font-size: 13px;
        margin-bottom: 15px;
        padding-top: 12px;
    }
    
    .footer-link {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
    
    /* Menu navigation aligné à gauche sur mobile */
    .navbar a {
        font-size: 18px;
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
    }
}

/* Section FAQ */
.section-faq {
    background-color: #fff;
    padding: 60px 0;
}

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

.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-question {
    font-size: 24px;
    font-weight: bold;
    color: #d10000;
    margin: 0 0 0 0;
    padding: 15px 0;
    border-bottom: 2px solid #f0f0f0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #b8004f;
}

.faq-question-text {
    flex: 1;
    padding-right: 15px;
}

.faq-chevron {
    font-size: 18px;
    color: #d10000;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
    padding: 0;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 20px 0 0 0;
    margin: 0;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.faq-answer strong {
    color: #d10000;
    font-weight: 600;
}

@media (max-width: 768px) {
    .section-faq {
        padding: 40px 0;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 20px;
        padding: 12px 0;
    }
    
    .faq-chevron {
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 15px;
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    /* Réduire encore plus la taille des titres sur très petits écrans */
    h1 {
        font-size: 24px !important;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 20px !important;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 18px !important;
        line-height: 1.4;
    }
    
    h4 {
        font-size: 16px !important;
        line-height: 1.4;
    }
    
    h5 {
        font-size: 15px !important;
        line-height: 1.4;
    }
    
    h6 {
        font-size: 14px !important;
        line-height: 1.4;
    }
    .navbar {
        padding: 10px 15px;
    }

    .logo-image {
        max-height: 40px;
    }

    .navbar a {
        font-size: 16px;
        padding: 12px 15px;
    }

    .nav-left,
    .nav-right {
        padding-top: 70px;
    }

    .hero {
        height: 400px;
        margin-top: 0;
    }

    .hero-image {
        min-height: 400px;
        background-position: center center;
        background-size: cover;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 1.4;
        padding: 0 10px;
    }

    /* Header Consulting responsive */
    .consulting-hero,
    .blog-hero,
    .contact-hero,
    .realisations-hero {
        padding: 60px 15px;
    }

    .consulting-hero .hero-title,
    .blog-hero .hero-title,
    .contact-hero .hero-title,
    .realisations-hero .hero-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .consulting-hero .hero-subtitle,
    .blog-hero .hero-subtitle,
    .contact-hero .hero-subtitle,
    .realisations-hero .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        margin-top: 20px;
        gap: 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
        max-width: 260px;
    }

    .section-title {
        font-size: 20px;
    }

    .artistes-evenement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .artiste-evenement-image {
        height: auto;
        min-height: 200px;
        max-height: 350px;
        object-fit: contain;
    }

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

    .contact-banner-text,
    .contact-banner-info {
        font-size: 12px;
    }

    .stats-grid {
        gap: 20px;
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 28px;
    }

    .newsletter-title {
        font-size: 18px;
    }
}

/* Réalisations */
.realisations-hero {
    background: linear-gradient(135deg, #d10000 0%, #000000 100%);
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.realisations-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #d10000 0%, #000000 100%);
    z-index: 0;
}

.realisations-hero .container {
    position: relative;
    z-index: 1;
}

.realisations-hero .hero-title {
    color: #fff;
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.realisations-hero .hero-subtitle {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0.95;
    letter-spacing: 0.5px;
}

/* Grille des réalisations */
.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.realisation-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.realisation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.realisation-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.realisation-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

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

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

.realisation-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.realisation-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d10000;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.realisation-card-content {
    padding: 25px;
}

.realisation-card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.3;
}

.realisation-card-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.realisation-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: #999;
}

.realisation-meta-item {
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 12px;
}

/* Page de détail d'une réalisation */
.realisation-detail {
    max-width: 1000px;
    margin: 40px auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.realisation-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f0f0f0;
}

.realisation-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.realisation-detail-header {
    padding: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.realisation-detail-header h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.realisation-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.realisation-detail-meta span {
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 5px;
}

.realisation-category {
    background: #d10000 !important;
    color: #fff !important;
    font-weight: bold;
}

.realisation-detail-description {
    padding: 30px 40px;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.realisation-detail-content {
    padding: 30px 40px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.realisation-detail-actions {
    padding: 30px 40px;
    border-top: 1px solid #f0f0f0;
    background: #f9f9f9;
}

.section-realisations-detail {
    padding: 60px 0;
}

/* Responsive réalisations */
@media (max-width: 768px) {
    .realisations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .realisation-detail-header {
        padding: 25px 20px;
    }
    
    .realisation-detail-header h1 {
        font-size: 28px;
    }
    
    .realisation-detail-description,
    .realisation-detail-content {
        padding: 20px;
        font-size: 14px;
    }
    
    .realisation-detail-image {
        height: 250px;
    }
}

