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

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #d4a855;
  --accent-dark: #b8923e;
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --text-dark: #333333;
  --bg-dark: #0f0f1a;
  --bg-light: #f8f9fa;
  --bg-card: #ffffff;
}

html {
  scroll-behavior: smooth;
}

.music-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212, 168, 85, 0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}

.music-toggle:hover {
  transform: scale(1.1);
  background: var(--accent-dark);
}

.music-toggle svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.music-toggle.playing {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(212, 168, 85, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(212, 168, 85, 0.8); }
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}

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

section {
  padding: 100px 0;
}

.section-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 10px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
  color: var(--primary);
}

.section-desc {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--text);
  color: var(--primary);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.85rem;
  background: var(--accent);
  color: var(--primary);
}

.btn-full {
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(10px);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s ease;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f1a 100%);
  color: var(--text);
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/hero-background.png') center top / contain no-repeat;
  opacity: 0.5;
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: 40px;
  top: 42%;
  transform: translateY(-50%);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  display: inline-block;
}


.hero-subtitle {
  display: none;
}

.hero-desc {
  display: none;
}

.hero-buttons {
  display: none;
}

.album-banner {
  background: linear-gradient(135deg, rgba(212, 168, 85, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 50px 0;
  text-align: center;
  margin-top: auto;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.album-label {
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  text-shadow: 1px 1px 6px rgba(212, 168, 85, 0.6);
}

.album-title {
  font-size: 3.5rem;
  letter-spacing: 12px;
  margin: 15px 0;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(212, 168, 85, 0.5);
}

.album-featuring {
  color: var(--accent);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  text-shadow: 1px 1px 6px rgba(212, 168, 85, 0.6);
}

/* About */
.about {
  background: var(--bg-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

.about-stats {
  display: flex;
  gap: 50px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image {
  text-align: center;
}

.image-placeholder {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.image-placeholder span {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
}

.about-photo {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-quote {
  margin-top: 20px;
  font-style: italic;
  color: var(--text-muted);
}

/* Music / Discography */
.music {
  background: var(--primary);
  color: var(--text);
}

.music .section-title,
.music .section-label {
  color: var(--text);
}

.music .section-label {
  color: var(--accent);
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.album-card {
  background: var(--secondary);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px 1fr;
  transition: transform 0.3s ease;
}

.album-card:hover {
  transform: translateY(-5px);
}

.album-cover {
  width: 140px;
  height: 140px;
}

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

.cover-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.album-info {
  padding: 20px;
}

.album-info h3 {
  font-size: 1rem;
  margin-bottom: 5px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.album-year {
  font-size: 0.85rem;
  color: var(--accent);
}

.track-list {
  list-style: none;
  margin: 15px 0;
  font-size: 0.85rem;
}

.track-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.stream-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.stream-links a {
  font-size: 0.75rem;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid var(--accent);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.stream-links a:hover {
  background: var(--accent);
  color: var(--primary);
}

.platforms-section {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.platforms-section h4 {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.platforms {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-btn {
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s ease;
}

.platform-btn:hover {
  background: var(--accent);
  color: var(--primary);
}

/* Videos */
.videos {
  background: var(--bg-light);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.video-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-info {
  padding: 20px;
}

.video-info h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.video-album {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.video-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.youtube-cta {
  text-align: center;
}

/* Contact */
.contact {
  background: var(--secondary);
  color: var(--text);
}

.contact .section-title,
.contact .section-label {
  color: var(--text);
}

.contact .section-label {
  color: var(--accent);
}

.contact .section-desc {
  color: var(--text-muted);
}

.contact-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

.contact-form {
  background: var(--primary);
  padding: 40px;
  border-radius: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.profile-image-card {
  text-align: center;
}

.contact-profile-photo {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-card {
  background: var(--primary);
  padding: 30px;
  border-radius: 12px;
}

.info-card h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.info-item {
  margin-bottom: 15px;
}

.info-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.info-item p {
  color: var(--text);
}

.info-card > p {
  color: var(--text-muted);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent);
  color: var(--primary);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text);
  padding: 50px 0;
  text-align: center;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 10px;
}

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

/* Play Track Buttons */
.play-track {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.7rem;
  margin-left: 10px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.play-track:hover {
  background: var(--accent);
  color: var(--primary);
}

.play-track.playing {
  background: var(--accent);
  color: var(--primary);
}

.track-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Audio Player */
.audio-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  border-top: 2px solid var(--accent);
  padding: 15px 20px;
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.audio-player.hidden {
  transform: translateY(100%);
}

.player-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.player-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

.player-close:hover {
  color: var(--text);
}

.player-info {
  min-width: 150px;
}

.player-info span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.player-info strong {
  color: var(--text);
  font-size: 0.95rem;
}

.player-controls {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
}

.player-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
}

.player-btn:hover {
  background: var(--accent-dark);
}

.progress-container {
  flex: 1;
}

.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 5px;
}

.progress {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
}

.time-display {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .albums-grid {
    grid-template-columns: 1fr;
  }

  .album-card {
    grid-template-columns: 120px 1fr;
  }

  .album-cover {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(15, 15, 26, 0.98);
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 25px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .album-title {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }

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

  .about-image {
    order: -1;
  }

  .about-stats {
    justify-content: center;
  }

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

  .contact-content {
    grid-template-columns: 1fr;
  }

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

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .section-title {
    font-size: 2rem;
  }
}
