@font-face {
  font-family: 'Airstrike Expanded';
  src: url('./fonts/AirstrikeExpanded.woff2') format('woff2'),
       url('./fonts/AirstrikeExpanded.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bebas Neue';
  src: url('./fonts/BebasNeue-Regular.woff2') format('woff2'),
       url('./fonts/BebasNeue-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Airstrike';
  src: url('./fonts/Airstrike.woff2') format('woff2'),
       url('./fonts/Airstrike.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body & background */
body {
  position: relative;
  background-color: #151515; /* your dark base */
}
body::before {
  content: "";
  position: fixed; /* or absolute if you prefer */
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: url('./images/Black-Concrete.jpg') center center / cover no-repeat;
  opacity: 0.2;  /* controls transparency */
  pointer-events: none; /* so it doesn't block clicks */
  z-index: -1;
}

/* Header / Logo */
header {
  text-align: center;
  padding: 1rem 1rem 1rem;
}

.logo-text {
  font-family: 'Airstrike Expanded', sans-serif;
  font-size: clamp(2rem, 8vw, 5rem); /* scales from 2rem up to 5rem */
  color: #cc5800; /* burnt orange */
  -webkit-text-stroke: 2px #fdf7f1; /* cream outline */
  text-stroke: 2px #fdf7f1;
  font-weight: normal;
  user-select: none;
  animation: logoZoomOut 1s ease-out;
  transform-origin: center;
  margin: 0 auto;
}
.small-cream-text {
  color: #fdf7f1;           /* cream color */
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;       /* smaller than other text */
  line-height: 1.4;
  margin: 1rem auto;        /* some vertical spacing, centered if container allows */
  max-width: 640px;         /* optional max width to keep it neat */
  text-align: center;       /* optional, center the paragraph */
  user-select: none;
		  animation: taglineFadeIn 1s ease-out 0.5s;
  animation-fill-mode: both;
}

/* Tagline */
.tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1rem, 4vw, 2.5rem); /* Scales from 1rem to 2.5rem */
  color: #fdf7f1; /* cream */
  margin-top: 0.5rem;
  margin-bottom: -1rem;
  text-align: center;
  letter-spacing: 0.05em;
	  animation: taglineFadeIn 1s ease-out 0.5s;
  animation-fill-mode: both;
}

/* Upcoming events header */
.events-header {
  font-family: 'Airstrike', sans-serif;
  font-size: clamp(1rem, 8vw, 2.5rem); /* scales from 2rem up to 5rem */
  color: #cc5800; /* burnt orange */
  text-align: center;
  margin: 0 0 1.5rem;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 0.25px #fdf7f1;
  text-stroke: 0.25px #fdf7f1;
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 0.5rem;
  user-select: none;
		  animation: taglineFadeIn 1s ease-out 0.5s;
  animation-fill-mode: both;
}

/* Event cards container */
.events-section {
  display: flex;
  flex-direction: column;
  align-items: center;
		  animation: taglineFadeIn 1s ease-out 0.5s;
  animation-fill-mode: both;
}

/* Individual event card */
.event-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #1e1e1e;
  border-radius: 1rem;
  padding: 1px 1rem;  /* top/bottom: 1px, left/right: 1rem */
  margin: 0 0 .5rem;
  gap: 1rem;

  width: 500px;
  max-width: 100%;
  box-sizing: border-box;
}

/* Event date */
.event-date {
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Bebas Neue', sans-serif;
  color: #fdf7f1;
  flex-shrink: 0;
  user-select: none;
}

.event-date .month {
  font-size: 2rem;
  text-transform: uppercase;
}

.event-date .day {
  font-size: 2rem;
}

/* Event flyer */
.event-flyer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.event-flyer img {
  width: 90px;
  height: auto;
  border-radius: 0.5rem;
  cursor: pointer;
  display: block;
  user-select: none;
}

/* Event info (DJ/performers) */
.event-info {
  width: 240px; /* fixed width */
  font-family: 'Bebas Neue', sans-serif;
  color: #fdf7f1;
  text-align: center;
  overflow-wrap: break-word;
  white-space: normal;
  font-size: 1.25rem;
  user-select: none;
}

/* Event button container */
.event-button {
  width: 80px; /* fixed width for button */
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  user-select: none;
}

/* Pretix ticket button */
.pretix-button {
  background-color: #cc5800;
  color: #fdf7f1;
  border: none;
  padding: 0.5rem 0.75rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  text-align: center;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  user-select: none;
}

.pretix-button:hover {
  background-color: #e66a10;
}

.faq-button {
  background-color: #cc5800;   /* burnt orange */
  color: #fdf7f1;              /* cream text */
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  display: block;
  margin: 2rem auto;           /* center horizontally with spacing */
  transition: background-color 0.3s ease;
  user-select: none;
  max-width: 200px;            /* optional max width */
  text-align: center;
}

.faq-button:hover {
  background-color: #e66a10;   /* slightly lighter burnt orange on hover */
}
.site-footer {
  text-align: center;
  padding: 1rem 0;
  font-family: 'Bebas Neue', sans-serif;
  color: #fdf7f1; /* cream */
  font-size: 1rem;
  user-select: none;
}

/* Make the copyright symbol bigger and use a classic serif font for clarity */
.site-footer .copyright-symbol {
  font-family: Cambria;
  font-size: 1rem;
  vertical-align: middle;
  /* Optional: adjust spacing if needed */
}


/* === Modal Styles === */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(21, 21, 21, 0.95);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 0.75rem;
  cursor: pointer;
  position: relative;
  user-select: none;
  box-shadow: 0 0 15px #cc5800;
}

/* Close button on top right of image */
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #fdf7f1;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  z-index: 10000;
  background-color: rgba(204, 88, 0, 0.7);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  transition: background-color 0.2s ease;
}

.modal-close:hover {
  background-color: #e66a10;
}
/* ===== ANIMATIONS ===== */
@keyframes logoZoomOut {
  0% {
    transform: scale(2.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes taglineFadeIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.faq-wrapper {
  max-width: 800px;
  margin: 80px auto;
  padding: 20px;
}

.faq-title {
	font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 8vw, 4rem); /* scales from 2rem up to 5rem */
  color: #cc5800; /* burnt orange */
  text-align: center;
  margin-top: -80px;

}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  font-family: 'Bebas Neue', cursive, sans-serif;
  color: #fff5e1; /* Cream color */
  font-size: 1.6rem;  /* Slightly bigger for Bebas Neue */
  cursor: pointer;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: background-color 0.3s ease;
  display: block;
}
.faq-question::before {
  content: "▼";
  display: inline-block;
  margin-right: 10px;
  transition: transform 0.3s ease;
  font-size: 0.9em;
}

/* Rotate arrow when active */
input[type="checkbox"]:checked + .faq-question::before {
  transform: rotate(180deg);
}
.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.faq-answer {
	  font-family: 'Bebas Neue', cursive, sans-serif;
  color: #fff5e1; /* Cream color */
  font-size: 1.2rem;  /* Slightly bigger for Bebas Neue */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 5px 5px;
  padding: 0 10px;
  margin-top: 0;
}

.faq-answer.active {
  max-height: 500px; /* large enough for content */
  padding: 10px;
  margin-top: 5px;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 300px;
  padding: 16px;
}

.btn-back {
  display: block;
  width: 180px;
  margin: 60px auto 0;
  text-align: center;
  font-size: 1rem;
  font-family: var(--body-font);
  background-color: var(--orange);
  color: #000;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-back:hover {
  background-color: #ffb347;
}
.small-cream-text {
  color: #f5f1e7; /* cream-ish */
  font-size: 1.1rem;       /* larger default font */
  line-height: 1.6;
  max-width: 600px;        /* wider for desktop */
  margin: 0 auto;
  white-space: normal;
  padding: 0.5rem 1rem;
}

@media (max-width: 576px) {
  .small-cream-text {
    font-size: 1.3rem;    /* bigger on small screens */
    line-height: 1.6;
    max-width: 100%;
    padding: 0.75rem 1rem;
  }
}
