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

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  line-height: 1.6;
  background: #fdfdfd;
  color: #222;
  text-align: center;
  scroll-behavior: smooth;
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(17, 17, 17, 0.95);
  color: white;
  padding: 1rem 2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 1.6rem;
  letter-spacing: 2px;
  font-weight: bold;
}

header nav {
  display: flex;
  gap: 1.5rem;
}

header nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #ff4d4d;
}

/* Content spacing */
main {
  padding-top: 90px;
}

/* Parallax */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
  animation: fadeIn 2s ease forwards;
}

/* Hero */
.hero {
  padding: 5rem 2rem;
  animation: fadeUp 1.5s ease forwards;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: auto;
}

.responsive {
  max-width: 80%;
  margin-top: 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  animation: fadeUp 2s ease forwards;
}

/* Artist Grid */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 3rem;
}

.artist-card {
  background: white;
  padding: 1.5rem;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
}

.artist-card:nth-child(1) { animation-delay: 0.2s; }
.artist-card:nth-child(2) { animation-delay: 0.4s; }
.artist-card:nth-child(3) { animation-delay: 0.6s; }

.artist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.artist-card img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.artist-card h3 {
  margin-top: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Artist Profile */
/* Artist Profile - split layout */
.artist-profile {
  display: flex;
  flex-wrap: wrap;
  min-height: 80vh;
  padding: 3rem;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  animation: fadeUp 2s ease forwards;
}

/* Left side: text + albums */
.artist-info {
  flex: 1 1 45%;
  text-align: left;
  min-width: 280px;
}

.artist-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.album-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.album {
  text-align: center;
}

.album img {
  max-width: 150px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.album p {
  margin-top: 0.5rem;
  font-weight: 600;
}

/* Right side: artist image */
.profile-pic {
  flex: 1 1 45%;
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  object-fit: cover;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .artist-profile {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  
  .artist-info {
    text-align: center;
  }

  .album-grid {
    justify-content: center;
  }
}


/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2rem;
  background: white;
  border-radius: 14px;
  max-width: 600px;
  margin: 3rem auto;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  opacity: 0;
  animation: fadeUp 1.8s ease forwards;
}

.contact-form label {
  font-weight: 600;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  padding: 1rem;
  background: #ff4d4d;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #111;
  color: white;
  margin-top: 3rem;
  font-size: 0.95rem;
  animation: fadeIn 2s ease forwards;
}

/* Animations */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.album-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.album {
  text-align: center;
}

.album img {
  max-width: 150px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.album p {
  margin-top: 0.5rem;
  font-weight: 600;
}