/* Algemene kleuren en variabelen passend bij vuur / middeleeuws thema */
:root {
  --fire-gold: #CDA428;
  --fire-red: #6F1308;
  --fire-glow: #FFD447;
  --text-light: #f9f6f1;;
  --fire-dark: #6F1308;
  --fire-dark-alt: #2c1a09;
  --fire-bg: #1a0a00;
  --fire-light-bg: #3a1e00;
  --text-muted: #b68f2f;
  --shadow-fire: rgba(205, 164, 40, 0.6);
  
}

/* Body en algemene stijl */
body {
  font-family: 'Cinzel', serif;
  background-color: var(--fire-bg);
  color: var(--text-light);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: var(--fire-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: #FFD700;
  outline: none;
}

/* Consistent Navbar Styling */
.navbar {
  background: rgba(18, 10, 3, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(205, 164, 40, 0.08);
}

.navbar-brand {
  color: var(--fire-glow) !important;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.nav-link {
  color: var(--text-light) !important;
  transition: color 0.3s ease, background 0.3s ease;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 600;
}

.nav-link:hover, .nav-link.active {
  color: var(--fire-gold) !important;
  background: rgba(205, 164, 40, 0.08);
}

.special-link {
  background: linear-gradient(to right, var(--fire-gold), var(--fire-red));
  border-radius: 20px;
  padding: 0.5rem 1rem !important;
  color: #CDA428 !important;
  border-left: 2px solid #CDA428;
  margin-left: 15px;
  padding-left: 20px !important;
  box-shadow: 0 2px 8px rgba(205, 164, 40, 0.12);
}

/* Hero banner */
.hero-banner {
  background: url('images/fire-hero.jpg') no-repeat center center/cover;
  padding: 80px 20px;
  text-align: center;
  color: var(--text-light);
  text-shadow: 0 0 10px #000;
}

.hero-banner h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-banner p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--fire-gold);
}

/* Shows container */
.shows-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Titel shows */
.shows-container h2 {
  font-size: 2.8rem;
  color: var(--fire-gold);
  text-shadow: 1px 1px 5px var(--fire-dark-alt);
  margin-bottom: 30px;
  text-align: center;
}

/* Grid van shows */
.show-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Show Card */
.show-card {
  background-color: var(--fire-dark-alt);
  border-radius: 12px;
  box-shadow: 0 0 15px var(--shadow-fire);
  display: flex;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.show-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px var(--fire-gold);
}

/* Datum sectie */
.show-date {
  background: var(--fire-dark);
  color: var(--fire-gold);
  padding: 20px 15px;
  text-align: center;
  width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.show-date .day {
  font-size: 3.5rem;
  line-height: 1;
}

.show-date .month {
  font-size: 1.3rem;
  margin-top: 4px;
}

.show-date .year {
  font-size: 1rem;
  margin-top: 2px;
  color: var(--text-muted);
}

/* Show details */
.show-details {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.show-details h3 {
  margin-top: 0;
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--fire-gold);
  text-shadow: 1px 1px 3px var(--fire-dark);
}

.show-details p {
  margin: 5px 0;
  font-size: 1rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.show-details p i {
  margin-right: 8px;
  color: var(--fire-gold);
}

/* Event tags */
.event-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.event-tags li {
  list-style: none;
  background: rgba(205, 164, 40, 0.2);
  border: 1px solid var(--fire-gold);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--fire-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Beschrijving */
.description {
  font-style: italic;
  color: var(--fire-gold);
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.3;
}

/* Knop details */
.btn-show {
  margin-top: 15px;
  align-self: start;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  background: linear-gradient(45deg, var(--fire-gold), var(--fire-dark));
  color: var(--fire-dark);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 7px var(--shadow-fire);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-show:hover,
.btn-show:focus {
  background: var(--fire-gold);
  color: var(--fire-dark);
  box-shadow: 0 0 20px var(--fire-gold);
  transform: translateY(-3px);
  outline: none;
}

/* Footer */
.footer {
  background-color: var(--fire-dark);
  color: var(--fire-gold);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 -2px 8px var(--shadow-fire);
}

.footer a {
  color: var(--fire-gold);
  font-weight: 700;
}

.footer a:hover,
.footer a:focus {
  color: #FFD700;
  text-decoration: underline;
  outline: none;
}

/* Responsiveness */
@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 2.2rem;
  }
  .hero-banner p {
    font-size: 1rem;
  }
  
  .show-date {
    width: 80px;
    padding: 15px 10px;
  }
  
  .show-date .day {
    font-size: 2.7rem;
  }
  
  .show-details h3 {
    font-size: 1.5rem;
  }
  
  .btn-show {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .show-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-banner {
    padding: 50px 15px;
  }
}
