/* styles.css */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: url('images/miszmihneonbackground.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #f5f5f5;
  position: relative;
  z-index: 0;
}

/* Dark overlay for readability */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

header {
  background: rgba(10, 10, 20, 0.85);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
}

header h1 {
  font-size: 1.5rem;
  color: #ff0057;
  margin: 0;
}

nav a {
  color: #00fff7;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero h2 {
  font-size: 3rem;
  color: #ffffff;
  text-shadow: 0 0 15px #ff00c8;
}

.hero button {
  background: #00fff7;
  color: #000;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

.hero button:hover {
  background: #ff0057;
  color: #fff;
}

.beats-section {
  padding: 3rem 2rem;
  background: rgba(18, 18, 18, 0.8);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.beat-card {
  background: rgba(30, 30, 47, 0.85);
  border: 1px solid #333;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,255,247,0.4);
}

.beat-card h3 {
  margin-top: 0;
  color: #00fff7;
}

.audio-player {
  width: 100%;
  margin-top: 1rem;
}

.buy-button {
  margin-top: 1rem;
  background: #ff0057;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 0 10px #ff0057;
  transition: 0.3s ease;
}

.buy-button:hover {
  background: #00fff7;
  color: #000;
  box-shadow: 0 0 15px #00fff7;
}

.about {
  padding: 3rem 2rem;
  background: rgba(25, 25, 25, 0.85);
  color: #ccc;
  text-align: center;
}

.about h2 {
  color: #00fff7;
  font-size: 2rem;
  margin-bottom: 1rem;
}

footer {
  background: rgba(10, 10, 10, 0.85);
  color: #999;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: #00fff7;
  text-decoration: none;
  margin: 0 0.5rem;
}

/* Sticky Player */
#sticky-player {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(26, 26, 46, 0.9);
  padding: 0.75rem 1rem;
  border-top: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
}

#sticky-player audio {
  width: 100%;
}

/* Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.2rem;
  }

  .hero h2 {
    font-size: 2rem;
  }
}
