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

:root {
  --primary-color: #ff8c42;
  --secondary-color: #ffb366;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --text-color: #333;
  --text-light: #666;
  --gradient-sunset: linear-gradient(
    135deg,
    #ff8c42 0%,
    #ffb366 50%,
    #ffc299 100%
  );
  --gradient-dark: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Styling */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-sunset);
  border-radius: 2px;
}

/* About Section */
.about {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 5rem 0;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-text {
  font-size: 1.15rem;
  line-height: 1.9;
  text-align: center;
}

.about-text p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.lead {
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 2.5rem;
  position: relative;
}

.lead::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--gradient-sunset);
  border-radius: 1px;
}

/* Music Section */
.music {
  background: white;
  padding: 6rem 0;
}

.release {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.release-artwork {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(255, 140, 66, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.release-artwork::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 140, 66, 0.1),
    rgba(255, 179, 102, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.release-artwork:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 100px rgba(255, 140, 66, 0.5);
}

.release-artwork:hover::before {
  opacity: 1;
}

.release-artwork img {
  width: 100%;
  height: auto;
  display: block;
}

.release-info {
  padding: 1rem;
}

.release-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.release-artist {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.release-type {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.release-description {
  margin-bottom: 2rem;
  line-height: 1.8;
  color: var(--text-color);
}

.streaming-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.streaming-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.streaming-btn.spotify {
  background: #1db954;
  color: white;
}

.streaming-btn.spotify:hover {
  background: #1ed760;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(29, 185, 84, 0.3);
}

/* Contact Section */
.contact {
  background: var(--light-color);
  padding: 6rem 0;
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

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

.contact-info {
  padding: 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(255, 140, 66, 0.15);
  border: 1px solid rgba(255, 140, 66, 0.1);
  transition: all 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(255, 140, 66, 0.2);
}

.contact-info p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-text {
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.email-link {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.email-link:hover {
  color: var(--secondary-color);
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: var(--text-color);
  text-align: center;
  padding: 3rem 0;
  position: relative;
  border-top: 1px solid rgba(255, 140, 66, 0.1);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.footer p {
  margin-bottom: 0.5rem;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .release {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  section {
    padding: 4rem 0;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background: var(--primary-color);
  color: white;
}

/* Birthday Page Styles */
.birthday-page {
  background: linear-gradient(135deg, #fff0f5 0%, #fff 100%);
}

.birthday-banner {
  padding: 8rem 0 4rem;
  text-align: center;
  background: radial-gradient(
    circle at center,
    rgba(255, 230, 240, 0.8) 0%,
    transparent 70%
  );
}

.birthday-title {
  font-family: "Great Vibes", cursive;
  font-size: 5rem;
  color: #d63384;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  animation: popIn 1s ease-out;
}

.birthday-subtitle {
  font-size: 1.5rem;
  color: #666;
  font-family: "Playfair Display", serif;
}

@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Audio Players */
.audio-players {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.player-item {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.player-item label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
}

.player-item audio {
  width: 100%;
  border-radius: 30px;
}

/* Lyrics Section */
.lyrics-section {
  background: #fff;
  padding: 2rem 0 5rem;
  position: relative;
}

.lyrics-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
  line-height: 2;
  font-family: "Playfair Display", serif;
  color: #444;
}

.lyrics-content p {
  margin-bottom: 2rem;
}

/* Balloons */
#balloons-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
}

.balloon {
  position: absolute;
  bottom: -100px;
  width: 40px;
  height: 50px;
  background-color: red;
  border-radius: 50%;
  opacity: 0.8;
  animation: floatUp 10s linear infinite;
}

.balloon::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
}

@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-120vh) rotate(360deg);
    opacity: 0;
  }
}

/* Audio Player Download Buttons */
.player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.player-item label {
  margin-bottom: 0; /* Reset margin since it's now handled by flex container */
}

.download-btn {
  text-decoration: none;
  background-color: var(--light-color);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.download-btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Audio Player with Waveform */
.controls-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.play-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(255, 140, 66, 0.3);
}

.play-btn:hover {
  transform: scale(1.1);
  background-color: var(--secondary-color);
}

.waveform-container {
  width: 100%;
  height: 80px;
  margin-top: 1rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
}
