body {
  font-family: 'Rajdhani', sans-serif;
  /* padding-top: var(--navbar-height); */
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  margin: 0;
  padding:0;
}


.theater-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}


.theater-stage {
  max-width: 1000px;
  width: 100%;
  margin-top:4rem;
  text-align: center;
}


.title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 0 8px #ff0055, 0 0 15px #ff0055;
}

.date {
  font-size: 1.2rem;
  color: #f0c674;
  margin-bottom: 30px;
}


.schedule-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}


.schedule-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #1a1a1a;
    border-left: 4px solid #ffdf00; 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}


.schedule-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(255, 223, 0, 0.3);
}


.time {
    font-weight: bold;
    color: #ffdf00;
    font-size: 1rem;
    margin-bottom: 8px;
    display: block;
    text-shadow: 0 0 6px rgba(255, 223, 0, 0.5);
}


.details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.details strong {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
    text-shadow: 0 0 8px rgba(255, 223, 0, 0.5);
}


.location {
    font-size: 0.95rem;
    color: #ccc;
    margin: 0;
    display: flex;
    align-items: center;
}


@media (min-width: 768px) {
    .schedule-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .schedule-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
