/*
Theme Name: MKM Music
Author: MKM Music
Version: 3.0
Description: Simple, Fast, SEO Friendly Music WordPress Theme
*/

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

body {
  font-family: system-ui, Arial, sans-serif;
  background: #0b0b0b;
  color: #ffffff;
  line-height: 1.6;
}

a {
  color: #4cc9f0;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  padding: 25px 0;
  background: #000;
  text-align: center;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url("https://mkmmusic.org/wp-content/uploads/2026/01/hero.png");

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  color: #cccccc;
}

.button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #4cc9f0;
  color: #000;
  border-radius: 30px;
  font-weight: 600;
}

/* Sections */
section {
  padding: 70px 0;
  text-align: center;
}

/* Music Grid */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.track {
  background: #111;
  padding: 20px;
  border-radius: 12px;
}

.track h3 {
  margin: 12px 0;
}

audio {
  width: 100%;
}

/* Footer */
footer {
  background: #000;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #aaaaaa;
  margin-top: 60px;
}

/* Mobile */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
  }
}

html {
  scroll-behavior: smooth;
}
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #4cc9f0;
  color: #000;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 999;
}
.social-links {
  margin-top: 15px;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  color: #4cc9f0;
  font-size: 20px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #ffffff;
  transform: scale(1.2);
}
/* Desktop view */
@media (min-width: 992px) {
  .hero {
    min-height: 75vh;
    background-position: center top;
  }
}

/* Mobile view */
@media (max-width: 991px) {
  .hero {
    min-height: 90vh;
    background-position: center;
  }
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.video-grid iframe {
  width: 100%;
  height: 220px;
  border-radius: 10px;
}

