* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --claire-color: #fff;
    --noir-color: #000;
}

body {
    font-family: 'Poppins', sans-serif;
    background: url('images/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    background-position-y: top;
    min-height: 100vh;
    color: #fff;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

.hero::after {
    height: 100%;
    width: 100%;
    background-color: var(--noir-color);
    opacity: 0.5;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 300;
}

.explore-btn {
    background: #ff0080;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    font-weight: 500;
}

.explore-btn:hover {
    transform: translateY(-2px);
    background: #ff1493;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}

h1 {
    font-family: 'Playfair Display', serif;
    color: #ff0080;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

footer {
    margin-top: 2rem;
    color: #d4d4d4;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.contacts {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.contacts p {
    margin: 0.15rem 0;
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }

    .countdown {
        gap: 1rem;
    }

    .time-block span {
        font-size: 2rem;
        padding: 0.8rem;
        min-width: 70px;
    }
    
    .contacts {
        font-size: 0.8rem;
    }

    nav {
        padding: 0 1rem;
    }

    .logo a {
        font-size: 1.3rem;
    }

    .mobile-menu-btn {
        padding: 0.3rem;
        margin-right: 0.5rem;
    }

    .mobile-menu-btn i {
        font-size: 1.5rem;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }

    .social-links {
        bottom: 3rem;
        gap: 1.5rem;
    }

    .social-links a {
        font-size: 1.4rem;
    }
}

/* Section Last Music - Mise à jour du style */
.last-music {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.95);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: #ff0080;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

.video-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-overlay i {
    color: #fff;
    font-size: 3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.video-card h3 {
    color: #333;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* Section About - Mise à jour */
.about {
    padding: 8rem 2rem;
    position: relative;
    background: url('images/about3.jpg') no-repeat center center;
    background-size: cover;
    backdrop-filter: opacity(0.14);
    background-position-y: top;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--claire-color), rgba(0, 0, 0, 0.658));
    z-index: -1;
}

.about .section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about .section-title {
    color: var(--noir-color);
    margin-bottom: 4rem;
    position: relative;
}

.about .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff0080;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 128, 0.2), transparent);
}

.about-text {
    color: #fff;
    padding: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
    color: var(--noir-color);
}

.bio-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ff0080;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #ff0080;
}

.bio-btn:hover {
    background: transparent;
    color: #ff0080;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
}

@media (max-width: 992px) {
    .about {
        padding: 6rem 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-text {
        text-align: center;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 1.5rem;
    }

    .about .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Section Events */
.events {
    padding: 8rem 2rem;
    /* background: linear-gradient(var(--claire-color), rgba(0, 0, 0, 0.73)); */
    position: relative;
}

.events::after {
    height: 100%;
    width: 100%;
    background-color: var(--noir-color);
    opacity: 0.5;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.events .section-title {
    color: var(--claire-color);
    margin-bottom: 4rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-card {
    background: rgba(8, 8, 8, 0.37);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.event-date {
    background: #ff0080;
    color: #fff;
    padding: 1rem;
    border-radius: 10px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

.event-details h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.event-location, .event-time {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-location i, .event-time i {
    color: #ff0080;
    font-size: 1rem;
}

.ticket-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: #ff0080;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    margin-top: 1.5rem;
    border: 2px solid #ff0080;
    transition: all 0.3s ease;
}

.ticket-btn:hover {
    background: #ff0080;
    color: #fff;
    transform: translateY(-2px);
}

.view-all-container {
    text-align: center;
    margin-top: 4rem;
}

.view-all-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: #ff0080;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #ff0080;
    font-size: 1.1rem;
}

.view-all-btn:hover {
    background: transparent;
    color: #ff0080;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
}

@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .events {
        padding: 6rem 1.5rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        padding: 1.5rem;
    }

    .event-date {
        padding: 0.8rem;
    }

    .event-date .day {
        font-size: 1.5rem;
    }

    .event-details h3 {
        font-size: 1.1rem;
    }
}

/* Section Gallery */
.gallery {
    padding: 8rem 2rem;
    background: #fff;
    position: relative;
}

.gallery .section-title {
    color: var(--noir-color);
    margin-bottom: 4rem;
    position: relative;
}

.gallery .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff0080;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    grid-column: span 4;
    aspect-ratio: 1/1;
    transition: all 0.5s ease;
}

.gallery-item.wide {
    grid-column: span 8;
    aspect-ratio: 2/1;
}

.gallery-item.tall {
    grid-column: span 4;
    aspect-ratio: 1/2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.gallery-info {
    color: #fff;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Effet de survol */
.gallery-item:hover {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(8, 1fr);
    }

    .gallery-item {
        grid-column: span 4;
    }

    .gallery-item.wide {
        grid-column: span 8;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 6rem 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .gallery-item,
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 4;
        aspect-ratio: 1/1;
    }

    .gallery-info h3 {
        font-size: 1rem;
    }

    .gallery-info p {
        font-size: 0.8rem;
    }
}

/* Ajouter ces styles à la section Gallery */
.gallery .view-all-container {
    text-align: center;
    margin-top: 4rem;
}

.gallery .view-all-btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: transparent;
    color: #ff0080;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #ff0080;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery .view-all-btn:hover {
    background: #ff0080;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
}

@media (max-width: 768px) {
    .gallery .view-all-container {
        margin-top: 3rem;
    }

    .gallery .view-all-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/* Section Blog */
.blog {
    padding: 8rem 2rem;
    position: relative;
}

.blog::after {
    height: 100%;
    width: 100%;
    background-color: var(--noir-color);
    opacity: 0.5;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.blog .section-title {
    color: var(--claire-color);
    margin-bottom: 4rem;
    position: relative;
}

.blog .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff0080;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #ff0080;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-top-right-radius: 15px;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-excerpt p {
    margin: 0;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff0080;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
}

/* Loader */
.blog-loader {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 3rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 0, 128, 0.1);
    border-top-color: #ff0080;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error Message */
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: #666;
}

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog {
        padding: 6rem 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }
}

/* Section Contact */
.contact {
    padding: 8rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.97), rgba(0, 0, 0, 0.9));
    position: relative;
}

.contact .section-title {
    color: #fff;
    margin-bottom: 4rem;
    position: relative;
}

.contact .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff0080;
}

.contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 128, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header i {
    font-size: 2.5rem;
    color: #ff0080;
    margin-bottom: 1rem;
}

.contact-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-info {
    text-align: center;
    margin: 20px auto;
}

.contact-info h3 {
    margin-bottom: 10px;
}

.contact-info p {
    margin: 5px 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.social-item:hover {
    background: rgba(255, 0, 128, 0.2);
    transform: translateY(-3px);
}

.social-item i {
    font-size: 1.2rem;
    color: #ff0080;
}

.social-item span {
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card.social {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 6rem 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card.social {
        grid-column: span 1;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-header i {
        font-size: 2rem;
    }

    .contact-header h3 {
        font-size: 1.3rem;
    }
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.95));
    padding: 5rem 2rem 2rem;
    color: #fff;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #ff0080;
    margin-bottom: 1rem;
}

.footer-slogan {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #ff0080;
    transform: translateY(-3px);
}

.footer-newsletter {
    max-width: 450px;
}

.footer-newsletter h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-newsletter p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: #ff0080;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form button:hover {
    background: #ff1493;
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: #999;
    font-size: 0.9rem;
}

.copyright p {
    margin: 0.5rem 0;
}

.credits {
    color: #666;
}

.credits a {
    color: #ff0080;
    text-decoration: none;
    transition: color 0.3s ease;
}

.credits a:hover {
    color: #ff1493;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-newsletter {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .main-footer {
        padding: 4rem 1.5rem 2rem;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }

    .footer-title {
        font-size: 1.8rem;
    }

    .footer-social {
        gap: 1rem;
    }
}

/* Styles pour le menu mobile */
.mobile-menu-btn {
    background-color: #ff0080;
    border-radius: 50%;
    padding: 0.5rem;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        position: fixed;
        right: 0;
        display: block;
        z-index: 1001;
        padding: 0.5rem;
        margin-right: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
        z-index: 1000;
        padding: 0;
    }

    .nav-links.active {
        right: 0;
        flex-direction: column;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        margin: 1rem 0;
        text-align: center;
        width: 100%;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.3s;
    }

    .nav-links a {
        font-size: 1.4rem;
        padding: 0.5rem 1rem;
        display: inline-block;
        width: auto;
    }

    .social-links {
        position: fixed;
        bottom: 10%;
        left: 0;
        width: 100%;
        justify-content: center;
        gap: 1.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .social-links.active {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 576px) {
    header {
        padding: 0.5rem 1rem;
    }

    .logo a {
        font-size: 1.3rem;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }

    .social-links {
        bottom: 3rem;
        gap: 1.5rem;
    }

    .social-links a {
        font-size: 1.4rem;
    }
}

/* Mise à jour de l'overlay pour un meilleur centrage */
.menu-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--claire-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .explore-btn {
        padding: 0.8rem 2rem;
    }
}

/* Last Music Section Responsive */
@media (max-width: 992px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* About Section Responsive */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        max-height: 400px;
    }
}

/* Events Section Responsive */
@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        padding: 1.5rem;
    }
}

/* Gallery Section Responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(8, 1fr);
    }

    .gallery-item.wide {
        grid-column: span 8;
    }

    .gallery-item {
        grid-column: span 4;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .gallery-item,
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 4;
        aspect-ratio: 3/2;
    }
}

/* Blog Section Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        margin-bottom: 2rem;
    }
}

/* Contact Section Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .contact-card.social {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .newsletter-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

/* Global Responsive Adjustments */
@media (max-width: 1200px) {
    .section-container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }

    .section-container {
        padding: 0 1rem;
    }
}

/* Ajouter des styles pour assurer la visibilité sur les appareils moyens */
@media (min-width: 481px) and (max-width: 768px) {
    .nav-links a {
        font-size: 1.3rem;
        padding: 0 1.5rem 0 1.5rem;
    }

    .social-links {
        bottom: 4rem;
        gap: 2rem;
    }

    .social-links a {
        font-size: 1.5rem;
    }
}

/* Styles pour le menu mobile */
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--noir-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--ff0080);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--claire-color);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    flex: 1;
}

.logo a {
    color: #ff0080;
    font-size: 1.8rem;
    text-decoration: none;
    font-weight: 700;
}

.nav-links {
    display: flex;
    flex: 2;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    color: var(--noir-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff0080;
}

.mobile-menu-btn {
    display: none;
    color: #fff;
    font-size: 1.5rem;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        padding: 0.5rem;
        margin-right: 1rem;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow-y: auto;
    }

    .nav-links li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.4rem;
        padding: 0.5rem 0;
    }
}

@media (max-width: 320px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }

    .contact-card {
        font-size: 0.9rem;
    }

    .contact-header h3 {
        font-size: 1.2rem;
    }

    .contact-info p {
        font-size: 0.8rem;
    }
}

@media (min-width: 769px) {
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        display: flex;
        flex: 1;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .nav-links li {
        margin: 0 1rem;
    }

    .mobile-menu-btn {
        display: none;
    }
} 

/* Styles pour la modal */
.video-modal {
    display: none; /* Masquer par défaut */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--claire-color);
    place-content: center center;
}

.modal-content {
    position: relative;
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

iframe {
    width: 100%;
    height: 315px;
}

.music-section {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.95);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

.video-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: scale(1.05);
}

.video-thumbnail {
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    border-radius: 10px;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.cta-banner {
    padding: 4rem 2rem;
    background: #ff0080;
    color: #fff;
    text-align: center;
}

.cta-links {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #fff;
    color: #ff0080;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.8);
}

.biography-section {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.95);
}

.biography-content {
    text-align: center;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
}

.biography-content blockquote {
    font-style: italic;
    margin: 1.5rem 0;
    padding: 0.5rem 1rem;
    border-left: 4px solid #ff0080;
    color: #555;
}

.biography-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.biography-content p {
    margin: 1rem 0;
}

.biography-photo {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 2rem;
}

blockquote {
    font-style: italic;
    color: #555;
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 4px solid #ff0080;
}

h2.section-title {
    color: #ff0080;
    margin-bottom: 1.5rem;
}

h3 {
    color: #ff0080;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Styles pour la section Musique */
.music-section {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.95);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes par défaut */
    gap: 2rem;
    padding: 0 1rem;
}

.video-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes pour les écrans moyens */
    }
}

@media (max-width: 576px) {
    .videos-grid {
        grid-template-columns: 1fr; /* 1 colonne pour les petits écrans */
    }
}

/* Styles pour la section Événements */
.events-section {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.95);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.event-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.event-date {
    background: #ff0080;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.event-details {
    padding: 1rem;
}

.event-location,
.event-time {
    font-size: 0.9rem;
    color: #666;
}

.ticket-btn {
    display: block;
    text-align: center;
    background: #ff0080;
    color: #fff;
    padding: 0.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin: 1rem 0;
    transition: background 0.3s ease;
}

.ticket-btn:hover {
    background: #ff1493;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes pour les écrans moyens */
    }
}

@media (max-width: 576px) {
    .events-grid {
        grid-template-columns: 1fr; /* 1 colonne pour les petits écrans */
    }
}

/* Styles pour la section Hero des Événements */
.hero-events {
    background-image: url('images/path/to/your/background-image.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
    color: #fff;
}

.hero-events .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-events h1 {
    font-size: 3rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Styles pour la section Hero de la Musique */
.hero-music {
    background-image: url('images/path/to/your/music-background-image.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
    color: #fff;
}

.hero-music .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-music h1 {
    font-size: 3rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Styles pour la section Hero de la Galerie */
.hero-gallery {
    background-image: url('images/path/to/your/gallery-background-image.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
    color: #fff;
}

.hero-gallery .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-gallery h1 {
    font-size: 3rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Styles pour la section Galerie */
.gallery-section {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.95);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative; /* Pour le positionnement absolu des images */
}

/* Styles pour les images */
.gallery-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

/* Effet de survol */
.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Disposition en étoile pour les grands écrans */
@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: 1 / 3; /* Prend 2 colonnes */
        grid-row: 1; /* Première ligne */
    }

    .gallery-item:nth-child(2) {
        grid-column: 3; /* Prend 1 colonne */
        grid-row: 1; /* Première ligne */
    }

    .gallery-item:nth-child(3) {
        grid-column: 1; /* Prend 1 colonne */
        grid-row: 2; /* Deuxième ligne */
    }

    .gallery-item:nth-child(4) {
        grid-column: 2; /* Prend 1 colonne */
        grid-row: 2; /* Deuxième ligne */
    }

    .gallery-item:nth-child(5) {
        grid-column: 3; /* Prend 1 colonne */
        grid-row: 2; /* Deuxième ligne */
    }

    .gallery-item:nth-child(6) {
        grid-column: 1 / 3; /* Prend 2 colonnes */
        grid-row: 3; /* Troisième ligne */
    }
}

/* Styles pour la section Hero du Blog */
.hero-blog {
    background-image: url('images/path/to/your/blog-background-image.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
    color: #fff;
}

.hero-blog .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-blog h1 {
    font-size: 3rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Styles pour la section Blog */
.blog-section {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.95);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.blog-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.read-more-btn {
    display: block;
    text-align: center;
    background: #ff0080;
    color: #fff;
    padding: 0.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin: 1rem 0;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #ff1493;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes pour les écrans moyens */
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr; /* 1 colonne pour les petits écrans */
    }
}

/* Styles pour la section Hero du Contact */
.hero-contact {
    background-image: url('images/path/to/your/contact-background-image.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
    color: #fff;
}

.hero-contact .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-contact h1 {
    font-size: 3rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Styles pour la section Contact */
.contact-section {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333; /* Couleur du texte principal */
}

.section-title {
    font-size: 2.5rem;
    color: #ff0080; /* Couleur du titre de section */
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
}

.contact-info, .manager-contact {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #ff0080; /* Bordure pour délimiter les sections */
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h3, .manager-contact h3 {
    font-size: 1.8rem;
    color: #ff0080; /* Couleur des titres */
    margin-bottom: 1rem;
}

.contact-info ul {
    list-style-type: none;
    padding: 0;
}

.contact-info li {
    margin: 0.5rem 0;
    font-size: 1.2rem;
    color: #333; /* Couleur des éléments de la liste */
}

.manager-contact p {
    font-size: 1.2rem;
    color: #333; /* Couleur du texte du manager */
}

.manager-contact a {
    color: #ff0080; /* Couleur du lien */
    text-decoration: none;
}

.manager-contact a:hover {
    text-decoration: underline; /* Souligner au survol */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .contact-info, .manager-contact {
        padding: 1rem;
    }

    .contact-info h3, .manager-contact h3 {
        font-size: 1.5rem;
    }

    .contact-info li, .manager-contact p {
        font-size: 1rem;
    }
}

.pagination {
    display: flex; /* Utiliser flexbox pour aligner les boutons */
    justify-content: center; /* Centrer les boutons horizontalement */
    margin-top: 2rem; /* Espacement au-dessus des boutons */
}

.pagination-btn {
    background-color: #ff0080; /* Couleur de fond des boutons */
    color: #fff; /* Couleur du texte */
    border: none; /* Supprimer la bordure */
    border-radius: 5px; /* Arrondir les coins */
    padding: 0.5rem 1rem; /* Espacement interne */
    font-size: 1rem; /* Taille de la police */
    cursor: pointer; /* Changer le curseur au survol */
    transition: background-color 0.3s ease; /* Transition pour un effet au survol */
    margin: 0 0.5rem; /* Espacement entre les boutons */
}

.pagination-btn:hover {
    background-color: #ff1493; /* Couleur de fond au survol */
}

.pagination-btn:disabled {
    background-color: #ccc; /* Couleur de fond pour les boutons désactivés */
    cursor: not-allowed; /* Changer le curseur pour indiquer que le bouton est désactivé */
}

.back-to-top-btn {
    display: none; /* Masquer le bouton par défaut */
    position: fixed; /* Positionner le bouton de manière fixe */
    bottom: 20px; /* Espacement du bas */
    right: 20px; /* Espacement de la droite */
    background-color: #ff0080; /* Couleur de fond */
    color: #fff; /* Couleur du texte */
    border: none; /* Supprimer la bordure */
    border-radius: 50%; /* Arrondir les coins pour un aspect circulaire */
    padding: 0.5rem; /* Espacement interne */
    cursor: pointer; /* Changer le curseur au survol */
    transition: background-color 0.3s ease; /* Transition pour un effet au survol */
    width: 50px; /* Largeur du bouton */
    height: 50px; /* Hauteur du bouton */
    display: flex; /* Utiliser flexbox pour centrer l'icône */
    align-items: center; /* Centrer verticalement */
    justify-content: center; /* Centrer horizontalement */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Ombre pour le bouton */
    z-index: 1000; /* Assurez-vous que le bouton est au-dessus des autres éléments */
}

.back-to-top-btn:hover {
    background-color: #ff1493; /* Couleur de fond au survol */
}