@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background-image: url("background-img.jpg");
  color: #fff;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 60px 20px 30px;
  background: #181818;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

header h1 {
  font-size: 2.4rem;
  margin: 0;
  color: #1DB954;
}

header p {
  color: #ccc;
  margin-top: 8px;
  font-size: 1rem;
}

section {
  max-width: 800px;
  margin: 40px auto;
  background: #222;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

h2 {
  color: #1DB954;
  border-left: 4px solid #1DB954;
  padding-left: 10px;
  margin-bottom: 16px;
}

.info {
  line-height: 1.8;
}

iframe {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  border: none;
  margin-top: 10px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.socials a {
  color: white;
  font-size: 1.6rem;
  transition: color 0.3s;
}

.socials a:hover {
  color: #1DB954;
}

footer {
  text-align: center;
  padding: 20px;
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 40px;
}

.quote-box {
  background: #1a1a1a;
  border-left: 4px solid #1DB954;
  padding: 16px;
  border-radius: 10px;
  font-style: italic;
  color: #ccc;
}

button {
  display: block;
  margin: 20px auto 0;
  background: #1DB954;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

button:hover {
  background: #17a74a;
}

@media (max-width: 600px) {
  header h1 { font-size: 2rem; }
  section { margin: 20px; padding: 20px; }
}