body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  line-height: 1.6;
}

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

.site-header {
  background: #0a3d62;
  color: white;
  padding: 5px 0;
}

.logo {
    font-size: 24px;
  margin: 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#menu {
  list-style: none;
  display: flex;
  gap: 10px;
}

#menu li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

#menu li a.active {
  text-decoration: underline;
}

#toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.hero {
  background: #1e3799;
  color: white;
  padding: 10px 0;
  text-align: center;
}

.song-card {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.btn {
  display: inline-block;
  background: #0a3d62;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
}

.btn:hover {
  background: #07406b;
}

.site-footer {
  background: #222;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 60px;
}

/* Mobile Menu */
@media(max-width: 768px){
  #menu {
    display: none;
    flex-direction: column;
    background: #0a3d62;
    position: absolute;
    width: 100%;
    left: 0;
    top: 60px;
    padding: 15px 0;
  }

  #menu.show {
    display: flex;
  }

  #toggle {
    display: block;
  }

  nav {
    position: relative;
  }
}
.song-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin: 0 auto 15px auto;
}

.about-img {
    width: 250px;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
}

audio {
    width: 100%;
    margin: 10px 0;
}