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

body {
  font-family: "Poppins", sans-serif;
  background: #0d0d0d;
  color: #f5f5f5;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  background: linear-gradient(-45deg, #ff6b6b, #ff9a9e, #24c6dc, #514a9d);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

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

.btn {
  display: inline-block;
  background: #ff3e3e;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background: #e63535;
  transform: scale(1.05);
}

/* Fade-in animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.fade-in.delay-1 { animation-delay: 0.5s; }
.fade-in.delay-2 { animation-delay: 1s; }

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

/* Section Styling */
section {
  padding: 100px 20px;
  width: 100%;
  text-align: center;
  border-top: 1px solid #222;
}

section > * {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.about {
  background: #0d0d0d;
}

.portfolio {
  background: #141414;
}

section + section {
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

section h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  color: #ff3e3e;
}

section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
}

/* Influences ticker */
.ticker {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #ff3e3e;
  min-width: 120px;
  height: 1.5rem;
  margin-left: 6px;
}

.ticker span {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.ticker span.visible {
  opacity: 1;
}

.artist-ticker {
  display: block;
  font-size: 1.5rem;
  min-width: 200px;
  height: 2rem;
  margin: 10px auto;
}


/* Spotify Embed */
.spotify-embed iframe {
  width: 100%;
  border: none;
  margin-top: 20px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.spotify-embed iframe:hover {
  transform: scale(1.02);
}

/* SoundBetter Badge */
.soundbetter-badge {
  margin-top: 20px;
}

/* Contact section */
.contact {
  padding: 150px 20px;
  background: #1a1a1a;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.btn.secondary {
  background: transparent;
  border: 2px solid #ff3e3e;
}

.btn.secondary:hover {
  background: #ff3e3e;
}

/* Footer */
footer {
  background: #111;
  padding: 25px;
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}

/* Scroll Fade Effect */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}
