/* Reset base styles */
body {

  background: linear-gradient(-225deg, #c5b93e 0%, #d82626 48%, #1e00ff 100%);
  margin: 0;
  padding: 0;
    height: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
}

/* Navbar */
.navbar {
  background: linear-gradient(to right, #7424ff, #e72626);
}

.navbar-brand {
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #f8f9fa;
}

.navbar .nav-link {
  color: #f8f9fa !important;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #ffffff !important;
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: url('images/hero.jpg') center/cover no-repeat;
  height: 70vh;
  display:flexbox;
  justify-content: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 7);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
    font-family: 'Times New Roman', Times, serif; 
  text-decoration-thickness: 5px;
   color: rgb(255, 255, 255);

  text-shadow: 3px 3px 4px rgb(26, 255, 0), 5px 0 5px rgb(255, 0, 0), 0 0 30px rgb(139, 0, 0);
}

.hero h2{
  font-style: oblique;
  font-size:x-large;
  font-weight: bold;
}

.hero .btn {
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: bold;
   background-color: #ffc107;
  color: #000;
     text-shadow: 2.5px 2.5px 5px rgb(255, 0, 0);
}

/* Artist Cards Section */
.artist-card {
       text-shadow: 2px 2px 5px rgb(255, 64, 0);
color: #e72626;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  background: #ffffff;
}

.artist-card:hover {
  transform: scale(1.03) rotateX(3deg) rotateY(3deg);
  box-shadow: 0 10px 25px rgb(0, 0, 0);
}

.artist-card img {
  border-top-left-radius: 15px;
  border-top-right-radius: 20px;
  height: 250px;
  object-fit: cover;
}

.artist-card .card-title {
  font-size: 1.3rem;
 font-family: New Century Schoolbook, TeX Gyre Schola, serif ;
  font-weight: bold;
  color: #000000;
}

.button {
background-color:rgb(132, 255, 0) ;
margin: 10px;
padding: 10px;
border: #ffc107 ;
border-radius: 20px;
}
.artist-card .card-text {
  font-size: 1rem;
   color: #000000;
}

.artist-card .btn {
  background-color: #000000;
  color: #fff;
  border-radius: 20px;
  font-weight: 500;
}

.artist-card .btn:hover {
  background-color: #ffc107;
  color: #000;
}

/* Footer */
footer {
  background-color: #111;
  color: #fff;
  font-size: 0.95rem;
  background-color: black;
  text-align: center;
  padding: 5px 0;
  font-weight: bold;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
    
  }
  .navbar .nav-link {
    margin-left: 0;
  }
}
