/* ============================================
   BIIIP COMEDY - Public Website Stylesheet
   Dark comedy club vibe
   ============================================ */

/* --- Shooting Stars Canvas --- */
#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* --- Navbar Logo Image --- */
.navbar-logo-img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 12px;
  vertical-align: middle;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --accent: #0066ff;
  --accent-dark: #0050cc;
  --accent-glow: rgba(0, 102, 255, 0.3);
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --border: #2a2a2a;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: #3388ff;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--text-primary);
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.navbar-logo span {
  color: var(--accent);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.navbar-menu a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.navbar-menu a.active {
  color: var(--accent);
}

/* --- Burger Menu --- */
.navbar-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1002;
  border-radius: 8px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: #ffffff;
  margin: 4px auto;
  transition: all 0.35s ease;
  border-radius: 2px;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
}

.navbar-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Back Arrow --- */
.back-arrow {
  position: fixed;
  top: 80px;
  left: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-decoration: none;
}

.back-arrow:hover {
  color: var(--text-primary);
  border-color: var(--accent);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0, 102, 255, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(0, 60, 180, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 20% 20%, rgba(0, 102, 255, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.05) 0%, transparent 30%),
    var(--bg-primary);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 102, 255, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 30% 10%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
    radial-gradient(circle at 70% 10%, rgba(255, 255, 255, 0.03) 0%, transparent 20%);
  z-index: 0;
  pointer-events: none;
}

.hero-mic {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: mic-float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.4));
}

@keyframes mic-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(0, 102, 255, 0.3), 0 0 80px rgba(0, 102, 255, 0.1);
}

.hero h1 span {
  display: block;
  color: var(--accent);
  font-size: 0.5em;
  letter-spacing: 8px;
  text-transform: uppercase;
  font-weight: 400;
  text-shadow: 0 0 20px rgba(0, 102, 255, 0.5), 0 0 60px rgba(0, 102, 255, 0.2);
  animation: neon-flicker 4s ease-in-out infinite;
}

@keyframes neon-flicker {
  0%, 100% { opacity: 1; text-shadow: 0 0 20px rgba(0, 102, 255, 0.5), 0 0 60px rgba(0, 102, 255, 0.2); }
  92% { opacity: 1; }
  93% { opacity: 0.8; }
  94% { opacity: 1; }
  96% { opacity: 0.9; }
  97% { opacity: 1; }
}

.hero-tagline {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  text-align: center;
}

.hero-cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* --- Sections --- */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.section-header .accent-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* --- Artist Card --- */
.artist-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.artist-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 102, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.artist-card-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.artist-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition);
}

.artist-card:hover .artist-card-image img {
  transform: scale(1.05);
}

.artist-card-image .placeholder {
  font-size: 4rem;
  color: var(--text-muted);
}

.artist-card-body {
  padding: 24px;
}

.artist-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.artist-card-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.artist-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.artist-socials a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.artist-socials a:hover {
  color: var(--accent);
}

/* --- Show Card --- */
.show-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.show-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 102, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.show-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.show-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition);
}

.show-card:hover .show-card-image img {
  transform: scale(1.05);
}

.show-card-image .placeholder {
  font-size: 3rem;
  color: var(--text-muted);
}

.show-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.show-card-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 102, 255, 0.15);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  width: fit-content;
}

.show-card-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.show-card-venue {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.show-card-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.show-card-artists {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.show-card-artists .artist-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.show-card-artists .artist-tag img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

/* --- Page Header (for inner pages) --- */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.06) 0%, transparent 60%),
              var(--bg-primary);
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 102, 255, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-item .details h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-item .details p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

/* --- Empty State --- */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}

.empty-state .icon {
  font-size: 4rem;
  margin-bottom: 16px;
  opacity: 0.3;
}

.empty-state p {
  font-size: 1.1rem;
}

/* --- Loading --- */
.loading {
  text-align: center;
  padding: 60px 20px;
}

.loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Footer --- */
.footer {
  margin-top: auto;
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-brand h3 span {
  color: var(--accent);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--accent);
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-admin {
  display: inline-block;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0.4;
  transition: opacity var(--transition);
}

.footer-admin:hover {
  opacity: 1;
  color: var(--text-secondary);
}

/* --- Map --- */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-container iframe {
  display: block;
  width: 100%;
  min-height: 400px;
}

/* --- View All Link --- */
.view-all {
  text-align: center;
  margin-top: 48px;
}

/* --- Artist Modal --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.modal-close:hover {
  background: var(--accent);
}

.modal-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius) var(--radius) 0 0;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-placeholder {
  font-size: 5rem;
  color: var(--text-muted);
}

.modal-body {
  padding: 32px;
}

.modal-body h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.modal-bio {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  white-space: pre-line;
}

.modal-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.modal-socials a {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 50px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.modal-socials a:hover {
  background: var(--accent);
  color: white;
}

/* --- Carousel --- */
.carousel {
  overflow: hidden;
  border-radius: var(--radius);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.carousel-track img {
  width: 180px;
  height: 240px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}


/* --- Story Page --- */
.story-section {
  position: relative;
  overflow: hidden;
}

.story-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/salle-biiip.jpg') center center / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.story-content {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.story-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 2;
  margin-bottom: 28px;
}

.story-content p:last-child {
  margin-bottom: 0;
}

/* --- Footer SEO Index --- */
.footer-seo {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 30px;
}

.footer-seo-toggle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  transition: color var(--transition);
}

.footer-seo-toggle:hover {
  color: var(--text-secondary);
}

.footer-seo-toggle .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 0.7rem;
}

.footer-seo.open .footer-seo-toggle .arrow {
  transform: rotate(90deg);
}

.footer-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  margin-top: 14px;
}

.footer-seo-links a {
  color: var(--text-secondary);
  font-size: 0.8rem;
  transition: color var(--transition);
}

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

/* --- Floating CTA --- */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--accent);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 16px var(--accent-glow);
  transition: all var(--transition);
  animation: cta-vibrate 0.3s linear infinite, cta-glow 2s ease-in-out infinite;
}

.floating-cta:hover {
  background: var(--accent-dark);
  color: white;
  transform: scale(1.08);
  animation: cta-glow 2s ease-in-out infinite;
}

@keyframes cta-vibrate {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-1px, 1px); }
  50% { transform: translate(1px, -1px); }
  75% { transform: translate(-1px, -0.5px); }
  100% { transform: translate(0, 0); }
}

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 4px 16px var(--accent-glow); }
  50% { box-shadow: 0 4px 28px rgba(0, 102, 255, 0.6); }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .navbar-menu {
    position: absolute;
    top: 70px;
    right: 16px;
    left: auto;
    width: 220px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 0;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }

  .navbar-menu.open {
    max-height: 500px;
    opacity: 1;
    padding: 12px 0;
  }

  .navbar-menu a {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 500;
    text-align: right;
  }

  .navbar-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navbar-menu li:last-child {
    border-bottom: none;
  }

  .navbar-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .navbar-logo {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .navbar-logo-img {
    width: 36px;
    height: 36px;
    margin-right: 8px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.05rem;
    padding: 0 8px;
  }

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

  .hero-cta .btn {
    width: 260px;
    justify-content: center;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section {
    padding: 60px 0;
  }

  .page-header {
    padding: 110px 0 36px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .modal-overlay {
    padding: 12px;
    align-items: flex-end;
  }

  .modal-content {
    max-height: 85vh;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .modal-image {
    height: 250px;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-body h2 {
    font-size: 1.4rem;
  }

  .floating-cta {
    bottom: 16px;
    right: 12px;
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  /* Centrer tout le texte en responsive */
  .artist-card-body,
  .show-card-body,
  .contact-info,
  .contact-info h3,
  .contact-info-item,
  .footer-brand,
  .footer-brand p,
  .footer-links,
  .footer-links ul,
  .section-header,
  .page-header {
    text-align: center;
  }

  .contact-info-item {
    flex-direction: column;
    align-items: center;
  }

  .contact-info-item .details {
    text-align: center;
  }

  .show-card-date {
    margin-left: auto;
    margin-right: auto;
  }

  .show-card-artists {
    justify-content: center;
  }

  .artist-card-body p {
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-links ul {
    list-style: none;
  }

  .view-all {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
    letter-spacing: -1px;
  }

  .hero h1 span {
    letter-spacing: 4px;
    font-size: 0.55em;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .artist-card-image {
    aspect-ratio: 1 / 1;
  }

  .carousel-track img {
    width: 130px;
    height: 180px;
  }

  .show-card-date {
    font-size: 0.78rem;
  }

  .modal-image {
    height: 200px;
  }

  .modal-body {
    padding: 16px;
  }

  .container {
    padding: 0 16px;
  }
}
