/*
 * Taraf Goulamas — Source CSS unique et lisible
 * Pour la production, remplacer ce lien par : dist/style.min.css
 * Générer avec : npm run build:css
 */

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

/* ── Mots importants en gras ── */
strong {
    font-weight: 700;
    color: var(--color-accent);
}
.culinary-subtitle strong,
.tzigane-subtitle strong {
    color: var(--color-dark-accent);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

html {
    overflow-x: hidden;
}

/* ── Variables ── */
:root {
    --color-background: #1C0D04;
    --color-primary: #C87941;
    --color-secondary: #F0D080;
    --color-accent: #E8A045;
    --color-dark-accent: #9B341A;
}

/* ── Body ── */
body {
    font-family: 'Alike Angular', serif;
    font-weight: 400;
    background-color: var(--color-background);
    color: var(--color-secondary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: 0.02em;
}

body::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2700px;
    height: 1100px;
    background: radial-gradient(circle, #9B341A 0%, transparent 70%);
    filter: blur(80px);
    opacity: 1;
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='5' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

.circle-grain {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2700px;
    height: 1100px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grainFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grainFilter)' fill='%23000000' opacity='0.25'/%3E%3C/svg%3E");
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.8;
}

.circle-glow-bottom {
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 1500px;
    height: 1000px;
    background: radial-gradient(circle, #E8A045 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
}

.circle-glow-left {
    position: absolute;
    top: 8rem;
    left: -900px;
    width: 1500px;
    height: 1000px;
    background: radial-gradient(circle, #E8A045 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
}

.glow-transition-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    overflow: visible;
    pointer-events: none;
}

.glow-transition-light {
    position: absolute;
    bottom: -300px;
    right: -600px;
    width: 1600px;
    height: 800px;
    background: radial-gradient(circle, #9B341A 0%, transparent 70%);
    filter: blur(80px);
    opacity: 1;
    z-index: -1;
    pointer-events: none;
}

.glow-transition-grain {
    position: absolute;
    bottom: -300px;
    right: -600px;
    width: 1600px;
    height: 800px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grainFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grainFilter)' fill='%23000000' opacity='0.25'/%3E%3C/svg%3E");
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.8;
}

/* ── Header & Navigation ── */
header {
    background-color: transparent;
    padding: 1.5rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-secondary);
    border-bottom: 1.5px solid color-mix(in srgb, currentColor 15%, transparent);
    transition: color 0.5s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0.5rem 0;
}

.logo-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.logo-link:hover::after {
    width: 100%;
}

.header-logo {
    height: 35px;
    width: auto;
    transition: all 0.3s ease, filter 0.5s ease;
    filter: brightness(0) saturate(100%) invert(91%) sepia(18%) saturate(835%) hue-rotate(346deg) brightness(104%) contrast(96%);
}

.logo-link:hover .header-logo {
    filter: brightness(0) saturate(100%) invert(72%) sepia(38%) saturate(872%) hue-rotate(335deg) brightness(99%) contrast(89%);
}

/* Header on light section (culinary / footer) */
header.on-light-section {
    color: #1C0D04;
}

header.on-light-section .header-logo {
    filter: brightness(0) saturate(100%) invert(6%) sepia(24%) saturate(3065%) hue-rotate(351deg) brightness(95%) contrast(102%);
}

header.on-light-section .logo-link:hover .header-logo {
    filter: brightness(0) saturate(100%) invert(42%) sepia(59%) saturate(1088%) hue-rotate(338deg) brightness(91%) contrast(92%);
}

/* ── Nav links ── */
.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin-left: auto;
}

.nav-links a {
    color: #F0D080;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease, color 0.5s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.nav-links a.active {
    color: var(--color-accent);
}

header.on-light-section .nav-links a {
    color: #1C0D04;
}

header.on-light-section .nav-links a:hover,
header.on-light-section .nav-links a.active {
    color: #9B341A;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ── Main content ── */
main {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    padding-top: 100px;
}

section {
    margin-bottom: 3rem;
}

/* ── Hero ── */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 65vh;
    padding: 8rem 2rem 22rem;
    position: relative;
    z-index: 1;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.main-logo {
    max-width: 550px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(68%) sepia(61%) saturate(497%) hue-rotate(347deg) brightness(96%) contrast(87%);
    animation: fadeIn 1s ease-in-out;
    transition: filter 0.4s ease;
    cursor: pointer;
}

.main-logo:hover {
    filter: brightness(0) saturate(100%) invert(68%) sepia(61%) saturate(497%) hue-rotate(347deg) brightness(96%) contrast(87%) drop-shadow(0 0 12px rgba(232, 160, 69, 0.3));
}

.logo-container h3 {
    color: #F0D080;
    font-size: 24px;
    margin: 0;
    margin-top: -0.5rem;
    align-self: flex-start;
    padding-left: 3rem;
    text-align: left;
    animation: fadeIn 1.2s ease-in-out;
    font-weight: 300;
}

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

/* ── Content & Gallery ── */
.content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery {
    padding: 2rem 2rem 15rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gallery-images {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    width: calc(50% - 1rem);
    max-width: 550px;
    gap: 0.75rem;
}

.gallery-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.gallery-caption {
    color: #F0D080;
    font-size: 24px;
    margin: 0;
    text-align: left;
    font-weight: 300;
}

/* ── Definition Section ── */
.definition {
    padding: 2rem 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.definition-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding-left: 2rem;
    justify-content: center;
}

.definition-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    transition: filter 0.4s ease;
    cursor: pointer;
}

.definition-left:hover {
    filter: drop-shadow(0 0 10px rgba(232, 160, 69, 0.2));
}

.definition-logo {
    max-width: 450px;
    height: auto;
    margin-top: -1.5rem;
    filter: brightness(0) saturate(100%) invert(74%) sepia(45%) saturate(937%) hue-rotate(333deg) brightness(98%) contrast(89%);
}

.definition-right {
    position: relative;
    margin-top: -9rem;
}

.definition-photo {
    max-width: 510px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    margin-top: -2rem;
}

.definition-photo:hover {
    transform: translateY(-4px);
}

.definition-photo-dede {
    max-width: 600px;
    height: auto;
    display: block;
    margin-top: 2rem;
    margin-left: -120px;
    transition: transform 0.3s ease;
}

.definition-photo-dede:hover {
    transform: translateY(-4px);
}

.origin-title {
    color: #E8A045;
    font-size: 75px;
    font-weight: 400;
    margin: 3rem 0 -1rem 0;
    text-align: left;
    transition: filter 0.4s ease, transform 0.3s ease;
    cursor: pointer;
}

.origin-title:hover {
    filter: drop-shadow(0 0 10px rgba(232, 160, 69, 0.22));
    transform: translateY(-3px);
}

.origin-subtitle {
    color: #F0D080;
    font-size: 24px;
    font-weight: 300;
    margin: 0;
    max-width: 550px;
    line-height: 1.6;
    text-align: left;
    transition: filter 0.4s ease;
    cursor: pointer;
}

.origin-subtitle:hover {
    filter: drop-shadow(0 0 10px rgba(232, 160, 69, 0.2));
}

.definition-photo-mario {
    max-width: 600px;
    height: auto;
    position: absolute;
    bottom: -64rem;
    right: 2rem;
    transition: transform 0.3s ease;
}

.definition-photo-mario:hover {
    transform: translateY(-4px);
}

.definition-photo-mario-mobile,
.definition-photo-julien-mobile {
    display: none;
}

.definition-right-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    position: absolute;
    bottom: -12rem;
    right: -2rem;
    transition: filter 0.4s ease;
    cursor: pointer;
}

.definition-right-group:hover {
    filter: drop-shadow(0 0 10px rgba(232, 160, 69, 0.2));
}

.definition-logo-goulamas {
    max-width: 900px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(74%) sepia(45%) saturate(937%) hue-rotate(333deg) brightness(98%) contrast(89%);
}

.definition-text-goulamas {
    color: #F0D080;
    font-size: 24px;
    font-weight: 300;
    margin: 0;
    max-width: 550px;
    line-height: 1.6;
    text-align: left;
    transition: filter 0.4s ease;
    cursor: pointer;
}

.definition-text-goulamas:hover {
    filter: drop-shadow(0 0 10px rgba(232, 160, 69, 0.2));
}

.definition-text {
    color: #F0D080;
    font-size: 24px;
    font-weight: 300;
    margin: 0;
    max-width: 550px;
    line-height: 1.6;
    text-align: left;
    transition: filter 0.4s ease;
    cursor: pointer;
}

.definition-text:hover {
    filter: drop-shadow(0 0 10px rgba(232, 160, 69, 0.2));
}

/* ── Typography ── */
h1 {
    font-size: 75px;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

h2 {
    font-size: 59px;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

h3 {
    font-size: 24px;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

p {
    font-size: 30px;
    margin-bottom: 1rem;
}

/* ── Wave Divider ── */
.wave-divider {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    line-height: 0;
    margin-top: -1px;
    margin-bottom: -2px; /* prevent hairline gap on Mac Firefox (subpixel rendering) */
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 120px;
}

/* ── Culinary Section ── */
.culinary-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0 2rem 4rem;
    background: linear-gradient(to bottom, #EDBE8C 0%, #D9A06A 100%);
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 8rem;
}

.culinary-content {
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.culinary-title {
    color: #1C0D04;
    font-size: 75px;
    font-weight: 400;
    margin: 0 0 0.4rem 0;
    text-align: left;
    transition: filter 0.4s ease, transform 0.3s ease;
    cursor: pointer;
}

.culinary-title:hover {
    filter: drop-shadow(0 0 10px rgba(28, 13, 4, 0.25));
    transform: translateY(-3px);
}

.culinary-subtitle {
    color: #1C0D04;
    font-size: 24px;
    font-weight: 300;
    margin: 0;
    line-height: 1.6;
    text-align: left;
    transition: filter 0.4s ease;
    cursor: pointer;
}

.culinary-subtitle:hover {
    filter: drop-shadow(0 0 10px rgba(28, 13, 4, 0.2));
}

.culinary-photo-laurent {
    max-width: 680px;
    height: auto;
    display: block;
    margin-top: 2rem;
    margin-left: -120px;
    transition: transform 0.3s ease;
}

.culinary-photo-laurent:hover {
    transform: translateY(-4px);
}

.culinary-logo-illu {
    max-width: 1200px;
    height: auto;
    position: absolute;
    top: 22rem;
    right: 2rem;
    transform: rotate(62deg) scaleX(-1);
    filter: brightness(0) saturate(100%) invert(5%) sepia(30%) saturate(1200%) hue-rotate(350deg) brightness(92%) contrast(105%);
    transition: transform 0.4s ease, opacity 1.2s ease-out;
    opacity: 0;
}

.culinary-logo-illu:hover {
    transform: rotate(62deg) scaleX(-1) scale(1.05);
}

.culinary-photo-alain {
    max-width: 550px;
    height: auto;
    position: absolute;
    top: 39rem;
    right: -8rem;
    transform: scaleX(-1);
    transition: transform 0.3s ease;
}

.culinary-photo-alain:hover {
    transform: scaleX(-1) translateY(-2px);
}

.tzigane-title {
    color: #1C0D04;
    font-size: 75px;
    font-weight: 400;
    margin: 2rem 0 0 -3rem;
    max-width: 450px;
    text-align: left;
    line-height: 1.1;
    transition: filter 0.4s ease, transform 0.3s ease;
    cursor: pointer;
}

.tzigane-title:hover {
    filter: drop-shadow(0 0 10px rgba(28, 13, 4, 0.25));
    transform: translateY(-3px);
}

.tzigane-subtitle {
    color: #1C0D04;
    font-size: 24px;
    font-weight: 300;
    margin: 1rem 0 3rem -3rem;
    max-width: 550px;
    line-height: 1.6;
    text-align: left;
    transition: filter 0.4s ease;
    cursor: pointer;
}

.tzigane-subtitle:hover {
    filter: drop-shadow(0 0 10px rgba(28, 13, 4, 0.2));
}

/* ── Footer ── */
footer {
    background-color: #EDBE8C;
    color: #1C0D04;
    padding: 1.5rem 3rem;
    border-top: 1.5px solid #1C0D04;
    margin-top: 0;
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

footer p,
footer .social-icons {
    position: relative;
    z-index: 2;
}

.footer-illu {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-left: 0.4rem;
    filter: brightness(0) saturate(100%) invert(5%) sepia(30%) saturate(1200%) hue-rotate(350deg) brightness(92%) contrast(105%);
}

footer p {
    font-size: 14px;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.social-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(5%) sepia(30%) saturate(1200%) hue-rotate(350deg) brightness(92%) contrast(105%);
}

footer.footer-subpage {
    background-color: transparent;
    border-top: 1.5px solid rgba(200, 121, 65, 0.25);
    margin-top: 6rem;
}

footer.footer-subpage p {
    color: #F0D080;
}

footer.footer-subpage .social-icon {
    filter: brightness(0) saturate(100%) invert(91%) sepia(18%) saturate(835%) hue-rotate(346deg) brightness(104%) contrast(96%);
}

footer.footer-subpage .footer-illu {
    filter: brightness(0) saturate(100%) invert(91%) sepia(18%) saturate(835%) hue-rotate(346deg) brightness(104%) contrast(96%);
}

/* ── Hamburger menu ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-secondary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

header.on-light-section .hamburger span {
    background-color: #1C0D04;
}

/* ── Audio Player ── */
.audio-player-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155, 52, 26, 0.35) 0%, rgba(200, 121, 65, 0.1) 40%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.audio-player > *:not(.audio-player-glow):not(.player-glow-bottom) {
    position: relative;
    z-index: 1;
}

.audio-player {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 2.5rem 3rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(200, 121, 65, 0.12);
    border-radius: 16px;
    overflow: hidden;
}

.player-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.player-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
    flex: 1;
}

.player-label {
    font-size: 11px;
    letter-spacing: 6px;
    color: #9B341A;
    text-transform: uppercase;
    font-weight: 400;
}

.player-track-title {
    font-size: 48px !important;
    color: #F0D080 !important;
    margin: 0 !important;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-album {
    font-size: 14px;
    color: #C87941;
    margin-top: 0.25rem;
}

.player-tracklist {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex-shrink: 0;
    min-width: 200px;
}

.tracklist-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 0.75rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.tracklist-item:hover {
    background: rgba(200, 121, 65, 0.08);
}

.tracklist-item.active .tracklist-title {
    color: #E8A045;
}

.tracklist-title {
    font-size: 14px;
    color: rgba(240, 208, 128, 0.5);
    transition: color 0.2s ease;
    white-space: nowrap;
}

.tracklist-duration {
    font-size: 12px;
    color: rgba(240, 208, 128, 0.3);
    margin-left: 1.5rem;
}

.player-waveform {
    width: 100%;
    height: 60px;
    cursor: pointer;
    margin-bottom: 1rem;
}

.waveform-bar {
    transition: fill 0.15s ease, filter 0.15s ease;
}

.player-progress-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.player-time {
    font-size: 12px;
    color: rgba(240, 208, 128, 0.5);
    min-width: 36px;
    font-variant-numeric: tabular-nums;
}

.player-track-progress {
    flex: 1;
    height: 2px;
    background: rgba(200, 121, 65, 0.15);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.player-track-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, #9B341A, #C87941, #E8A045);
    width: 0%;
    transition: width 0.1s linear;
}

.player-track-dot {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #F0D080;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(240, 208, 128, 0.5);
    transition: left 0.1s linear;
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.player-btn {
    background: none;
    border: none;
    color: #C87941;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.15s ease;
    padding: 0;
}

.player-btn:hover {
    color: #F0D080;
    transform: scale(1.1);
}

.player-btn-play {
    width: 56px;
    height: 56px;
    border: 1px solid #C87941 !important;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.player-btn-play:hover {
    background: #C87941;
    color: #1C0D04;
}

.player-glow-bottom {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 120px;
    background: radial-gradient(ellipse, rgba(200, 121, 65, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Responsive — Tablet (max 1024px) ── */
@media (max-width: 1024px) {
    .nav-links {
        gap: 2rem;
    }

    .nav-links a {
        font-size: 20px;
    }

    .definition-content {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 2rem;
        padding-right: 2rem;
        gap: 1.5rem;
    }

    .definition-left {
        align-items: flex-start;
        width: 100%;
    }

    .definition-right {
        margin-top: 0;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .definition-right-group {
        position: relative;
        bottom: auto;
        right: auto;
        align-items: flex-start;
    }

    .definition-logo {
        max-width: 320px;
    }

    .definition-logo-goulamas {
        max-width: 500px;
    }

    .definition-photo-mario {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 450px;
    }

    .definition-photo-dede {
        margin-left: 0;
    }

    .origin-title {
        margin: 2rem 0 0.3rem 0;
    }

    .culinary-photo-alain {
        position: relative;
        top: auto;
        right: auto;
        transform: scaleX(-1);
        max-width: 400px;
    }

    .culinary-logo-illu {
        position: relative;
        top: auto;
        right: auto;
        max-width: 600px;
    }

    .culinary-content {
        padding: 2rem;
    }

    .culinary-title,
    .culinary-subtitle,
    .tzigane-title,
    .tzigane-subtitle {
        text-align: left;
    }

    .tzigane-title {
        margin-left: 0;
    }

    .tzigane-subtitle {
        margin-left: 0;
    }

    .definition-text,
    .definition-text-goulamas,
    .origin-subtitle {
        text-align: left;
    }

    body::before {
        width: 1600px;
        height: 800px;
        opacity: 0.9;
    }

    .circle-grain {
        width: 1600px;
        height: 800px;
    }

    .glow-transition-light {
        width: 1100px;
        height: 600px;
        right: -400px;
        opacity: 0.9;
    }

    .glow-transition-grain {
        width: 1100px;
        height: 600px;
        right: -400px;
    }

    .gallery-item {
        width: 100%;
        max-width: 100%;
    }
}

/* ── Responsive — Mobile (max 768px) ── */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: relative;
        z-index: 110;
        -webkit-tap-highlight-color: transparent;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    header {
        padding: 1rem 1.5rem;
        position: fixed;
        z-index: 200;
    }

    nav {
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(28, 13, 4, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 105;
        padding: 2rem;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 20px;
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 104;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    header.on-light-section .hamburger span {
        background-color: #1C0D04;
    }

    header.on-light-section .hamburger.active span {
        background-color: var(--color-secondary);
    }

    header.on-light-section .nav-links a {
        color: var(--color-secondary);
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 16px;
    }

    .nav-links a {
        font-size: 20px;
    }

    p {
        font-size: 16px;
    }

    .hero {
        min-height: 60vh;
        padding: 1rem 1.5rem 6rem;
    }

    .main-logo {
        max-width: min(320px, 85vw);
    }

    .logo-container h3 {
        font-size: 14px;
        padding-left: 2rem;
    }

    .gallery {
        padding: 1rem 1.5rem 6rem;
    }

    .gallery-images {
        flex-direction: column;
        gap: 1.5rem;
    }

    .gallery-item {
        width: 100%;
        max-width: 100%;
    }

    .gallery-caption {
        font-size: 14px;
    }

    .gallery-img {
        border-radius: 12px;
    }

    .definition {
        padding: 0 1.5rem 2rem;
        overflow: hidden;
        margin-top: -3rem;
    }

    .definition-content {
        display: grid;
        grid-template-columns: 45% 55%;
        row-gap: 1rem;
        column-gap: 0.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        align-items: start;
    }

    .definition-left,
    .definition-right {
        display: contents;
    }

    .definition-photo {
        display: none;
    }

    .julien-block {
        grid-column: 1 / -1;
        grid-row: 1;
        overflow: hidden;
    }

    .definition-logo {
        max-width: 100%;
        display: block;
        margin-top: 0;
        margin-bottom: 0.75rem;
    }

    .definition-photo-julien-mobile {
        display: block;
        float: right;
        width: 48%;
        height: auto;
        shape-outside: url("../assets/images/Photo papier découpé - Julien.webp");
        shape-image-threshold: 0.01;
        shape-margin: 0.25rem;
        margin-left: 0.75rem;
        margin-top: 0.5rem;
    }

    .definition-text {
        font-size: 15px;
        max-width: 72%;
        text-align: left;
        line-height: 1.8;
        margin-top: 0.25rem;
    }

    .definition-right-group {
        grid-column: 1 / -1;
        grid-row: 2;
        position: relative;
        bottom: auto;
        right: auto;
        align-items: flex-start;
        margin-top: 2.5rem;
    }

    .definition-logo-goulamas {
        max-width: 55vw;
    }

    .definition-text-goulamas {
        font-size: 15px;
        max-width: 100%;
        text-align: left;
        line-height: 1.7;
    }

    .definition-photo-dede {
        grid-column: 1 / -1;
        grid-row: 3;
        max-width: 80vw;
        margin-left: -1rem;
        margin-top: 2.5rem;
    }

    .origin-title {
        grid-column: 1 / -1;
        grid-row: 5;
        font-size: 34px;
        margin: 1.5rem 0 0.4rem 0;
        text-align: left;
    }

    .origin-subtitle {
        grid-column: 1;
        grid-row: 6;
        font-size: 15px;
        max-width: 100%;
        text-align: left;
        line-height: 1.7;
        margin-top: 0;
    }

    .origin-block {
        grid-column: 1 / -1;
        grid-row: 4;
        overflow: hidden;
    }

    .definition-photo-mario {
        display: none;
    }

    .definition-photo-mario-mobile {
        display: block;
        float: right;
        width: 58%;
        height: auto;
        shape-outside: url("../assets/images/Photo papier découpé - Mario.webp");
        shape-image-threshold: 0.01;
        shape-margin: 0.25rem;
        margin-left: 0.75rem;
        margin-top: 0.5rem;
    }

    .culinary-section {
        padding: 0 1.5rem 5rem;
    }

    .culinary-content {
        padding: 1.5rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .culinary-title {
        font-size: 34px;
        text-align: left;
    }

    .culinary-subtitle {
        font-size: 15px;
        text-align: left;
        line-height: 1.7;
    }

    .culinary-photo-laurent {
        max-width: 85vw;
        margin-left: -0.5rem;
        margin-top: 1.5rem;
    }

    .culinary-logo-illu {
        display: none;
    }

    .culinary-photo-alain {
        position: relative;
        top: auto;
        right: auto;
        max-width: 65vw;
        display: block;
        margin: 1.5rem auto;
        align-self: center;
        order: 10;
    }

    .tzigane-title {
        font-size: 34px;
        margin: 1.5rem 0 0.5rem 0;
        max-width: 100%;
        text-align: left;
    }

    .tzigane-subtitle {
        font-size: 15px;
        margin: 0.5rem 0 1.5rem 0;
        max-width: 100%;
        text-align: left;
        line-height: 1.7;
    }

    .wave-divider svg {
        height: 60px;
    }

    footer {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    body::before {
        width: 1200px;
        height: 700px;
        opacity: 0.9;
    }

    .circle-grain {
        width: 1200px;
        height: 700px;
    }

    .circle-glow-bottom,
    .circle-glow-left {
        width: 800px;
        height: 600px;
        opacity: 0.5;
    }

    .glow-transition-light {
        width: 900px;
        height: 500px;
        right: -300px;
        bottom: -200px;
        opacity: 0.9;
    }

    .glow-transition-grain {
        width: 900px;
        height: 500px;
        right: -300px;
        bottom: -200px;
    }

    main {
        padding-top: 80px;
    }

    .content {
        padding: 1rem;
    }

    section {
        margin-bottom: 1.5rem;
    }

    /* Audio player mobile */
    .audio-player {
        padding: 1.5rem 1.25rem 1.25rem;
        margin: 0 1rem 2rem;
        border-radius: 12px;
    }

    .player-top {
        flex-direction: column;
        gap: 1.25rem;
    }

    .player-track-title {
        font-size: 28px !important;
    }

    .player-tracklist {
        min-width: 0;
        width: 100%;
    }

    .player-waveform {
        height: 40px;
    }

    .player-controls {
        gap: 24px;
    }

    .player-btn-play {
        width: 48px;
        height: 48px;
    }
}

/* ── Responsive — Small mobile (max 400px) ── */
@media (max-width: 400px) {
    h1 {
        font-size: 28px;
    }

    .hero {
        min-height: 60vh;
        padding: 1rem 1rem 4rem;
    }

    .main-logo {
        max-width: 75vw;
    }

    .logo-container h3 {
        font-size: 13px;
        padding-left: 1.75rem;
    }

    .nav-links a {
        font-size: 18px;
    }

    header {
        padding: 0.75rem 1rem;
    }

    .header-logo {
        height: 28px;
    }

    .definition-text,
    .definition-text-goulamas,
    .origin-subtitle,
    .culinary-subtitle,
    .tzigane-subtitle {
        font-size: 14px;
    }

    .origin-title,
    .culinary-title,
    .tzigane-title {
        font-size: 28px;
    }

    .definition-logo {
        max-width: 42vw;
    }

    .definition-logo-goulamas {
        max-width: 50vw;
    }

    .culinary-photo-laurent {
        max-width: 90vw;
    }

    .culinary-photo-alain {
        max-width: 70vw;
    }
}

/* ================================================================
   Overrides de body::before par page
   ================================================================ */

body.page-actualites::before {
    top: 40% !important;
}

body.page-videos::before {
    top: 65% !important;
}

body.page-espace-pro::before {
    left: 80% !important;
}

/* videos-musiques : padding bas du main */
body.page-videos main {
    padding-bottom: 8rem;
}

/* ================================================================
   Actualités
   ================================================================ */

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
}

.page-title {
    text-align: center;
    font-size: 75px;
    color: #E8A045;
    margin: 3rem 0 4rem;
    animation: fadeInDown 0.8s ease-out;
}

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

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 6rem;
}

/* Spine / vertical line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(200, 121, 65, 0.3) 5%,
        rgba(200, 121, 65, 0.3) 95%,
        transparent 100%
    );
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 3.5rem;
    opacity: 0;
    transform: translateX(-40px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.timeline-item:nth-child(even) {
    transform: translateX(40px);
    animation-name: slideInRight;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-date {
    width: calc(50% - 30px);
    text-align: right;
    padding-right: 2rem;
    flex-shrink: 0;
}

.timeline-day {
    font-size: 48px;
    color: #E8A045;
    line-height: 1;
    font-weight: 400;
}

.timeline-month {
    font-size: 14px;
    color: #C87941;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-variant: small-caps;
    margin-top: 0.25rem;
}

.timeline-dot-wrapper {
    position: relative;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-shrink: 0;
    padding-top: 12px;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #C87941;
    background: transparent;
    position: relative;
    z-index: 2;
}

.timeline-item.next .timeline-dot {
    background: #E8A045;
    border-color: #E8A045;
    box-shadow: 0 0 12px rgba(232, 160, 69, 0.5), 0 0 30px rgba(232, 160, 69, 0.2);
}

.timeline-content {
    width: calc(50% - 30px);
    padding-left: 2rem;
    position: relative;
}

.timeline-event-title {
    font-size: 24px;
    color: #F0D080;
    margin: 0 0 0.25rem;
    font-weight: 400;
    line-height: 1.3;
}

.timeline-venue {
    font-size: 14px;
    color: #C87941;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.timeline-description {
    font-size: 14px;
    color: #F0D080;
    opacity: 0.5;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.badge-next {
    position: absolute;
    top: -18px;
    left: 2rem;
    background: #9B341A;
    color: #F0D080;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 3px 10px;
    border-radius: 2px;
    font-family: 'Alike Angular', serif;
    z-index: 3;
}

.badge-complet {
    display: inline-block;
    background: transparent;
    border: 1px solid #9B341A;
    color: #9B341A;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 8px 20px;
    font-family: 'Alike Angular', serif;
    cursor: default;
    opacity: 0.7;
}

.btn-savoir-plus {
    display: inline-block;
    border: 1px solid #C87941;
    background: transparent;
    color: #C87941;
    font-family: 'Alike Angular', serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 8px 20px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-savoir-plus:hover {
    background-color: #C87941;
    color: #1C0D04;
}

/* ── Section dates passées ── */
.past-section {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 0 1rem;
}

.past-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    background: none;
    border: none;
    border-top: 1px solid rgba(200, 121, 65, 0.25);
    padding: 1.25rem 0 0.5rem;
    cursor: pointer;
    color: #C87941;
    font-family: 'Alike Angular', serif;
    font-size: 18px;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    text-align: left;
}

.past-toggle:hover {
    opacity: 1;
}

.past-toggle-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.past-timeline {
    margin-top: 1rem;
}

/* Événements passés : aspect atténué */
.timeline-item.past .timeline-day {
    color: #9B6835;
    opacity: 0.55;
}

.timeline-item.past .timeline-month {
    color: #7A5030;
    opacity: 0.55;
}

.timeline-item.past .timeline-dot {
    background: #5A3820;
    border-color: #5A3820;
    opacity: 0.45;
}

.timeline-item.past .timeline-event-title {
    color: #A08060;
    opacity: 0.6;
}

.timeline-item.past .timeline-venue {
    color: #7A5030;
    opacity: 0.55;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
        margin: 2rem 0 2.5rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row;
        align-items: flex-start;
        transform: translateX(-30px);
        animation-name: slideInLeft;
    }

    .timeline-item:nth-child(even) {
        transform: translateX(-30px);
        animation-name: slideInLeft;
    }

    .timeline-date {
        display: none;
    }

    .timeline-dot-wrapper {
        width: 40px;
        min-width: 40px;
        justify-content: center;
        padding-top: 4px;
    }

    .timeline-content {
        width: 100%;
        padding-left: 1rem;
    }

    .timeline-mobile-date {
        display: block;
        margin-bottom: 0.5rem;
    }

    .timeline-mobile-date .timeline-day {
        font-size: 32px;
        display: inline;
    }

    .timeline-mobile-date .timeline-month {
        display: inline;
        margin-left: 0.5rem;
        font-size: 12px;
    }

    .badge-next {
        left: 1rem;
        top: -22px;
    }

    .timeline-event-title {
        font-size: 18px;
    }
}

@media (min-width: 769px) {
    .timeline-mobile-date {
        display: none;
    }
}

/* ================================================================
   Vidéos & Musiques
   ================================================================ */

/* ── Scroll reveal ── */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .video-section {
        padding: 0 1rem !important;
    }

    .section-title-music {
        margin-top: 4rem !important;
    }
}

/* ================================================================
   Espace Pro
   ================================================================ */

/* ── Scroll reveal overrides for espace-pro ── */
.pro-section .scroll-reveal,
.spectacles-section .scroll-reveal,
.dossier-section .scroll-reveal {
    transform: translate3d(0, 30px, 0);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.pro-section .scroll-reveal.is-visible,
.spectacles-section .scroll-reveal.is-visible,
.dossier-section .scroll-reveal.is-visible {
    transform: translate3d(0, 0, 0);
}

@media (max-width: 1100px) {
    .pro-section .scroll-reveal,
    .spectacles-section .scroll-reveal,
    .dossier-section .scroll-reveal {
        transition-delay: 0s !important;
    }
}

@media (max-width: 768px) {
    .pro-section .scroll-reveal,
    .spectacles-section .scroll-reveal,
    .dossier-section .scroll-reveal {
        transform: translate3d(0, 6px, 0);
        transition: opacity 1.4s ease, transform 1.2s ease-out;
    }

    .pro-section .scroll-reveal.is-visible,
    .spectacles-section .scroll-reveal.is-visible,
    .dossier-section .scroll-reveal.is-visible {
        transform: translate3d(0, 0, 0);
    }
}

.contact-block {
    position: relative;
    max-width: 600px;
    width: 100%;
    padding: 60px 40px;
    border: 1px solid rgba(200, 121, 65, 0.12);
    text-align: center;
}

.contact-block::before,
.contact-block::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: #C87941;
    border-style: solid;
}

.contact-block::before {
    top: -1px;
    left: -1px;
    border-width: 1px 0 0 1px;
}

.contact-block::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 1px 1px 0;
}

.contact-title {
    font-size: 42px !important;
    color: #F0D080 !important;
    margin: 0 !important;
    font-weight: 400;
}

.contact-separator {
    width: 40px;
    height: 1px;
    background: rgba(200, 121, 65, 0.5);
    margin: 28px auto;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.contact-label {
    font-size: 10px;
    letter-spacing: 5px;
    color: rgba(200, 121, 65, 0.45);
    text-transform: uppercase;
}

.contact-value {
    font-size: 20px;
    color: #E8A045;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.contact-value::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    right: 50%;
    height: 1px;
    background: #C87941;
    transition: left 0.3s ease, right 0.3s ease;
}

.contact-value:hover {
    color: #F0D080;
}

.contact-value:hover::after {
    left: 0;
    right: 0;
}

.pro-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 60px;
    gap: 120px;
}

.proposal-block {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.proposal-title {
    font-size: 75px;
    color: #F0D080;
    font-weight: 400;
    margin: 0 0 28px 0;
    text-align: left;
    line-height: 1.1;
}

.proposal-text {
    font-size: 16px;
    color: rgba(240, 208, 128, 0.7);
    text-align: left;
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.3px;
}

.spectacles-section {
    width: 100%;
    padding: 0 60px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.spectacles-header {
    max-width: 800px;
    width: 100%;
    margin-bottom: 72px;
}

.spectacles-main-title {
    font-size: 75px;
    color: #F0D080;
    font-weight: 400;
    margin: 0;
    text-align: left;
    line-height: 1.1;
}

.spectacles-grid {
    display: flex;
    gap: 24px;
    max-width: 1100px;
    width: 100%;
    align-items: flex-start;
}

.spectacles-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.spectacle-card {
    border-radius: 20px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.spectacle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 2px;
    border-radius: 0 0 4px 4px;
}

.spectacle-card:hover {
    transform: translateY(-5px);
}

.spectacle-title {
    font-size: 42px;
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
}

.spectacle-text {
    font-size: 15px;
    color: rgba(240, 208, 128, 0.75);
    line-height: 1.85;
    margin: 0;
}

.spectacle-details {
    margin-top: 2px;
    padding-top: 16px;
    border-top: 1px solid rgba(200, 121, 65, 0.15);
}

.spectacle-details p {
    font-size: 13px;
    color: rgba(240, 208, 128, 0.5);
    line-height: 1.75;
    margin: 0;
    letter-spacing: 0.2px;
}

.spectacle-details strong {
    color: rgba(240, 208, 128, 0.7);
}

/* Card 1 — A table ! */
.card-1 {
    background: linear-gradient(135deg, rgba(155, 52, 26, 0.22) 0%, rgba(28, 13, 4, 0.55) 65%);
    border-color: rgba(155, 52, 26, 0.45);
    box-shadow: 0 4px 40px rgba(155, 52, 26, 0.1);
}

.card-1:hover {
    box-shadow: 0 12px 48px rgba(155, 52, 26, 0.2);
}

.card-1::before {
    background: linear-gradient(90deg, transparent, #9B341A, #C87941, #9B341A, transparent);
    box-shadow: 0 0 14px rgba(155, 52, 26, 0.7);
}

.card-1 .spectacle-title { color: #C87941; }

/* Card 2 — Apéro */
.card-2 {
    background: linear-gradient(135deg, rgba(232, 160, 69, 0.18) 0%, rgba(28, 13, 4, 0.55) 65%);
    border-color: rgba(232, 160, 69, 0.38);
    box-shadow: 0 4px 40px rgba(232, 160, 69, 0.08);
}

.card-2:hover {
    box-shadow: 0 12px 48px rgba(232, 160, 69, 0.18);
}

.card-2::before {
    background: linear-gradient(90deg, transparent, #C87941, #E8A045, #C87941, transparent);
    box-shadow: 0 0 14px rgba(232, 160, 69, 0.55);
}

.card-2 .spectacle-title { color: #E8A045; }

/* Card 3 — Show les marrons */
.card-3 {
    background: linear-gradient(45deg, rgba(200, 121, 65, 0.2) 0%, rgba(155, 52, 26, 0.1) 100%);
    border-color: rgba(200, 121, 65, 0.45);
    box-shadow: 0 4px 40px rgba(200, 121, 65, 0.08);
}

.card-3:hover {
    box-shadow: 0 12px 48px rgba(200, 121, 65, 0.18);
}

.card-3::before {
    background: linear-gradient(90deg, transparent, #C87941, #E8A045, #C87941, transparent);
    box-shadow: 0 0 14px rgba(200, 121, 65, 0.55);
}

.card-3 .spectacle-title { color: #C87941; }

/* Card 4 — Déambulation */
.card-4 {
    background: linear-gradient(135deg, rgba(200, 121, 65, 0.16) 0%, rgba(240, 208, 128, 0.06) 100%);
    border-color: rgba(240, 208, 128, 0.28);
    box-shadow: 0 4px 40px rgba(240, 208, 128, 0.06);
}

.card-4:hover {
    box-shadow: 0 12px 48px rgba(240, 208, 128, 0.13);
}

.card-4::before {
    background: linear-gradient(90deg, transparent, #E8A045, #F0D080, #E8A045, transparent);
    box-shadow: 0 0 14px rgba(240, 208, 128, 0.45);
}

.card-4 .spectacle-title { color: #F0D080; }

/* Boutons noms cliquables (contact) */
.contact-name-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Alike Angular', serif;
    font-size: 20px;
    color: #F0D080;
    position: relative;
    padding: 0.3rem 0;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.contact-name-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #E8A045;
    transition: width 0.3s ease;
}

.contact-name-btn:hover {
    color: #E8A045;
}

.contact-name-btn:hover::after {
    width: 100%;
}

.contact-phone-reveal {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 18px;
    color: #E8A045;
    letter-spacing: 1px;
    text-decoration: none;
    transition: max-height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
    margin-top: 0;
}

.contact-phone-reveal.visible {
    max-height: 60px;
    opacity: 1;
    margin-top: 6px;
}

/* Dossier de presse */
.dossier-section {
    width: 100%;
    padding: 0 60px 140px;
    display: flex;
    justify-content: center;
}

.dossier-inner {
    max-width: 800px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 56px 64px;
    border: 1px solid rgba(200, 121, 65, 0.18);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(155, 52, 26, 0.1) 0%, rgba(28, 13, 4, 0.4) 100%);
    position: relative;
}

.dossier-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 121, 65, 0.4), transparent);
}

.dossier-title {
    font-size: 75px;
    color: #F0D080;
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
    flex-shrink: 0;
}

.dossier-arrow {
    color: #C87941;
    display: inline-block;
    transition: transform 0.3s ease;
}

.dossier-arrow-v {
    display: none;
}

.dossier-inner:hover .dossier-arrow {
    transform: translateX(6px);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: 1px solid rgba(200, 121, 65, 0.5);
    border-radius: 12px;
    color: #E8A045;
    text-decoration: none;
    font-family: 'Alike Angular', serif;
    font-size: 16px;
    letter-spacing: 1px;
    background: rgba(200, 121, 65, 0.08);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-download:hover {
    background: rgba(200, 121, 65, 0.18);
    border-color: rgba(200, 121, 65, 0.8);
    color: #F0D080;
    transform: translateY(-2px);
}

.btn-download svg {
    transition: transform 0.3s ease;
}

.btn-download:hover svg {
    transform: translateY(3px);
}

@media (max-width: 1100px) {
    .pro-section {
        padding: 80px 40px;
        gap: 80px;
    }

    .spectacles-section {
        padding: 0 40px 80px;
    }

    .spectacles-header {
        margin-bottom: 52px;
    }

    .spectacles-grid {
        flex-direction: column;
    }

    .spectacles-col {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-block {
        padding: 40px 24px;
    }

    .contact-title {
        font-size: 28px !important;
    }

    .contact-value {
        font-size: 16px;
    }

    .pro-section {
        padding: 60px 24px;
        gap: 60px;
    }

    .proposal-title {
        font-size: 36px;
    }

    .proposal-text,
    .pro-bottom-text {
        font-size: 14px;
    }

    .spectacles-section {
        padding: 0 24px 60px;
    }

    .spectacles-header {
        margin-bottom: 40px;
    }

    .spectacles-main-title {
        font-size: 36px;
    }

    .spectacle-card {
        padding: 28px 22px;
    }

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

    .spectacle-text {
        font-size: 14px;
    }

    .spectacle-details p {
        font-size: 12px;
    }

    .dossier-section {
        padding: 0 24px 80px;
    }

    .dossier-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding: 36px 28px;
    }

    .dossier-title {
        font-size: 36px;
    }

    .dossier-arrow-h {
        display: none;
    }

    .dossier-arrow-v {
        display: inline-block;
    }

    .dossier-inner:hover .dossier-arrow {
        transform: translateY(6px);
    }
}
