/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@400;600&family=Playfair+Display:wght@600&display=swap');

/* Variables */
:root {
/*    --fond-clair: #fef6f0;  */
    --fond-clair: #FFFFFF;   
    --accent: #c44536;
    --accent-secondaire: #e07a5f;
    --texte: #333;
    --font-titre: 'Playfair Display', serif;
    --font-texte: 'Epilogue', sans-serif;
}

/* Global */
body {
    background: var(--fond-clair);
    font-family: var(--font-texte);
    color: var(--texte);
    line-height: 1.6;
    scroll-behavior: smooth;
    font-size: 1.05rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header {
    /*background-color: var(--texte);*/
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
	background-color: #000000; /* blanc */
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    margin-right: 10px;
}

.social-icons img {
    width: 40px;
/*    filter: invert(1);  */
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1rem;
}

nav ul li a:hover {
    color: var(--accent-secondaire);
}

/* Sections */
.section {
    padding: 50px 0 0 0;
    position: relative;
}

.section h2 {
    font-family: var(--font-titre);
    font-size: 2rem;
    color: var(--accent);
    text-align: center;
    margin-bottom: 20px;
}

.section p {
    text-align: center;
    max-width: 800px;
    margin: auto;
    font-size: 1.1rem;
	font-size: 0.95rem;
}

/* Musiciens */ 


.musicien {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.musicien img {
    width: 160px; 
    height: 160px; 
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.musicien h3 {
    font-size: 1.5rem;
    color: var(--accent);
}

.musicien p {
    margin-top: 10px; 
    max-width: 700px;
    text-align: justify;
}

#musiciens .container {
    width: 100%;
    max-width: 1400px;
    padding: 0 5vw;
    font-size: 0.95rem;
}


/* Vidéos */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.video-thumb {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-align: center;
}

.video-thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.video-thumb img {
    width: 100%;
    display: block;
}

.video-thumb p {
    padding: 10px;
    font-weight: 600;
    color: var(--accent);
}

/* Photos */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.photo-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.photo-grid img:hover {
    transform: scale(1.05);
}

/* Concerts */
.concert-list {
    list-style: none;
    margin-top: 20px;
}

.concert-list li {
    text-align: center; 
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    background: #000;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    width: 90%;
    max-width: 900px;
}

.lightbox-content iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
}

/* Waves */
.wave {
    position: relative;
    width: 100%;
    height: 70px;
    overflow: hidden;
    line-height: 0;
}

.wave img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--texte);
    padding: 15px;
    text-align: center;
    color: white;
    font-size: 0.9rem;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
    }
    .musicien {
        flex-direction: column;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

.intro-container {
    text-align: center;
}
 
.logo-intro {
    max-width: 800px;
    width: 80%; 
    height: auto;
	border-radius: 15px; /* arrondi modéré */
    margin: 0 auto 10px;
}

.photo-intro {
    max-width: 800px;
    width: 80%; 
    height: auto;
    margin: 0 auto 10px;
	border-radius: 15px; /* arrondi modéré */
}

.slogan {
    font-size: 1.4rem;
    color: var(--texte);
    opacity: 0.8;
}
 
.lightbox-photo {
    display: none;
    margin: auto;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    height: auto;
    object-fit: contain;
}

 .logo-inverse {
    filter: invert(1);
}