@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

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

body {
  font-family: 'Roboto', sans-serif;
  background: #0a0a0a;
  color: #f2f2f2;
  line-height: 1.6;
  overflow-x: hidden;
}

header.hero {
  position: relative;
  height: 80vh;
  background: url('../assets/bg.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

header.hero.small {
  height: 50vh;
}

header .overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 0, 40, 0.7);
}

.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #bb86fc;
}

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

.nav-links a {
  text-decoration: none;
  color: #f2f2f2;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #bb86fc;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: auto;
  margin-bottom: 5rem;
}

.hero-content h1 {
  font-size: 3rem;
  color: #bb86fc;
  animation: fadeDown 1.5s ease;
}

.hero-content .tagline {
  font-size: 1.2rem;
  color: #ddd;
  margin: 0.5rem 0 1.5rem;
  animation: fadeDown 2s ease;
}

.spotify-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #1db954;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 15px #1db954;
  transition: transform 0.3s, box-shadow 0.3s;
}

.spotify-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #1db954;
}

main {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: auto;
}

h2 {
  color: #bb86fc;
  margin-bottom: 0.5rem;
}

.about, .contact {
  margin-bottom: 2rem;
}

.announcement {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.bubble {
  background: #bb86fc;
  color: #0a0a0a;
  padding: 1rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 20px rgba(187, 134, 252, 0.5);
}

footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  color: #777;
}

a {
  color: #bb86fc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Animations */
.fade-in {
  animation: fadeIn 1.5s ease forwards;
}

.slide-up {
  animation: slideUp 1.2s ease;
}

.pulse .bubble {
  animation: pulse 2s infinite;
}

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

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

@keyframes fadeDown {
  from {opacity: 0; transform: translateY(-50px);}
  to {opacity: 1; transform: translateY(0);}
}

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

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .bubble {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
  }
}

.songs {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
}

.song-card {
  background: #111;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(187, 134, 252, 0.3);
  text-align: center;
  transition: transform 0.3s;
}

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

.song-card h2 {
  color: #bb86fc;
  margin-bottom: 1rem;
}

.song-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(187, 134, 252, 0.5);
}

.song-card audio {
  width: 100%;
  margin-top: 0.5rem;
}
