/* ==========================================================================
   HOMEPAGE — MODERN MINIMALIST
   ========================================================================== */

.home {
  margin-bottom: 4rem;
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 40vh;
  max-height: 60vh;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero:hover .hero-image {
  transform: scale(1.02);
}

/* Overlay text block */
.hero-overlay {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  color: white;
  max-width: 500px;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 5px black;
}

.hero-artwork-title {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 5px black;
}

/* CTA button */
.hero-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: white;
  color: black;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.hero-button:hover {
  background: #f0f0f0;
}

/* Make hero clickable when wrapped in <a> */
.hero-link {
  display: block;
  color: inherit;
}


/* ==========================================================================
   FEATURED ARTISTS
   ========================================================================== */

.featured-artists {
  margin-top: 2rem;
}

.featured-artists h2 {
  margin-bottom: 1.5rem;
}

/* Grid layout */
.featured-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Artist card */
.featured-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: box-shadow 0.15s ease;
}

.featured-card:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}

/* Card image */
.featured-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* Card title */
.featured-card h3 {
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}
