:root {
  --fire-red: #6F1308;
  --fire-gold: #CDA428;
  --fire-glow: #FFD447;
  --bg-dark: #1a0f08;
  --text-light: #f9f6f1;
  --card-bg: #2c1a09;
}


body {
  font-family: 'Cinzel', serif;
  background-color: var(--fire-bg);
  color: var(--text-light);
  margin: 0;
  padding: 0;
}

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

a:hover,
a:focus {
  color: var(--text-light);
  outline: none;
}




/* Gallery container */
.gallery-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  color: var(--fire-gold);
}

.gallery-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;
}

/* Event sections */
.event-section {
  margin-bottom: 50px;
}

.event-section h3 {
  font-size: 2rem;
  color: var(--fire-gold);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--fire-gold);
  padding-bottom: 5px;
}

/* Grid of images and videos */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  background: var(--fire-dark-alt);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(205, 164, 40, 0.4);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover,
.gallery-item:focus-within {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--fire-gold);
  outline: none;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  background: black;
}

/* 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: var(--text-light);
  text-decoration: underline;
  outline: none;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .gallery-container h2 {
    font-size: 2rem;
  }

  .event-section h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}
