/* ==========================================================================
   Christian Deane Music - Modern Cloudflare Landing Page Stylesheet
   Theme: Obsidian & Celestial Gold / Contemplative Atmospheric
   ========================================================================== */

:root {
  --bg-black: #06070a;
  --bg-deep: #0a0c13;
  --bg-surface: #101420;
  --bg-card: rgba(16, 20, 32, 0.72);
  --bg-card-hover: rgba(24, 30, 48, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(229, 166, 56, 0.35);
  
  --gold-primary: #e5a638;
  --gold-light: #f7d58b;
  --gold-dark: #b57a1e;
  --gold-glow: rgba(229, 166, 56, 0.22);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --font-display: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-black);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Background Canvas & Ambient Orbs */
#canvas-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}

.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 12s ease-in-out infinite alternate;
}

.glow-top-right {
  top: -10vw;
  right: -10vw;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(229, 166, 56, 0.15) 0%, rgba(229, 166, 56, 0) 70%);
}

.glow-bottom-left {
  bottom: 10vh;
  left: -15vw;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, rgba(16, 20, 32, 0) 70%);
  animation-delay: -6s;
}

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.5; }
  50% { transform: scale(1.08) translate(20px, -20px); opacity: 0.8; }
  100% { transform: scale(0.95) translate(-15px, 15px); opacity: 0.5; }
}

/* Container & Layout */
.app-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Navigation Bar */
.navbar {
  position: sticky;
  top: 16px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  margin: 16px auto 0;
  max-width: 1180px;
  background: rgba(10, 12, 19, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-icon svg {
  width: 100%;
  height: 100%;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  background: linear-gradient(135deg, #ffffff 40%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-audio-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 166, 56, 0.12);
  border: 1px solid rgba(229, 166, 56, 0.28);
  color: var(--gold-light);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav-audio-btn:hover {
  background: rgba(229, 166, 56, 0.22);
  border-color: var(--gold-primary);
  transform: translateY(-1px);
}

.pulse-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
}

.nav-audio-btn.active .pulse-indicator {
  animation: audioPulse 1s infinite alternate;
}

@keyframes audioPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 1; }
}

/* Hero Section */
.hero-section {
  padding: 80px 0 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(229, 166, 56, 0.25);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.12;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #ffffff 30%, #cfd5e1 75%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 900px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  color: #0c0e14;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(229, 166, 56, 0.3);
  transition: var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(229, 166, 56, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Quick Streaming Pills */
.platform-pill-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 20px;
  background: rgba(16, 20, 32, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
}

.platform-pill-bar span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 4px;
}

.stream-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-size: 0.82rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.stream-pill svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.stream-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-color: var(--border-subtle);
  transform: translateY(-1px);
}

/* Section Common Styling */
.section {
  padding: 80px 0;
  position: relative;
}

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

.section-badge {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  letter-spacing: 0.06em;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* Showcase: Sanctuary Ground Album & Interactive Player */
.album-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.album-showcase-grid::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

/* Album Art Card */
.album-artwork-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.album-artwork {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #181d2a 0%, #0d1017 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(229, 166, 56, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.album-art-ambient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(229, 166, 56, 0.18) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.album-badge-label {
  align-self: flex-start;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(229, 166, 56, 0.25);
  z-index: 1;
}

.album-symbol {
  margin: auto;
  text-align: center;
  z-index: 1;
}

.album-symbol svg {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 0 16px rgba(229, 166, 56, 0.4));
}

.album-meta-bottom {
  z-index: 1;
}

.album-project-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #fff;
}

.album-artist-name {
  color: var(--gold-light);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

/* Release Streaming Links on Art */
.album-quick-listen {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  width: 100%;
  max-width: 360px;
  justify-content: center;
}

/* Player & Tracklist */
.player-container {
  display: flex;
  flex-direction: column;
}

.player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.now-playing-info {
  display: flex;
  flex-direction: column;
}

.now-playing-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.now-playing-status {
  font-size: 0.82rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Equalizer Visualizer Bars */
.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.eq-bar {
  width: 3px;
  height: 4px;
  background-color: var(--gold-primary);
  border-radius: 2px;
  transition: height 0.15s ease;
}

.playing .eq-bar:nth-child(1) { animation: eqJump 0.8s infinite 0.1s; }
.playing .eq-bar:nth-child(2) { animation: eqJump 0.6s infinite 0.3s; }
.playing .eq-bar:nth-child(3) { animation: eqJump 0.9s infinite 0.2s; }
.playing .eq-bar:nth-child(4) { animation: eqJump 0.7s infinite 0.4s; }

@keyframes eqJump {
  0% { height: 4px; }
  50% { height: 18px; }
  100% { height: 6px; }
}

/* Player Controls Bar */
.player-controls-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-player-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #090b10;
  box-shadow: 0 4px 18px rgba(229, 166, 56, 0.4);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.btn-player-play:hover {
  transform: scale(1.06);
  background: var(--gold-light);
}

.btn-player-play svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.scrub-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scrub-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.scrub-bar-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary));
  border-radius: 4px;
  transition: width 0.1s linear;
}

.scrub-times {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Sound Generator Badge & Info */
.soundscape-mode-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(229, 166, 56, 0.08);
  border: 1px solid rgba(229, 166, 56, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

/* Tracklist */
.tracklist-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 6px;
}

.tracklist-wrap::-webkit-scrollbar {
  width: 4px;
}

.tracklist-wrap::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.track-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.06);
}

.track-item.active {
  background: rgba(229, 166, 56, 0.12);
  border-color: rgba(229, 166, 56, 0.3);
}

.track-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.track-num {
  font-size: 0.8rem;
  color: var(--text-muted);
  width: 18px;
}

.track-item.active .track-num {
  color: var(--gold-primary);
  font-weight: bold;
}

.track-title {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
}

.track-item.active .track-title {
  color: var(--gold-light);
}

.track-duration {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* About / Artist Narrative Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}

.quote-highlight {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
  border-left: 3px solid var(--gold-primary);
  padding-left: 18px;
}

.about-text {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.pillar-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.pillar-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(229, 166, 56, 0.25);
  transform: translateX(4px);
}

.pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(229, 166, 56, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-content h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}

.pillar-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Streaming Platforms Hub */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.platform-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-fast);
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.platform-card:hover::after {
  opacity: 1;
}

.platform-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 16px;
}

.platform-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-soundcloud { background: rgba(255, 85, 0, 0.15); color: #ff5500; }
.icon-spotify { background: rgba(29, 185, 84, 0.15); color: #1db954; }
.icon-apple { background: rgba(250, 36, 60, 0.15); color: #fa243c; }
.icon-youtube { background: rgba(255, 0, 0, 0.15); color: #ff0000; }
.icon-bandcamp { background: rgba(29, 160, 195, 0.15); color: #1da0c3; }
.icon-tidal { background: rgba(0, 255, 255, 0.12); color: #00ffff; }

.platform-card-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.platform-arrow-icon {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.platform-card:hover .platform-arrow-icon {
  color: var(--gold-light);
  transform: translate(2px, -2px);
}

.platform-name {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.platform-description {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Contact & Booking Section */
.contact-wrapper {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
}

.contact-highlight-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-email-card {
  margin: 24px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(229, 166, 56, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.email-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
}

.email-address {
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  word-break: break-all;
}

.email-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-copy-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(229, 166, 56, 0.15);
  border: 1px solid rgba(229, 166, 56, 0.35);
  color: var(--gold-light);
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-copy-email:hover {
  background: rgba(229, 166, 56, 0.28);
  border-color: var(--gold-primary);
}

.btn-direct-mail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-direct-mail:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Interactive Composer Form */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-input, .form-select, .form-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 12px rgba(229, 166, 56, 0.2);
}

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

/* Footer */
.site-footer {
  margin-top: 80px;
  padding: 40px 0 60px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  color: #fff;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.cloudflare-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(243, 128, 32, 0.08);
  border: 1px solid rgba(243, 128, 32, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: #f38020;
  text-decoration: none;
  transition: var(--transition-fast);
}

.cloudflare-badge:hover {
  background: rgba(243, 128, 32, 0.16);
}

.cloudflare-badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.copyright-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: #181d2a;
  color: #fff;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive Breakpoints */
@media (max-width: 960px) {
  .album-showcase-grid {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 10px 16px;
  }

  .nav-links {
    display: none; /* simple mobile clean view */
  }

  .hero-section {
    padding: 50px 0 40px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
