/* reset some basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #121212;
  color: #eee;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

header {
  background: #1f1f1f;
  padding: 15px 0;
  border-bottom: 2px solid #ff3c00;
}

.logo {
  color: #ff3c00;
  font-size: 28px;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  align-items: center;
}

nav ul li a {
  color: #eee;
  text-decoration: none;
  font-weight: 600;
  padding: 5px 10px;
  transition: background 0.3s ease;
  border-radius: 5px;
}

nav ul li a:hover,
nav ul li a.active {
  background: #ff3c00;
  color: #121212;
}

.hero {
  background: linear-gradient(135deg, #ff3c00 0%, #ff6f00 100%);
  padding: 80px 20px;
  text-align: center;
  color: #121212;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero p {
  font-size: 20px;
  margin-bottom: 25px;
}

.btn {
  background: #121212;
  color: #ff3c00;
  padding: 12px 30px;
  border: none;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ff6f00;
  color: #121212;
}

.about, .contact {
  margin-top: 60px;
}

.about h3, .contact h3, .roster-section h2 {
  color: #ff3c00;
  font-weight: 700;
  margin-bottom: 20px;
}

.socials {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-top: 10px;
}

.socials li a {
  color: #ff3c00;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.socials li a:hover {
  color: #ff6f00;
}

footer {
  background: #1f1f1f;
  color: #666;
  text-align: center;
  padding: 15px 0;
  margin-top: 80px;
  font-size: 14px;
}

/* roster grid */

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 30px;
  margin-top: 40px;
}

.artist-card {
  background: #222;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 10px #ff3c00aa;
  transition: transform 0.3s ease;
}

.artist-card:hover {
  transform: scale(1.05);
}

.artist-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #ff3c00;
}

.artist-card h3 {
  color: #ff3c00;
  margin-bottom: 8px;
}

.artist-card p {
  font-size: 14px;
  color: #ccc;
}

.contact-section {
  margin-top: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #eee;
}

.contact-info {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-info a {
  color: #ff3c00;
  text-decoration: none;
}

.contact-info a:hover {
  color: #ff6f00;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #ff3c00;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
  background: #222;
  color: #eee;
  font-size: 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #ff3c00;
}

.contact-form button {
  background: #ff3c00;
  border: none;
  padding: 14px 30px;
  color: #121212;
  font-weight: 700;
  font-size: 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #ff6f00;
}

.music-section {
  margin-top: 60px;
  color: #eee;
}

.music-section h2 {
  color: #ff3c00;
  margin-bottom: 30px;
  font-weight: 700;
}

.music-player-container {
  display: flex;
  gap: 30px;
  align-items: center;
  max-width: 900px;
  margin: auto;
}

.soundcloud-embed {
  flex: 1 1 300px;
  max-width: 450px;
}

.music-description {
  flex: 1 1 400px;
  font-size: 18px;
  color: #ccc;
  line-height: 1.4;
}
