/* Tangible Jazz Dreams - Main Stylesheet */
/* Color Theme: Deep Blue, Purple, Magenta/Pink */

:root {
  --bg-dark: #0a0a1a;
  --bg-primary: #12122a;
  --bg-secondary: #1a1a3e;
  --purple-deep: #2d1b4e;
  --purple-mid: #4a2c7a;
  --purple-light: #6b47dc;
  --blue-accent: #3d5afe;
  --pink-accent: #e91e8c;
  --magenta: #ff2d95;
  --text-primary: #ffffff;
  --text-secondary: #b8b8d0;
  --text-muted: #6a6a8a;
  --gold-accent: #d4af37;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

/* Navigation */
.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--bg-dark) 0%, transparent 100%);
  padding: 1rem 0;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

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

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

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

/* Site Switcher Tabs */
.site-switcher {
  display: flex;
  gap: 0.5rem;
  margin-left: 2rem;
  padding-left: 2rem;
  border-left: 1px solid var(--purple-mid);
}

.site-tab {
  padding: 0.5rem 1rem;
  background: var(--purple-deep);
  border: 1px solid var(--purple-mid);
  border-radius: 4px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.site-tab:hover {
  background: var(--purple-mid);
  color: var(--text-primary);
  border-color: var(--pink-accent);
}

.site-tab.active {
  background: var(--pink-accent);
  border-color: var(--pink-accent);
  color: var(--text-primary);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107, 71, 220, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(233, 30, 140, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(61, 90, 254, 0.2) 0%, transparent 50%),
    var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/images/band-photo-1.jpg') center/cover no-repeat;
  opacity: 0.15;
  filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-logo {
  width: 200px;
  height: auto;
  margin-bottom: 2rem;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--pink-accent) 50%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.hero .location {
  font-size: 1rem;
  color: var(--gold-accent);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* Stream Buttons */
.stream-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stream-btn.spotify {
  background: #1DB954;
  color: #000;
}

.stream-btn.spotify:hover {
  background: transparent;
  border-color: #1DB954;
  color: #1DB954;
}

.stream-btn.youtube {
  background: #FF0000;
  color: #fff;
}

.stream-btn.youtube:hover {
  background: transparent;
  border-color: #FF0000;
  color: #FF0000;
}

.stream-btn.apple {
  background: linear-gradient(135deg, #fc3c44, #fa233b);
  color: #fff;
}

.stream-btn.apple:hover {
  background: transparent;
  border-color: #fc3c44;
  color: #fc3c44;
}

/* Sections */
section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-primary);
}

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

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-accent), var(--purple-light));
  margin: 1rem auto;
}

/* Music Grid */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.music-card {
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--purple-mid);
}

.music-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(233, 30, 140, 0.2);
  border-color: var(--pink-accent);
}

.music-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.music-card-content {
  padding: 1.5rem;
}

.music-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.music-card .year {
  font-size: 0.9rem;
  color: var(--pink-accent);
  margin-bottom: 1rem;
}

.music-card .type {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--purple-deep);
  border-radius: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

/* Members Grid */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.member-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--purple-mid);
  transition: all 0.3s ease;
}

.member-card:hover {
  border-color: var(--pink-accent);
  transform: translateY(-5px);
}

.member-card .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--pink-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
}

.member-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.member-card .role {
  font-size: 0.9rem;
  color: var(--pink-accent);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--purple-mid);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Contact Section */
.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-message {
  font-size: 2rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--purple-mid);
  border-radius: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  border-color: var(--pink-accent);
  color: var(--pink-accent);
}

/* Spotify Embed */
.spotify-embed {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
}

/* Footer */
footer {
  background: var(--bg-primary);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--purple-mid);
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

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

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

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

/* Page Header */
.page-header {
  padding: 10rem 2rem 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(107, 71, 220, 0.4) 0%, transparent 60%),
    var(--bg-dark);
}

.page-header h1 {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1rem;
}

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

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-dark);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--purple-mid);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .site-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    margin-top: 1rem;
  }

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stream-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stream-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
