/* Base Reset */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #fff; /* Optional: Makes default text visible on black background */
}
  
  /* Hero/Carousel Styles */
  #hero {
  height: 60vh;
  overflow: hidden;
  position: relative;
  }
  #heroCarousel .carousel-item img {
  height: 60vh;
  object-fit: cover;
  }
  .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  }
  .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  }
  .hero-content h1 {
  font-size: 3rem;
  }
  .hero-content p {
  font-size: 1.25rem;
  }
  
  /* Cards Hover */
  #featured-artists .card,
  #upcoming-events .card {
  border: none;
  transition: transform 0.3s;
  }
  #featured-artists .card:hover,
  #upcoming-events .card:hover {
  transform: translateY(-5px);
  }
  
  /* Footer */
  footer p {
  margin: 0;
  }

/* Add more custom styles below */

/* Featured Artists Background Section */
.artist-carousel-bg {
  background: url('img/1920x800/artists-carousel-bg.png') center center / cover no-repeat;
  position: relative;
  z-index: 1;
}

.artist-carousel-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
  z-index: 2;
}

.artist-carousel-bg .container {
  position: relative;
  z-index: 3;
}


/* Artists Section */

.artist-section {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 2rem;
  padding: 1rem;
  color: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-section:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(100, 100, 100, 0.25); /* lighter grey shadow */
}


.artist-image {
  flex: 0 0 300px;
  max-width: 300px;
  height: auto;
  overflow: hidden;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artist-image img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 0.5rem;
  display: block;
}

/* Responsive: Stack layout and center image */
@media (max-width: 768px) {
  .artist-section {
    flex-direction: column;
    text-align: center;
  }

  .artist-image {
    margin: 0 auto 1rem;
    justify-content: center;
  }

  .artist-bio {
    padding-top: 0;
  }
}

.artist-bio .btn {
  width: fit-content;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
}



.event-card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 2rem;
  padding: 1rem;
  color: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(100, 100, 100, 0.25);
}

.event-image {
  flex: 0 0 300px;
  max-width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 0.5rem;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  display: block;
}

.event-info {
  flex: 1;
  padding: 1.5rem;
}

.event-info h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.event-info .datetime {
  font-size: 0.95rem;
  color: #555;
  margin-top: 0.75rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
    text-align: center;
  }

  .event-image,
  .event-info {
    max-width: 100%;
    padding: 1rem;
  }

  .event-image {
    margin-bottom: 1rem;
  }

  .event-info {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  #hero {
    margin-bottom: 1.5rem !important;
  }
}

  .bio-section img {
    max-height: 400px;
    object-fit: cover;
  }
  .product-card img {
    height: 300px;
    object-fit: cover;
  }
  .product-card {
    transition: transform 0.3s ease;
  }
  .product-card:hover {
    transform: translateY(-5px);
  }
  #artistHeroCarousel {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
.navbar.bg-dark {
  background-color: #000 !important;
}