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

:root {
    --gold: #C9A84C;
    --dark: #0a0a0a;
    --white: #ffffff;
    --header-big: 55vh;
    --header-small: 70px;
    --transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

/* ========== HEADER ========== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-big);
    background: var(--dark);
    border-bottom: 2px solid var(--gold);
    z-index: 1000;
    transition: height var(--transition);
    /* PAS de overflow:hidden ici */
}

#header.scrolled {
    height: var(--header-small);
}

/* Le clip masque le débordement du header SAUF pour le menu burger */
/* On utilise un pseudo-element pour le fond du header */
#header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--dark);
    z-index: -1;
}

#header-spacer {
    height: var(--header-big);
    transition: height var(--transition);
}

#header-spacer.scrolled {
    height: var(--header-small);
}

.header-inner {
    width: 100%;
    height: var(--header-big);
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: height var(--transition);
    overflow: hidden; /* clip sur l'inner, pas sur le header */
}

#header.scrolled .header-inner {
    height: var(--header-small);
}

/* LOGO */
.header-logo img {
    width: 300px;
    display: block;
    transition: width var(--transition), filter 0.3s ease;
}

.header-logo img:hover {
    filter: drop-shadow(0 0 12px var(--gold));
}

#header.scrolled .header-logo img {
    width: 46px;
}

/* LETTERING */
.header-title img {
    width: 380px;
    display: block;
    transition: width var(--transition), filter 0.3s ease;
}

.header-title img:hover {
    filter: drop-shadow(0 0 12px var(--gold));
}

#header.scrolled .header-title img {
    width: 160px;
}

/* NAV */
.header-nav {
    position: relative;
    display: flex;
    align-items: center;
}

/* MENU GRAND HEADER - vertical */
#nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: right;
}

#header.scrolled #nav-menu {
    display: none;
}

#nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

#nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

#nav-menu li a:hover {
    color: var(--gold);
}

#nav-menu li a:hover::after {
    width: 100%;
}

/* BURGER - caché par défaut */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.burger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
    opacity: 0;
}
.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

#header.scrolled .burger {
    display: flex;
}

/* MENU BURGER déployé — positionné par rapport au header entier */
#nav-menu.open {
    display: flex !important;
    position: fixed;
    top: var(--header-small);
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    border: 1px solid var(--gold);
    border-top: none;
    padding: 24px 32px;
    gap: 20px;
    min-width: 240px;
    flex-direction: column;
    text-align: right;
    z-index: 1001;
}

/* ========== SECTION QUI EST RAMON ========== */
.section-qui {
    width: 100%;
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
    position: relative;
}

.section-qui::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.qui-title h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 70px;
    text-align: center;
    cursor: default;
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

.qui-title h2:hover {
    color: var(--gold);
    text-shadow:
        0 0 10px rgba(201, 168, 76, 0.6),
        0 0 30px rgba(201, 168, 76, 0.3);
}

.qui-content {
    display: flex;
    gap: 80px;
    max-width: 1100px;
    width: 100%;
    align-items: flex-start;
}

.qui-texte {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.qui-texte p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #cccccc;
    letter-spacing: 0.5px;
}

.qui-texte strong {
    color: var(--gold);
    font-weight: 700;
}

.qui-texte em {
    color: var(--white);
    font-style: italic;
}

.qui-membres {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-left: 1px solid var(--gold);
    padding-left: 50px;
}

.membre {
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.3s ease;
}

.membre:hover {
    transform: translateX(8px);
}

.membre h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.membre p {
    font-size: 0.9rem;
    color: #aaaaaa;
    letter-spacing: 1px;
}

/* ========== SECTION VIDEOS ========== */
.section-videos {
    width: 100%;
    min-height: 100vh;
    background: #0f0f0f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
    position: relative;
}

.section-videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.videos-title h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 70px;
    text-align: center;
    cursor: default;
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

.videos-title h2:hover {
    color: var(--gold);
    text-shadow:
        0 0 10px rgba(201, 168, 76, 0.6),
        0 0 30px rgba(201, 168, 76, 0.3);
}

.videos-wrapper {
    width: 100%;
    max-width: 1000px;
}

/* Lecteur 16/9 responsive */
.video-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border: 1px solid var(--gold);
    box-shadow:
        0 0 30px rgba(201, 168, 76, 0.2),
        0 0 60px rgba(201, 168, 76, 0.05);
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .section-videos {
        padding: 80px 20px;
    }

    .videos-title h2 {
        font-size: 2rem;
    }
}
.galerie-section {
    position: relative;
    background: #0a0a0a;
    padding: 80px 0;
    overflow: hidden;
    height: 500vh;  /* était 120vh, on passe à 400vh */
}

.galerie-header {
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: 40px;
}

.galerie-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #c8a96e;
    margin-bottom: 15px;
}

.galerie-header p {
    color: #aaa;
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.galerie-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.photo-item {
    position: absolute;
    top: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    transition: box-shadow 0.3s ease;
    will-change: transform;
}

.photo-item:hover {
    box-shadow: 0 20px 60px rgba(200,169,110,0.4);
    z-index: 100;
}

.photo-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.85);
    transition: filter 0.3s ease;
}

.photo-item:hover img {
    filter: brightness(1);
}
/* ===== LIGHTBOX ===== */
#lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9999;
}

#lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 10000;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-img {
    max-width: 85vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(200,169,110,0.3);
    display: block;
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(200,169,110,0.2);
    border: 2px solid #c8a96e;
    color: #c8a96e;
    font-size: 2rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(200,169,110,0.5);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 25px;
    background: transparent;
    border: 2px solid #c8a96e;
    color: #c8a96e;
    font-size: 1.4rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(200,169,110,0.3);
}
/* ===== SECTION ÉCOUTER ===== */
.section-ecouter {
    background: #0f0f0f;
    padding: 80px 40px;
    text-align: center;
}

.ecouter-title h2 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 2.5rem;
    color: #c8a96e;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.ecouter-title p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-style: italic;
}

.ecouter-player {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(200,169,110,0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(200,169,110,0.1);
}

.soundcloud-credit {
    background: #0f0f0f;
    padding: 10px;
    font-size: 11px;
    color: #666;
}

.soundcloud-credit a {
    color: #c8a96e;
    text-decoration: none;
    transition: color 0.3s;
}

.soundcloud-credit a:hover {
    color: #fff;
}
/* ===== BANDCAMP ===== */
.section-bandcamp {
    background: #111;
    padding: 80px 40px;
    text-align: center;
}

.bandcamp-title h2 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 2.5rem;
    color: #c8a96e;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.bandcamp-title p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-style: italic;
}

.bandcamp-player {
    display: flex;
    justify-content: center;
}

.bandcamp-player iframe {
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(200,169,110,0.15);
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(200,169,110,0.3);
    padding: 60px 40px 20px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

/* Logo gauche */
.footer-logo img {
    width: 250px;
    object-fit: contain;
}

/* Lettrage centre */
.footer-center img {
    max-width: 280px;
    object-fit: contain;
}

/* Contact droite */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: right;
}

.footer-email a {
    color: #c8a96e;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-email a:hover {
    color: #fff;
}

.footer-tel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: #ccc;
    font-size: 0.95rem;
}

.footer-tel a {
    color: #c8a96e;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-tel a:hover {
    color: #fff;
}

.tel-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Réseaux sociaux */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 10px;
}

.footer-social span {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-social a img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0.8;
}

.footer-social a:hover img {
    transform: scale(1.2);
    opacity: 1;
}

/* Bas du footer */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.15);
    padding-top: 20px;
    color: #555;
    font-size: 0.85rem;
}
