@import url("home.css");

/* MUSIC HERO */
.music-hero {
  margin-top: 60px;
  height: 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.music-hero h1 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 6px;
}

.music-hero p {
  font-size: 14px;
  opacity: 0.6;
}

/* MUSIC GRID */
.music {
  padding: 40px 20px 80px;
}

.music-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.music-card img {
  width: 100%;
  display: block;
}

.music-card h3 {
  margin: 12px 0;
  font-size: 14px;
}

.music-card a {
  font-size: 12px;
  border: 1px solid red;
  padding: 8px 18px;
  color: #fff;
  text-decoration: none;
}

.music-card a:hover {
  background: red;
}

/* SOCIAL */
.social-bar {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px 0 10px;
}

.social-bar a {
  color: #777;
  font-size: 22px;
}

.social-bar a:hover {
  color: #fff;
}

/* FOOTER */
.footer {
  padding: 10px 20px 40px;
  text-align: center;
  font-size: 12px;
  color: #666;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 12px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .video-card iframe {
    height: 180px;
  }
}

/* DESKTOP NAV FIX */
@media (min-width: 1024px) {

  .hamburger {
    display: none;
  }

  .nav {
    position: static;
    height: auto;
    width: auto;
    flex-direction: row;
    background: transparent;
    gap: 32px;
    right: 0;
    transition: none;
  }

  .nav a {
    font-size: 13px;
    letter-spacing: 2px;
    opacity: 0.8;
  }

  .nav a:hover {
    opacity: 1;
  }
}

