/* ============================================================
   Sébastien Bérubé — Feuille de style principale
   Design sombre avec accents roses
   ============================================================ */

/* ============================================================
   VARIABLES CSS
   ============================================================ */
:root {
    --primary:       #fb2056;
    --primary-dark:  #d4173f;
    --primary-light: #ff4d7a;
    --dark:          #1a1a1a;
    --gray:          #2d2d2d;
    --gray-mid:      #3d3d3d;
    --gray-light:    #555555;
    --light:         #f8f8f8;
    --white:         #ffffff;
    --text-muted:    #aaaaaa;

    --font-heading:  'Playfair Display', Georgia, serif;
    --font-body:     'Raleway', 'Helvetica Neue', sans-serif;

    --transition:    0.3s ease;
    --radius:        8px;
    --radius-lg:     16px;
    --shadow:        0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-hover:  0 8px 40px rgba(251, 32, 86, 0.3);

    --container-max: 1200px;
    --navbar-height: 70px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--navbar-height);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-light);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: var(--font-body);
}

/* Accessibilité */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   UTILITAIRES
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

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

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-primary { color: var(--primary); }
.text-muted   { color: var(--text-muted); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================================
   TYPOGRAPHIE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

/* Séparateur décoratif */
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 1rem auto;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(251, 32, 86, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover,
.btn-outline:focus {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-ghost:hover,
.btn-ghost:focus {
    background: var(--primary);
    color: var(--white);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1rem;
}

/* Liens streaming */
.streaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.streaming-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
    border: 1.5px solid var(--gray-mid);
    color: var(--light);
    background: var(--gray);
}

.streaming-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(251, 32, 86, 0.1);
    transform: translateY(-2px);
}

.streaming-link.spotify  { --icon-color: #1DB954; }
.streaming-link.apple    { --icon-color: #FC3C44; }
.streaming-link.bandcamp { --icon-color: #1DA0C3; }

.streaming-link i {
    font-size: 1rem;
    color: var(--icon-color, var(--primary));
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--navbar-height);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(45, 45, 45, 0.5) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(251, 32, 86, 0.2);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    transition: all var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 6px 35px rgba(251, 32, 86, 0.15);
    border-bottom-color: rgba(251, 32, 86, 0.3);
}

.navbar-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-height);
    padding: 0 2rem;
    z-index: 10;
}

.navbar-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
}

.navbar-logo:hover {
    filter: brightness(1.1);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-menu a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    padding: 8px 4px;
    position: relative;
    transition: all var(--transition);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 4px;
    right: 4px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--white);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hamburger */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center 0%;
    z-index: -1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-bg.loaded {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.5) 0%,
        rgba(26, 26, 26, 0.65) 50%,
        rgba(26, 26, 26, 0.9) 85%,
        rgba(26, 26, 26, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s 0.3s forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s 0.5s forwards;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s 0.7s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s 0.9s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ============================================================
   SECTIONS GÉNÉRIQUES
   ============================================================ */
.section-dark {
    background-color: var(--dark);
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

#bio {
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(3px); /* Ajoute un léger flou pour améliorer la lisibilité du texte */
}

.section-gray {
    background-color: var(--gray);
    padding: 80px 0;
}

.section-darker {
    background-color: #111111;
    padding: 80px 0;
}

/* Accent line */
.accent-line {
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin-bottom: 1.5rem;
}

.accent-line.center {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   BIO TEASER
   ============================================================ */
.bio-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.bio-teaser-image {
    position: relative;
}

.bio-teaser-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 4/5;
    filter: grayscale(20%);
    transition: filter var(--transition);
}

.bio-teaser-image:hover img {
    filter: grayscale(0%);
}

.bio-teaser-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: -1;
    transition: opacity var(--transition);
}

.bio-teaser-image:hover::before {
    opacity: 0.6;
}

.bio-teaser-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bio-teaser-content p {
    font-size: 1.05rem;
    line-height: 1.9;
}

.bio-quote {
    padding: 1.5rem;
    border-left: 3px solid var(--primary);
    background: rgba(251, 32, 86, 0.05);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--light);
}

/* ============================================================
   ALBUMS
   ============================================================ */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.album-card {
    background: var(--gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.album-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.album-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-card:hover .album-cover img {
    transform: scale(1.05);
}

.album-cover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(251, 32, 86, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.album-card:hover .album-cover-overlay {
    opacity: 1;
}

.album-cover-overlay a {
    color: var(--white);
    font-size: 3rem;
    transition: transform var(--transition);
}

.album-cover-overlay a:hover {
    transform: scale(1.2);
}

.album-info {
    padding: 1.5rem;
}

.album-year {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.album-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.album-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   TRACKLIST
   ============================================================ */
.tracklist {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 2rem;
}

.tracklist-header {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.track-item {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition);
}

.track-item:last-child {
    border-bottom: none;
}

.track-item:hover {
    background: rgba(251, 32, 86, 0.08);
}

.track-num {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.track-title {
    font-size: 0.95rem;
    color: var(--light);
    font-weight: 500;
}

.track-excerpt {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.track-duration {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

/* ============================================================
   MEMBRES DU BAND
   ============================================================ */
.band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.member-card {
    background: var(--gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition), box-shadow var(--transition);
}

.member-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.member-photo {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(30%);
    transition: all 0.5s ease;
}

.member-card:hover .member-photo img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.member-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--gray), transparent);
}

.member-info {
    padding: 1.5rem;
    position: relative;
    margin-top: -1px;
}

.member-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.member-role {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   STUDIO
   ============================================================ */
.studio-section {
    position: relative;
    overflow: hidden;
}

.studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.studio-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.studio-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.studio-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(251, 32, 86, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.1rem;
    transition: background var(--transition);
}

.studio-feature:hover .studio-feature-icon {
    background: var(--primary);
    color: var(--white);
}

.studio-feature-text h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.studio-feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.studio-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.studio-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.studio-image:hover img {
    transform: scale(1.03);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
}

.pricing-card:hover,
.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(251, 32, 86, 0.15);
}

.pricing-card.featured {
    background: rgba(251, 32, 86, 0.08);
}

.pricing-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin: 1rem 0 0.25rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* ============================================================
   GALERIE
   ============================================================ */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(251, 32, 86, 0.08);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--gray);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: var(--white);
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   FORMULAIRE DE CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(251, 32, 86, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: background var(--transition);
}

.contact-info-item:hover .contact-info-icon {
    background: var(--primary);
    color: var(--white);
}

.contact-info-text h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.contact-info-text p,
.contact-info-text a {
    font-size: 0.95rem;
    color: var(--light);
}

.contact-form {
    background: var(--gray);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.form-group .required {
    color: var(--primary);
    margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(251, 32, 86, 0.15);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23aaaaaa'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--gray);
    color: var(--white);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-error {
    font-size: 0.8rem;
    color: var(--primary);
    margin-top: 0.4rem;
    display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: var(--primary);
}

.form-group.has-error .form-error {
    display: block;
}

.form-success-msg,
.form-error-msg {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
}

.form-success-msg {
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.4);
    color: #27ae60;
}

.form-error-msg {
    background: rgba(251, 32, 86, 0.1);
    border: 1px solid rgba(251, 32, 86, 0.3);
    color: var(--primary-light);
}

.form-success-msg.visible,
.form-error-msg.visible {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
    background: var(--gray);
    padding: 70px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.75rem;
}

.newsletter-text p {
    font-size: 1rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.75rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(251, 32, 86, 0.15);
}

.newsletter-input-group .btn-primary {
    white-space: nowrap;
    flex-shrink: 0;
}

.newsletter-privacy {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 1.4rem;
}

.newsletter-message.success { color: #27ae60; }
.newsletter-message.error   { color: var(--primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #111111;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-logo:hover {
    color: var(--primary);
}

.footer-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-nav ul li {
    margin-bottom: 0.75rem;
}

.footer-nav ul li a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition), padding-left var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-nav ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-nav ul li a i {
    width: 16px;
    text-align: center;
    font-size: 0.85rem;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-contact-list li i {
    color: var(--primary);
    width: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-list li a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-contact-list li a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.footer-copyright,
.footer-credits {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* ============================================================
   TIMELINE (Biographie)
   ============================================================ */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(251, 32, 86, 0.1));
}

.timeline-item {
    position: relative;
    padding: 0 0 3rem 2.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(251, 32, 86, 0.2);
}

.timeline-year {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.timeline-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   PAGE HERO (pages intérieures)
   ============================================================ */
.page-hero {
    min-height: 45vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 32, 86, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 3rem;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   MESSAGES D'ALERTE
   ============================================================ */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: rgba(39, 174, 96, 0.12);
    border: 1px solid rgba(39, 174, 96, 0.35);
    color: #4dbd74;
}

.alert-error {
    background: rgba(251, 32, 86, 0.1);
    border: 1px solid rgba(251, 32, 86, 0.3);
    color: var(--primary-light);
}

.alert-info {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    color: #5dade2;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(-8px); }
}

/* Classes pour Intersection Observer */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Délais d'animation pour les grilles */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    margin-top: 3rem;
}

.pagination ul {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--gray);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.pagination ul li.active a,
.pagination ul li a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, rgba(251, 32, 86, 0.15) 0%, rgba(26, 26, 26, 0) 60%);
    border-top: 1px solid rgba(251, 32, 86, 0.15);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
    .bio-teaser {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bio-teaser-image {
        max-width: 450px;
        margin: 0 auto;
    }

    .studio-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .studio-image {
        order: -1;
    }

    .studio-image img {
        height: 350px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ============================================================
   RESPONSIVE — 768px (mobile)
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --navbar-height: 60px;
    }

    .section-padding,
    .section-dark,
    .section-gray,
    .section-darker {
        padding: 60px 0;
    }

    /* Navbar mobile */
    .navbar-menu {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 999;
    }

    .navbar-menu.open {
        transform: translateX(0);
    }

    .navbar-menu a {
        font-size: 1.3rem;
        letter-spacing: 0.15em;
    }

    .navbar-hamburger {
        display: flex;
    }

    /* Hero mobile */
    .hero-video {
        object-fit: contain;
        margin-top: 60px;
    }

    .hero-title {
        font-size: clamp(3rem, 15vw, 6rem);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    /* Bio teaser */
    .bio-teaser-image::before {
        display: none;
    }

    /* Albums */
    .albums-grid {
        grid-template-columns: 1fr;
    }

    /* Band */
    .band-grid {
        grid-template-columns: 1fr;
    }

    /* Studio */
    .studio-features {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Newsletter */
    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-input-group .btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Timeline */
    .timeline {
        padding-left: 1.5rem;
    }

    /* Tracklist */
    .tracklist-header {
        display: none;
    }

    .track-item {
        grid-template-columns: 30px 1fr auto;
    }

    /* Page hero */
    .page-hero {
        min-height: 35vh;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
