/* Gradient animé global - réduit sur mobile */
body::before {
	content: "";
	position: fixed; inset: -50% -50%;
	background: conic-gradient(from 90deg, rgba(255,183,3,.18), rgba(225,29,72,.14), rgba(42,157,143,.14), rgba(255,61,0,.12), rgba(255,183,3,.18));
	filter: blur(80px) saturate(1.2);
	animation: spin 30s linear infinite;
	z-index: -1;
}
@keyframes spin { to { transform: rotate(360deg); } }
/* Désactiver animation sur mobile si l'utilisateur préfère réduire les animations */
@media (prefers-reduced-motion: reduce) {
	body::before { animation: none; }
}

/* Effet glass */
.glass { backdrop-filter: blur(10px); background: rgba(255,255,255,0.04); border: 1px solid var(--border); }

/* Glow */
.glow { position: relative; }
.glow::after { content: ""; position: absolute; inset: -2px; border-radius: inherit; background: radial-gradient(120px 50px at 10% 10%, rgba(255,183,3,.6), transparent 60%), radial-gradient(120px 50px at 90% 80%, rgba(225,29,72,.5), transparent 60%); filter: blur(16px); opacity: .55; z-index: -1; }

/* Chips */
.chip { display: inline-block; padding: .35rem .7rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); transition: transform .2s ease, background .2s ease; }
.chip:hover { transform: translateY(-2px); background: var(--surface-2); }

/* Hover cartes */
.embed-card { transition: transform .25s ease, box-shadow .25s ease; }
.embed-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.25); }

/* Reveal au scroll */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* Equalizer */
.equalizer { display: grid; grid-auto-flow: column; gap: 4px; align-items: end; height: 36px; margin-top: 1rem; }
.equalizer .bar { width: 6px; background: linear-gradient(180deg, var(--accent-2), var(--accent)); border-radius: 3px; height: 10px; animation: beat 1.2s ease-in-out infinite; }
.equalizer .bar:nth-child(2) { animation-delay: .1s; }
.equalizer .bar:nth-child(3) { animation-delay: .2s; }
.equalizer .bar:nth-child(4) { animation-delay: .3s; }
.equalizer .bar:nth-child(5) { animation-delay: .4s; }
.equalizer .bar:nth-child(6) { animation-delay: .5s; }
.equalizer .bar:nth-child(7) { animation-delay: .6s; }
.equalizer .bar:nth-child(8) { animation-delay: .7s; }
.equalizer .bar:nth-child(9) { animation-delay: .8s; }
.equalizer .bar:nth-child(10) { animation-delay: .9s; }
@keyframes beat { 0%, 100% { height: 10px; } 50% { height: 34px; } }

/* Hero boutons accentués */
.btn-primary { box-shadow: 0 6px 24px rgba(255,183,3,.25); }
.btn-outline { border-width: 2px; }

/* Ajustements existants ci-dessous */
:root {
	--bg: #0b0b0c;
	--text: #e9e9ee;
	--muted: #b8b8c6;
	--primary: #ffb703; /* or */
	--accent: #ff3d00;
	--accent-2: #2a9d8f;
	--surface: #141416;
	--surface-2: #1c1d21;
	--border: #2a2b31;
}

/* (Palette mode clair supprimée) */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: 'Germania One', cursive, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 1.125rem;
	letter-spacing: 0.05em;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1100px, 92%); margin: 0 auto; }

/* Header */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: var(--surface);
	border-bottom: 1px solid var(--border);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 0; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; color: var(--text); letter-spacing: 0.06em; }
.logo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid #ffffff; box-shadow: 0 0 0 2px rgba(0,0,0,.2); }
.site-nav { display: flex; gap: 1rem; align-items: center; }
.site-nav a { color: var(--text); opacity: .9; letter-spacing: 0.04em; }
.site-nav .btn { margin-left: .5rem; }
.icon-btn { background: var(--surface-2); color: var(--text); border: 1px solid var(--border); padding: .4rem .6rem; border-radius: 8px; cursor: pointer; }

#menuToggle { display: none; }

/* Hero */
.hero { position: relative; min-height: 80vh; display: grid; align-items: center; margin-top: -10px; }
.hero-media { position: absolute; inset: 0; background:
	linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.75)),
	url('WhatsApp Image 2025-09-15 at 10.07.48.jpeg') center top/cover no-repeat; filter: saturate(1.2) contrast(1.05); }
.hero-particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-content { position: relative; padding: 6rem 0 3rem; }
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); margin: 0 0 .5rem; letter-spacing: 0.08em; }
.hero p { color: var(--muted); max-width: 60ch; }
.tagline { color: var(--text); opacity: .92; font-weight: 600; line-height: 1.5; font-size: 1.1rem; letter-spacing: 0.04em; }
.tagline strong { background: linear-gradient(90deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-group { display: flex; gap: .8rem; margin: 1rem 0 1.5rem; flex-wrap: wrap; }
.social-icons { display: flex; gap: .8rem; margin-top: .6rem; justify-content: center; }
.icon-btn-round { width: 44px; height: 44px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--text); transition: transform .2s ease, background .2s ease, color .2s ease; }
.icon-btn-round:hover { transform: translateY(-2px); background: var(--surface-2); color: var(--accent-2); }
.icon-btn-round svg { width: 20px; height: 20px; }
.socials { display: flex; gap: .8rem; list-style: none; padding: 0; margin: 1rem 0 0; }
.socials a { background: var(--surface); border: 1px solid var(--border); color: var(--text); padding: .4rem .7rem; border-radius: 999px; }

/* Sections */
.section { padding: 4rem 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-top: 0; letter-spacing: 0.06em; }
.section h1 { font-size: clamp(2rem, 4vw, 2.6rem); letter-spacing: 0.06em; }
.section h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); letter-spacing: 0.05em; }

.grid.embeds { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
@media (max-width: 600px) {
	.grid.embeds { grid-template-columns: 1fr; gap: 0.8rem; }
}
.embed-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: .6rem; }
.embed-card iframe { width: 100%; border-radius: 10px; }
@media (max-width: 768px) {
	.embed-card iframe { height: auto; min-height: 200px; }
}
@media (max-width: 768px) {
	.embed-card iframe { height: auto; min-height: 200px; }
}

.cols { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: start; }
.press-photos { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.lead { font-size: 1.2rem; color: var(--text); opacity: .95; margin-bottom: .6rem; letter-spacing: 0.04em; }
.keylines { list-style: none; padding: 0; margin: .4rem 0 0; display: grid; gap: .3rem; }
.keylines li { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: .5rem .7rem; }
.photo-beat { border-radius: 12px; transform-origin: center; animation: photoPulse 2.4s ease-in-out infinite; box-shadow: 0 10px 30px rgba(0,0,0,.25); }
@keyframes photoPulse {
	0%, 100% { transform: scale(1); filter: saturate(1) brightness(1); }
	50% { transform: scale(1.03); filter: saturate(1.1) brightness(1.05); }
}

/* Variante rythmique décalée */
.press-photos .photo-beat:nth-child(2) { animation-delay: .6s; }

/* Slider */
.slider { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .6rem; }
.slides { display: grid; grid-auto-flow: column; grid-auto-columns: 80%; gap: .8rem; overflow-x: auto; scroll-snap-type: x mandatory; }
.slides img { height: 360px; object-fit: cover; border-radius: 12px; scroll-snap-align: center; }
.slider-btn { background: var(--surface-2); border: 1px solid var(--border); color: var(--text); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; }

/* Grille galerie */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .8rem; }
.gallery-grid img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; transition: transform .25s ease; }
.gallery-grid img:hover { transform: scale(1.03); }

/* Buttons */
.btn { display: inline-block; padding: .6rem 1rem; border-radius: 999px; border: 1px solid transparent; font-weight: 600; letter-spacing: 0.04em; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--accent)); color: #111; }
.btn-outline { background: transparent; border-color: var(--accent-2); color: var(--text); }
.btn:hover { filter: brightness(1.05); }

/* Forms */
.contact-form { display: grid; gap: .8rem; background: var(--surface); border: 1px solid var(--border); padding: 1rem; border-radius: 12px; }
.contact-form label { display: grid; gap: .3rem; }
.contact-form input, .contact-form textarea { 
	background: var(--surface-2); 
	color: var(--text); 
	border: 1px solid var(--border); 
	padding: .6rem .7rem; 
	border-radius: 10px; 
	font-size: 1rem;
	font-family: inherit;
}
.form-actions { display: flex; justify-content: end; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: var(--surface); }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.back-to-top { background: var(--surface-2); border: 1px solid var(--border); padding: .4rem .6rem; border-radius: 8px; }

/* Responsive - Optimisé pour mobile */
/* Tablet */
@media (max-width: 900px) {
	.cols { grid-template-columns: 1fr; }
	.container { width: min(1100px, 96%); }
	.section { padding: 3rem 0; }
}

/* Mobile Large */
@media (max-width: 768px) {
	body { font-size: 1rem; letter-spacing: 0.03em; }
	
	.container { width: 94%; }
	
	.nav-wrap { padding: 0.5rem 0; }
	.logo { width: 48px; height: 48px; }
	.brand-name { font-size: 1.1rem; }
	
	.hero { min-height: 70vh; margin-top: 0; }
	.hero-content { padding: 4rem 0 2.5rem; }
	.hero h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); letter-spacing: 0.06em; margin-bottom: 0.8rem; }
	.tagline { font-size: 0.95rem; line-height: 1.6; letter-spacing: 0.03em; }
	
	.section { padding: 2.5rem 0; }
	.section h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); letter-spacing: 0.04em; }
	.section h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); letter-spacing: 0.04em; }
	.section h3 { font-size: clamp(1.2rem, 4vw, 1.5rem); letter-spacing: 0.03em; }
	
	.lead { font-size: 1.05rem; letter-spacing: 0.03em; }
	
	.cta-group { gap: 0.6rem; margin: 1.2rem 0 1.2rem; }
	.btn { padding: 0.5rem 0.9rem; font-size: 0.95rem; }
	
	.social-icons { gap: 0.6rem; margin-top: 0.8rem; }
	.icon-btn-round { width: 40px; height: 40px; }
	.icon-btn-round svg { width: 18px; height: 18px; }
	
	.gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.6rem; }
	.gallery-grid img { height: 140px; }
	
	.embed-card { padding: 0.5rem; }
	
	.footer-wrap { flex-direction: column; gap: 0.8rem; text-align: center; padding: 1.2rem 0; }
}

/* Mobile Small */
@media (max-width: 480px) {
	body { font-size: 0.95rem; }
	
	.container { width: 92%; }
	
	.nav-wrap { padding: 0.4rem 0; }
	.logo { width: 42px; height: 42px; }
	.brand-name { font-size: 1rem; }
	
	.hero { min-height: 60vh; }
	.hero-content { padding: 3rem 0 2rem; }
	.hero h1 { font-size: clamp(1.5rem, 7vw, 2.4rem); letter-spacing: 0.05em; margin-bottom: 0.6rem; }
	.tagline { font-size: 0.9rem; line-height: 1.5; }
	
	.section { padding: 2rem 0; }
	.section h2 { font-size: clamp(1.4rem, 6vw, 2rem); }
	.section h1 { font-size: clamp(1.4rem, 6vw, 2rem); }
	
	.cta-group { flex-direction: column; width: 100%; }
	.cta-group .btn { width: 100%; text-align: center; }
	
	.social-icons { flex-wrap: wrap; justify-content: center; }
	
	.gallery-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.5rem; }
	.gallery-grid img { height: 120px; }
	
	.contact-form { padding: 0.8rem; }
	.contact-form input, .contact-form textarea { padding: 0.5rem 0.6rem; font-size: 0.95rem; }
	
	.press-photos { grid-template-columns: 1fr; gap: 0.8rem; }
}

/* Menu mobile */
@media (max-width: 800px) {
	.site-nav { 
		position: fixed; 
		inset: 56px 0 auto 0; 
		background: var(--surface); 
		border-bottom: 1px solid var(--border); 
		padding: 1rem 4%; 
		display: grid; 
		gap: 0.8rem; 
		transform: translateY(-120%); 
		transition: transform .3s ease;
		box-shadow: 0 4px 12px rgba(0,0,0,.3);
	}
	.site-nav.open { transform: translateY(0); }
	.site-nav a { 
		padding: 0.6rem 0; 
		border-bottom: 1px solid rgba(255,255,255,.05);
		font-size: 1rem;
	}
	#menuToggle { display: inline-block; }
	.header-contact { display: none; }
	.site-nav .btn { display: block; margin-left: 0; margin-top: 0.5rem; }
}

/* Centrage léger du menu en desktop */
@media (min-width: 801px) {
	.nav-wrap { position: relative; }
	.site-nav { position: absolute; left: 50%; transform: translateX(-50%); }
	.header-contact { position: absolute; right: 0; top: 50%; transform: translateY(-50%); display: inline-block; }
	.site-nav .btn { display: none; }
}

/* Light mode tweaks for hero bg overlay */
/* (Tweaks mode clair supprimés) */

/* (Styles vinyle supprimés) */

/* Notes flottantes */
.float-notes { position: absolute; left: 4%; bottom: 12%; display: grid; gap: .3rem; grid-auto-flow: column; pointer-events: none; }
.float-notes span { font-size: clamp(1.1rem, 2.4vw, 1.6rem); color: var(--accent-2); opacity: .8; animation: floatUp 6s ease-in-out infinite; }
.float-notes span:nth-child(2) { animation-delay: 1s; color: var(--accent); }
.float-notes span:nth-child(3) { animation-delay: 2s; }
.float-notes span:nth-child(4) { animation-delay: 3s; color: var(--primary); }
.float-notes span:nth-child(5) { animation-delay: 4s; }
.float-notes span:nth-child(6) { animation-delay: 5s; }
@keyframes floatUp { 0% { transform: translateY(0) translateX(0); opacity: .0; } 15% { opacity: .9; } 50% { transform: translateY(-28px) translateX(8px); } 100% { transform: translateY(-56px) translateX(0); opacity: 0; }
}

/* Bandeau défilant */
.marquee { position: relative; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,.02); }
.marquee-track { display: inline-flex; gap: 2rem; white-space: nowrap; padding: .5rem 0; animation: marquee 24s linear infinite; }
.marquee span { color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Vague sonore */
.soundwave { position: absolute; inset: auto 0 0 0; height: 90px; pointer-events: none; }
.soundwave svg { width: 100%; height: 100%; display: block; }
.wave-path { fill: rgba(255,255,255,.06); animation: wavePulse 5s ease-in-out infinite; }
@keyframes wavePulse { 0%, 100% { d: path('M0,60 C150,20 300,100 450,60 C600,20 750,100 900,60 C1050,20 1200,100 1200,100 L1200,120 L0,120 Z'); } 50% { d: path('M0,70 C150,30 300,90 450,70 C600,30 750,90 900,70 C1050,30 1200,90 1200,90 L1200,120 L0,120 Z'); } }

/* Ajustements responsive vinyle/notes */
@media (max-width: 700px) {
	.record-scene { position: relative; margin: 2rem auto 0; right: auto; bottom: auto; width: 78%; height: auto; aspect-ratio: 1/1; }
	.float-notes { left: 6%; bottom: 4%; }
}

/* Optimisations performances mobile - Réduire animations lourdes */
@media (max-width: 768px) {
	/* Réduire les animations de particules et notes sur mobile */
	.hero-particles { opacity: 0.4; }
	.float-notes { opacity: 0.6; }
	.float-notes span { animation-duration: 8s; }
	
	/* Réduire les effets de blur coûteux */
	.glow::after { filter: blur(8px); opacity: .4; }
	body::before { filter: blur(60px) saturate(1); }
	
	/* Optimiser les transitions */
	.embed-card { transition: transform .2s ease; }
	.embed-card:hover { transform: translateY(-2px); }
}

/* Désactiver animations si l'utilisateur préfère réduire les animations */
@media (prefers-reduced-motion: reduce) {
	* { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
	.hero-particles { display: none; }
	.float-notes { display: none; }
}

/* Header link underline animation */
.site-nav a { position: relative; }
.site-nav a::after { content: ""; position: absolute; left: 50%; bottom: -6px; width: 0; height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent)); transition: width .25s ease, left .25s ease; }
.site-nav a:hover::after { width: 100%; left: 0; }

/* Page À propos - Styles professionnels */
.about-intro { max-width: 800px; margin: 0 auto; text-align: center; padding: 2rem 0; }
.about-intro h1 { margin-bottom: 1.5rem; background: linear-gradient(90deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead-intro { font-size: 1.15rem; line-height: 1.8; color: var(--text); opacity: 0.95; margin-bottom: 1.5rem; }
.intro-quote { font-size: 1.05rem; line-height: 1.7; color: var(--muted); font-style: italic; padding: 1.5rem; border-left: 3px solid var(--accent-2); background: rgba(42, 157, 143, 0.05); border-radius: 8px; }

.about-content { display: grid; gap: 1.5rem; }
.content-block { padding: 1.8rem; border-radius: 16px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.content-block:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); }
.content-block h3 { margin-top: 0; margin-bottom: 1.2rem; font-size: 1.5rem; display: flex; align-items: center; gap: 0.6rem; }
.icon-section { font-size: 1.8rem; filter: drop-shadow(0 0 8px rgba(255, 183, 3, 0.4)); }
.content-block p { margin-bottom: 1rem; line-height: 1.7; }
.content-block p:last-child { margin-bottom: 0; }

.styled-list { list-style: none; padding: 0; margin: 1rem 0 1.5rem; display: grid; gap: 0.8rem; }
.styled-list li { padding: 0.8rem 1rem; background: var(--surface-2); border-left: 3px solid var(--accent); border-radius: 8px; transition: all 0.3s ease; }
.styled-list li:hover { background: var(--surface); border-left-color: var(--primary); transform: translateX(4px); }

.highlight-block { border: 2px solid rgba(255, 183, 3, 0.2); background: linear-gradient(135deg, rgba(255, 183, 3, 0.05), rgba(42, 157, 143, 0.05)); }

.signature-quote { margin: 2.5rem 0 1rem; padding: 0; border: none; background: transparent; text-align: center; }
.quote-content { padding: 2rem 2.5rem; border-radius: 16px; position: relative; }
.quote-name { display: block; font-size: 2rem; margin-bottom: 0.8rem; background: linear-gradient(90deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.quote-text { font-size: 1.3rem; margin: 1rem 0; color: var(--text); font-weight: 600; letter-spacing: 0.1em; }
.quote-brand { display: block; font-size: 1.5rem; margin-top: 0.8rem; color: var(--accent-2); }

.press-photos-sticky { position: sticky; top: 80px; align-self: start; }
.press-photos { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.press-photos .photo-beat { border-radius: 16px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.press-photos .photo-beat:hover { transform: scale(1.02) translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5); }

/* Amélioration des embed-cards dans la colonne sticky */
.press-photos-sticky .embed-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.press-photos-sticky .embed-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); }

/* Responsive À propos */
@media (max-width: 900px) {
	.about-content { gap: 1.2rem; }
	.content-block { padding: 1.4rem; }
	.press-photos-sticky { position: relative; top: 0; }
	.press-photos { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	.about-intro { padding: 1rem 0; }
	.lead-intro { font-size: 1.05rem; }
	.intro-quote { font-size: 1rem; padding: 1.2rem; }
	.content-block h3 { font-size: 1.3rem; }
	.quote-content { padding: 1.5rem 1.8rem; }
	.quote-name { font-size: 1.6rem; }
	.quote-text { font-size: 1.1rem; }
	.quote-brand { font-size: 1.3rem; }
}

@media (max-width: 480px) {
	.press-photos { grid-template-columns: 1fr; }
}
