/* GENERAL */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f8f9fa;
}

/* NAVBAR */
.navbar {
  background-color: #002147;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-brand {
  color: white !important;
  font-weight: bold;
}

/* POSTER CARD */
.poster-card {
  border-radius: 10px;
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.poster-card:hover {
  transform: translateY(-5px);
}

/* Image Wrapper & Overlay */
.poster-img-wrapper {
  position: relative;
  overflow: hidden;
}
.poster-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
}

/* Gradient Overlay */
.event-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: #fff;
}
.event-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}
.event-meta {
  font-size: 0.95rem;
  margin-top: 5px;
}

/* Buy Ticket Button */
.btn-gold {
  background-color: #C49A35;
  color: white;
  font-weight: bold;
  border: none;
  transition: background 0.3s ease;
}
.btn-gold:hover {
  background-color: #a6802b;
}

/* FOOTER */
footer {
  background-color: #002147;
  color: white;
}
footer .ticker-container {
  background-color: #C49A35;
  padding: 10px;
  font-weight: bold;
  font-size: 0.95rem;
}

.buy-ticket-btn {
  display: inline-block;
  background-color: #002147; /* Navy Blue */
  color: #ffffff;            /* White text */
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
}

.buy-ticket-btn:hover {
  background-color: #00162d; /* Slightly darker navy on hover */
  color: #ffffff;
  text-decoration: none;
}









