/* Base */
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", Arial, sans-serif;
  background: #fafafa;
  color: #1d1d1f;
  overflow-x: hidden;
  line-height: 1.6;
}

/* HEADER */
header {
  background: #fff;
  padding: 14px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.5px;
}

/* Nav menu */
nav {
  display: flex;
  gap: 28px;
}

nav a {
  text-decoration: none;
  color: #444;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #6c63ff, #b84dff);
  transition: width 0.3s ease;
}

nav a:hover {
  color: #6c63ff;
}

nav a:hover::after {
  width: 100%;
}

/* Search */
.search-box {
  flex: 1;
  display: flex;
  justify-content: center;
}

.search-box input {
  width: 100%;
  max-width: 360px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.search-box input:focus {
  border-color: #6c63ff;
  box-shadow: 0 0 6px rgba(108,99,255,0.3);
  outline: none;
}

/* Buttons */
.btn {
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-login {
  border: 1px solid #000;
  background: #fff;
}

.btn-login:hover {
  background: #f2f2f2;
}

.btn-signup {
  background: linear-gradient(90deg, #6c63ff, #b84dff);
  border: none;
  color: #fff;
}

.btn-signup:hover {
  filter: brightness(1.1);
}

/* HERO */
.hero {
  text-align: left;
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff, #f4f5ff);
}

.hero .art {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #777;
}

.hero h1 {
  font-size: 56px;
  font-weight: 600;
  margin: 10px 0 20px;
  line-height: 1.2;
}

.Main p {
  color: #555;
  font-family: monospace;
  padding: 0 150px;
}

.main_para {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  padding: 0 150px 0 70px;
}

/* HERO button */
.hero .btn-signup {
  font-size: 18px;
  padding: 14px 35px;
  margin-top: 20px;
}

/* Artists Section */
.artists {
  display: flex;
  flex-direction: column;   /* stack cards vertically */
  align-items: center;      /* center them */
  gap: 40px;                /* space between cards */
  padding: 40px 20px;
}

.artist-card {
  width: 100%;
  max-width: 1000px;         /* keeps them nicely centered */
}


.artist-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.artist-card .name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
}

.artist-card h3 {
  font-size: 40px;
  font-weight: 600;
  margin: 0;
}

/* .artist-card .follow {
  padding: 6px 14px;
  border-radius: 6px;
  border: none;
  background: linear-gradient(90deg, #6c63ff, #b84dff);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.artist-card .follow:hover {
  filter: brightness(1.1);
} */
.follow {
   align-items: center; 
    margin-left: 10px;
    padding: 6px 14px;
    border: 1px solid #6c63ff;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    background: #fff;
    color: #6c63ff;
    transition: 0.3s;
  }

  .follow.following {
    background: #6c63ff;
    color: #fff;
  }

.artist-card p {
  padding: 0 18px 15px;
  color: #555;
  font-size: 14px;
  text-align: center;
}

.artist-card img {
  width: 90%;
  height: 240px;
  object-fit: cover;
  margin: auto;
}

.artist-card .pic_title {
  padding: 12px 18px;
  font-size: 13px;
  color: #797979;
  font-style: italic;
}

.artist-card .main_para {
  padding: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  text-align: left;
}

.artist-card button {
  margin: 15px auto 25px;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  background: linear-gradient(90deg, #6c63ff, #b84dff);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.artist-card button:hover {
  filter: brightness(1.15);
}


/* Footer */
footer {
  margin-top: 60px;
  padding: 25px;
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  text-align: center;
}
