/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #111;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background-color: #000;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #9328d1de;
  text-decoration: none;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
  color: #9328d1de;
}

.navbar .btn-apply {
  background-color: #9328d1de;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.navbar .btn-apply:hover {
  background-color: #550186;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, #550186, #111);
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero .btn {
  background-color: #9328d1de;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
}

/* Sections */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #9328d1de;
}

.section p {
  font-size: 1rem;
  color: #ccc;
}

/* Features Section */
.feature-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.feature-card {
  background: #121212;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #9328d1de;
}

.feature-card p {
  font-size: 1rem;
  color: #ccc;
}

/* Featured Artists Section */
.artists {
  padding: 50px 20px;
  background: linear-gradient(135deg, #1e1e2f, #121212);
  color: #ffffff;
  text-align: center;
}

.artists h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #9328d1de;
}

.artist-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.artist-card {
  background-color: #2c2b2be6; /* Semi-transparent dark background */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  padding: 20px;
  text-align: center;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.artist-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.artist-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #9328d1de;
}

.artist-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #cccccc;
}

/* Buttons */
.artist-btn {
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(135deg, #9328d1de, #7c21b1de);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.artist-btn:hover {
  background: linear-gradient(135deg, #7c21b1de, #9328d1de);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.artist-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background: #000;
  padding: 20px 0;
  text-align: center;
}

.footer p {
  font-size: 0.9rem;
  color: #ccc;
}

/* Floating Button */
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #9328d1de;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.floating-btn:hover {
  background-color: #550186;
  transform: scale(1.1);
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #9328d1de;
  border-top: 5px solid #550186;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Partners Section */
.partners {
  padding: 50px 20px;
  background: #121212;
  text-align: center;
}

.partners h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #9328d1de;
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.partner-logos img {
  max-width: 150px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner-logos img:hover {
  filter: grayscale(0%);
}
