* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0f0f0f;
  color: #ffffff;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: rgba(15, 15, 15, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.5s ease;
}

.navbar.scrolled {
  background: rgba(15, 15, 15, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
}

.navbar.hidden {
  transform: translateY(-100%);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: #f4c430;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: #d9d9d9;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
  color: #f4c430;
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(145deg, #0f0f0f 20%, #1f1f1f 100%);
  text-align: center;
  position: relative;
  padding: 20px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1510915361894-39e14b5ba02e?auto=format&fit=crop&w=1920&q=80') no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
  transform: translateY(var(--scroll-parallax, 0)) scale(1.05);
  transition: transform 0.5s ease;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 700;
  color: #f4c430;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-content p {
  font-size: 18px;
  color: #b0b0b0;
  margin-bottom: 30px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.9s;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #f4c430;
  color: #0f0f0f;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #ffffff;
  color: #0f0f0f;
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 5px 20px rgba(244, 196, 48, 0.5);
}

.streaming-platforms {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.1s;
}

.platform-link {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.platform-icon {
  width: 40px;
  height: 40px;
}

.platform-link:hover {
  transform: scale(1.2) rotate(5deg);
  opacity: 0.9;
}

/* Music Section */
.music-section {
  padding: 80px 5%;
  text-align: center;
  background: #1a1a1a;
  position: relative;
}

.music-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.8), rgba(0, 0, 0, 0.5));
  transform: translateY(var(--scroll-parallax, 0));
  z-index: -1;
}

.music-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  color: #f4c430;
  margin-bottom: 20px;
}

.release-name {
  font-size: 24px;
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.music-section.visible .release-name {
  opacity: 1;
  transform: translateY(0);
}

.music-container {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.music-section.visible .music-container {
  opacity: 1;
  transform: scale(1);
}

.music-container iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

/* About Section */
.about-section {
  padding: 80px 5%;
  text-align: center;
  background: #0f0f0f;
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1507838153414-6e6f34f0b9c8?auto=format&fit=crop&w=1920&q=80') no-repeat center;
  background-size: cover;
  opacity: 0.05;
  transform: translateY(var(--scroll-parallax, 0));
  z-index: -1;
}

.about-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  color: #f4c430;
  margin-bottom: 20px;
}

.about-section p {
  max-width: 700px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-section.visible p {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Section */
.contact-section {
  padding: 80px 5%;
  text-align: center;
  background: #1a1a1a;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.8), rgba(0, 0, 0, 0.5));
  transform: translateY(var(--scroll-parallax, 0));
  z-index: -1;
}

.contact-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  color: #f4c430;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 16px;
  color: #b0b0b0;
  margin-bottom: 30px;
}

.contact-btn {
  padding: 12px 40px;
  font-size: 16px;
}

/* Footer */
.footer {
  padding: 60px 5%;
  text-align: center;
  background: #2a2a2a;
}

.footer h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: #f4c430;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.platform-logo {
  width: 50px;
  height: 50px;
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.footer.visible .platform-logo {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.platform-logo:hover {
  transform: scale(1.2) rotate(5deg);
}

.footer p {
  font-size: 12px;
  color: #808080;
  font-weight: 300;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 3%;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    margin-top: 10px;
    justify-content: center;
    width: 100%;
  }
  .nav-links li {
    margin: 0 15px;
  }
  .hero {
    min-height: 60vh;
    padding: 15px;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .streaming-platforms {
    gap: 20px;
  }
  .platform-icon {
    width: 35px;
    height: 35px;
  }
  .music-section, .about-section, .contact-section, .footer {
    padding: 50px 3%;
  }
  .music-section h2, .about-section h2, .contact-section h2 {
    font-size: 32px;
  }
  .release-name {
    font-size: 20px;
  }
  .footer h3 {
    font-size: 28px;
  }
  .platform-logo {
    width: 40px;
    height: 40px;
  }
}