:root {
  --gold: #d4af37;
  --gold-dark: #b8941f;
  --gold-light: #f4e4bc;
  --cream: #f5f5dc;
  --deep-black: #1a1a1a;
  --charcoal: #2d2d2d;
  --art-deco-blue: #1e3a5f;
  --vintage-red: #8b1538;
  --neon-blue: #6cf6ff;
  --neon-red: #ff6c6c;
  --bg-dark: var(--deep-black);
  --text-light: var(--cream);
  --accent: var(--gold);
}

/* =========================
   BASE STYLES
   ========================= */

body {
  background: linear-gradient(135deg, var(--deep-black) 0%, var(--charcoal) 100%);
  color: var(--text-light);
  font-family: 'Montserrat', 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* =========================
   HERO SECTION
   ========================= */

.hero {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-banner {
  width: 100%;
  height: 300px;
  background: url('../images/header.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 2rem;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    transparent 20%,
    transparent 80%,
    rgba(0,0,0,0.2) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-banner-content {
  display: none;
}

.header-logo {
  position: fixed;
  top: 250px;
  left: 3rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  background: var(--deep-black);
  padding: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.05);
  border-color: var(--gold-light);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
}

.header-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hero-content {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--art-deco-blue) 100%);
  border-radius: 20px;
  border: 2px solid var(--gold-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  display: grid;
  grid-template-rows: auto auto;
  gap: 2rem;
}

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

.hero-left-column {
  padding: 2rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 15px;
  border: 1px solid var(--gold-dark);
  backdrop-filter: blur(10px);
}

.hero-right-column {
  padding: 2rem;
  background: rgba(45, 45, 45, 0.8);
  border-radius: 15px;
  border: 1px solid var(--charcoal);
  backdrop-filter: blur(10px);
  text-align: left;
}

.hero-bottom-row {
  background: rgba(26, 26, 26, 0.6);
  border-radius: 15px;
  border: 1px solid var(--gold-dark);
  padding: 2rem;
  backdrop-filter: blur(10px);
  text-align: center;
}

.tagline {
  font-size: 1.8rem;
  color: var(--gold);
  margin: 0 0 1rem 0;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  padding: 0;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
}

.hero-content p {
  max-width: none;
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--cream);
  text-align: center;
  font-weight: 400;
}

/* Latest Track Styles */
.latest-track {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.latest-track-content {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.latest-track-image {
  width: 140px;
  height: 105px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--gold-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.latest-track-image:hover {
  border-color: var(--gold);
  transform: scale(1.05);
}

.latest-track-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.latest-track-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.latest-track-title {
  color: var(--cream);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.latest-track-description {
  color: var(--gold-light);
  font-size: 1rem;
  font-style: italic;
  margin: 0;
  opacity: 0.9;
  line-height: 1.4;
}

.play-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--deep-black);
  padding: 0.9rem 1.8rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  align-self: flex-start;
}

.play-button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: var(--deep-black);
}

/* =========================
   LISTEN EVERYWHERE SECTION
   ========================= */

.listen-everywhere {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--art-deco-blue) 100%);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 1rem auto 3rem auto;
  max-width: 900px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.listen-everywhere h2 {
  color: var(--gold);
  font-size: 2.5rem;
  margin: 0 0 2rem 0;
  font-family: 'Fugaz One', cursive;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  letter-spacing: 0.05em;
  text-align: center;
}

.listen-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.listen-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 160px;
  justify-content: center;
  white-space: nowrap;
}

.listen-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  border-color: var(--gold);
}

/* =========================
   FOLLOW INSTAGRAM SECTION
   ========================= */

.follow-instagram {
  background: var(--charcoal);
  border-radius: 15px;
  padding: 2rem;
  margin: 2.5rem auto;
  max-width: 500px;
  border: 1px solid var(--gold-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  text-align: center;
}

.follow-instagram span {
  font-size: 1.2rem;
  color: var(--gold-light);
  font-style: italic;
  display: block;
  margin-bottom: 1rem;
}

/* =========================
   GALLERY SECTION
   ========================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem auto;
  padding: 0 1rem;
  max-width: 1200px;
}

.gallery-item {
  background: var(--charcoal);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--gold-dark);
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
  border-color: var(--gold);
}

.gallery-item img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.song-title {
  color: var(--gold);
  font-size: 1.1rem;
  margin: 1rem 0;
  padding: 0 1rem;
  font-weight: 500;
}

/* Playlist Access Card */
.playlist-access-card {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  border: 2px solid var(--gold);
  position: relative;
  overflow: visible;
}

.playlist-access-card::before {
  content: '⭐';
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--gold);
  color: var(--deep-black);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.playlist-access-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
  border-color: var(--gold-light);
}

.playlist-card-content {
  padding: 2rem 1.5rem;
  color: var(--deep-black);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.playlist-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.playlist-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-family: 'Fugaz One', cursive;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.playlist-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
  font-weight: 500;
}

.playlist-action {
  background: var(--deep-black);
  color: var(--gold);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.playlist-access-card:hover .playlist-action {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Fallback Gallery Styles */
.gallery-item.fallback-item {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.track-placeholder {
  padding: 2rem 1rem;
  text-align: center;
  width: 100%;
}

.track-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.fallback-item .song-title {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem 0;
  line-height: 1.3;
}

.track-description {
  color: var(--cream);
  font-size: 0.9rem;
  margin: 0.5rem 0 1.5rem 0;
  opacity: 0.8;
  font-style: italic;
  line-height: 1.4;
}

.streaming-links {
  margin-top: 1rem;
}

.streaming-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.streaming-links a:hover {
  opacity: 0.8;
}

/* =========================
   NEWSLETTER SECTION
   ========================= */

.newsletter {
  background: linear-gradient(135deg, var(--art-deco-blue) 0%, var(--vintage-red) 100%);
  border-radius: 20px;
  padding: 3rem 2rem;
  max-width: 500px;
  margin: 3rem auto;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 2px solid var(--gold);
}

.newsletter h2 {
  color: var(--gold);
  font-family: 'Fugaz One', cursive;
  font-size: 2rem;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.newsletter p {
  color: var(--cream);
  font-size: 1.1rem;
  margin: 0 0 2rem 0;
  line-height: 1.5;
}

.newsletter-confirm {
  background: var(--gold);
  color: var(--deep-black);
  padding: 1.5rem;
  border-radius: 15px;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
  text-align: center;
  margin: 0;
  display: none;
}

.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}

.newsletter input[type="email"] {
  padding: 1rem;
  border-radius: 50px;
  border: 2px solid var(--gold-dark);
  background: var(--cream);
  color: var(--deep-black);
  font-size: 1rem;
  text-align: center;
  transition: border-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.newsletter button {
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
  color: var(--deep-black);
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 100%;
  box-sizing: border-box;
}

.newsletter button:hover:not(:disabled) {
  background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

.newsletter button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* =========================
   FOOTER
   ========================= */

.site-footer, footer, #colophon {
  border: none;
  background: none;
  color: var(--text-light);
  box-shadow: none;
  text-align: center;
  padding: 2rem 0 1rem 0;
  font-size: 0.95rem;
  color: #aaa;
}

/* Hidden Elements */
.brand-logo {
  display: none;
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    margin-bottom: 1.5rem;
  }
  
  .hero-banner {
    height: 200px;
    margin-bottom: 1.5rem;
  }
  
  .header-logo {
    position: fixed;
    top: 160px;
    left: 1.5rem;
    width: 80px;
    height: 80px;
    border-width: 3px;
    padding: 6px;
    z-index: 1000;
  }
  
  .hero-content {
    padding: 1.5rem;
    margin: 0 1rem;
    gap: 1.5rem;
    max-width: calc(100vw - 2rem);
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .hero-top-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hero-left-column {
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .hero-right-column {
    padding: 1rem;
    background: rgba(45, 45, 45, 0.9);
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .hero-bottom-row {
    padding: 1.5rem;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .tagline {
    font-size: 1.4rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .latest-track-title {
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.2;
  }
  
  .latest-track-description {
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .hero-content p {
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.5;
  }
  
  .latest-track-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  
  .latest-track-image {
    width: 100px;
    height: 75px;
    flex-shrink: 0;
  }
  
  .latest-track-info {
    align-items: center;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
  
  .play-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  
  .listen-everywhere {
    margin: 1rem;
    padding: 2rem 1.5rem;
  }
  
  .listen-everywhere h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .listen-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .listen-btn {
    min-width: 200px;
    max-width: 280px;
    width: 100%;
  }
  
  .follow-instagram {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }
  
  .newsletter {
    margin: 2rem 1rem;
    padding: 2rem 1.5rem;
  }
  
  .newsletter h2 {
    font-size: 1.8rem;
  }
  
  .newsletter p {
    font-size: 1rem;
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
    margin: 2rem auto;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    height: 160px;
  }
  
  .header-logo {
    position: fixed;
    top: 70px;
    left: 1rem;
    width: 70px;
    height: 70px;
    border-width: 3px;
    padding: 5px;
    z-index: 1000;
  }
  
  .hero-content {
    padding: 1rem;
    margin: 0 0.5rem;
    gap: 1rem;
    max-width: calc(100vw - 1rem);
    box-sizing: border-box;
  }
  
  .hero-top-row {
    gap: 1rem;
  }
  
  .hero-left-column {
    padding: 1rem;
    box-sizing: border-box;
  }
  
  .hero-right-column {
    padding: 0.8rem;
    box-sizing: border-box;
  }
  
  .hero-bottom-row {
    padding: 1rem;
    box-sizing: border-box;
  }
  
  .tagline {
    font-size: 1.1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .latest-track-title {
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .latest-track-description {
    font-size: 0.8rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .hero-content p {
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.4;
  }
  
  .play-button {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    white-space: nowrap;
    align-self: center;
  }
  
  .latest-track-image {
    width: 90px;
    height: 67px;
  }
  
  .listen-everywhere h2 {
    font-size: 1.8rem;
  }
  
  .newsletter h2 {
    font-size: 1.6rem;
  }
  
  .gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .listen-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
} 