/* Styles specific to JatB.html page */
.actors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.actor-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.actor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.actor-image {
  height: 300px;
  background: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.actor-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.actor-info {
  padding: 1.5rem;
}

.hero-section {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('bollywood-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.more-actors {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.more-actors li a {
  display: block;
  padding: 0.5rem;
  background: var(--light-color);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.more-actors li a:hover {
  background: var(--secondary-color);
  color: white;
}
