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

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background-color: #000;
    scroll-behavior: smooth;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    z-index: 1000;
    transition: transform 0.3s ease;
}

nav.hidden {
    transform: translateY(-100%);
}

.logo {
    height: 50px;
    display: flex;
    align-items: center;
}

.imageLogo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.navRight {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.navRight ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navRight ul li {
    margin-left: 0;
}

.navRight ul li a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out, font-size 0.3s;
    font-size: 0.9rem;
}

.navRight ul li a:hover {
    color: #e16900;
    font-size: 0.95rem;
}

.navRight .social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.navRight .social-icons a {
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.3s, color 0.3s;
}

.navRight .social-icons a:hover {
    transform: scale(1.2);
    color: rgba(255, 255, 255, 0.7);
}

header {
    height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    text-align: center;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

header h1 {
    font-size: clamp(2rem, 8vw, 4.5rem);
    z-index: 2;
    animation: fadeInDown 2s ease-in-out;
    font-family: Brush Script MT, Brush Script Std, cursive;
}

header p {
    margin-top: 1rem;
    font-size: clamp(1rem, 3vw, 1.5rem);
    z-index: 2;
    animation: fadeInUp 2s ease-in-out;
    font-family: Comic Sans MS, Comic Sans, cursive;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url('wave.svg') repeat-x;
    z-index: 2;
    animation: waveAnimation 4s linear infinite;
}

.highlight {
    color: #ff8c00;
    animation: glow 2s infinite;
}

#actualite {
    padding: 50px 0;
    background-color: #0d0d0d;
    text-align: center;
}

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

.containerA h2 {
    color: #ff8c00;
    font-size: clamp(2rem, 6vw, 4.1rem);
    font-family: Brush Script MT, Brush Script Std, cursive;
}

.actualite-slider {
    position: relative;
    overflow: hidden;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
    animation: fadeIn 0.8s;
}

.actualite-content {
    display: flex;
    padding: 20px;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.actualite-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.actualite-text {
    max-width: 600px;
    text-align: justify;
}

.actualite-text h3 {
    color: #ebebeb;
}

.actualite-text p {
    color: #fff;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
    border: none;
    z-index: 1;
}

.prev { left: 10px; }
.next { right: 10px; }

.dots {
    text-align: center;
    margin-top: 15px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #ff8c00;
}

#bibliography {
    background-color: #000;
    color: #fff;
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
}

#bibliography.visible {
    opacity: 1;
    transform: translateY(0);
}

#bibliography h2 {
    color: #ff8c00;
    font-size: clamp(2rem, 6vw, 4.1rem);
    margin-bottom: 1rem;
    font-family: Brush Script MT, Brush Script Std, cursive;
}

#bibliography .text-content {
    flex: 1;
    max-width: 600px;
}

#bibliography .text-content p {
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
}

#bibliography .image-content {
    flex: 1;
    max-width: 450px;
}

#bibliography .image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.5);
}

#section {
    background-color: #000;
    padding: 2rem 0;
}

.container {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    color: #fff;
    font-size: clamp(2rem, 8vw, 5rem);
    margin: 30px 0 50px;
}

.album-cover {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.album-cover img {
    width: 100%;
    height: auto;
}

.album-info {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.more-releases-button {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid orange;
    color: orange;
    transition: all 0.3s;
}

.more-releases-button:hover {
    border: 1px solid white;
    color: white;
}

#phototheque-container {
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
    padding: 20px;
    background-color: #000;
}

#phototheque-container h2 {
    color: #ff8c00;
    font-size: clamp(2rem, 6vw, 4.1rem);
    margin-bottom: 3rem;
    font-family: Brush Script MT, Brush Script Std, cursive;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.photo {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

footer {
    margin-top: 25px;
    background: #101010;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

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

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

@keyframes waveAnimation {
    0% { background-position-x: 0; }
    100% { background-position-x: 1000px; }
}

@keyframes glow {
    0% { text-shadow: 0 0 10px #ff8c00; }
    50% { text-shadow: 0 0 20px #ff8c00; }
    100% { text-shadow: 0 0 10px #ff8c00; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navRight {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 1rem;
        flex-direction: column;
    }

    .navRight.active {
        display: flex;
    }

    .navRight ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .navRight .social-icons {
        justify-content: center;
    }

    header {
        height: 70vh;
    }

    header img {
        height: 100%;
        object-fit: cover;
    }

    .actualite-content {
        flex-direction: column;
    }

    .album-cover {
        max-width: 300px;
    }

    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    /* Modification pour la section bibliographie */
    #bibliography {
        flex-direction: column; /* Empile les éléments verticalement */
    }

    #bibliography .image-content {
        order: -1; /* Place l'image avant le texte */
        max-width: 100%; /* Assure que l'image prend toute la largeur disponible */
    }

    #bibliography .text-content {
        order: 0; /* Le texte suit l'image */
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem;
    }

    .logo {
        height: 40px;
    }

    header h1 {
        font-size: clamp(1.5rem, 6vw, 3rem);
    }

    header p {
        font-size: clamp(0.8rem, 2vw, 1rem);
    }

    .wave {
        height: 100px;
    }

    .title {
        margin-bottom: 30px;
    }
}