/* Root variables define the colour palette derived from the Makerie brand kit
   but adapted for a spooky, slimy theme. Adjust these values to tweak the
   overall look of the site. */
:root {
  --dark-bg: #0d0d1f;
  --dark-bg-alt: #13132b;
  --slime-green: #00d49a;
  --slime-purple: #4f2d7f;
  --slime-pink: #ff005c;
  --slime-yellow: #fff300;
  --light-text: #ffffff;
  --muted-text: #d1d1e0;
  --font-heading: 'Creepster', cursive;
  --font-body: 'Poppins', sans-serif;
}

/* Basic resets and typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  letter-spacing: 1px;
  margin-bottom: 0.5em;
  color: var(--slime-yellow);
}

p {
  margin-bottom: 1em;
  color: var(--muted-text);
}

a {
  color: var(--slime-green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Utility classes */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 0;
}

/* Header & Navigation */
.site-header {
  background-color: var(--dark-bg-alt);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--slime-yellow);
}
.site-nav .nav-link {
  margin-left: 2rem;
  font-weight: 600;
  color: var(--light-text);
  transition: color 0.2s ease;
}
.site-nav .nav-link:hover {
  color: var(--slime-green);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
}

/* Smaller hero for interior pages */
.inner-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 1rem;
}
.hero-title {
  font-size: 3.5rem;
  color: var(--slime-yellow);
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--muted-text);
  font-family: var(--font-body);
}
.cta-buttons .btn {
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  margin: 0 0.5rem;
  font-weight: 700;
  transition: background-color 0.3s, color 0.3s;
}
.btn-primary {
  background-color: var(--slime-green);
  color: var(--dark-bg);
}
.btn-primary:hover {
  background-color: var(--slime-yellow);
  color: var(--dark-bg);
}
.btn-secondary {
  background-color: var(--slime-purple);
  color: var(--light-text);
}
.btn-secondary:hover {
  background-color: var(--slime-pink);
  color: var(--light-text);
}
.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* About Section */
.about-section {
  background-color: var(--dark-bg-alt);
  color: var(--muted-text);
}
.about-section h2 {
  color: var(--slime-green);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-section a {
  color: var(--slime-pink);
}

/* Experience Section */
.experience-section {
  background-color: var(--dark-bg);
}
.experience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.experience-card {
  flex: 1 1 300px;
  background-color: var(--dark-bg-alt);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  position: relative;
}
.experience-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}
.experience-card p {
  margin-bottom: 1rem;
}
.experience-card.day-card {
  border-left: 5px solid var(--slime-green);
}
.experience-card.night-card {
  border-left: 5px solid var(--slime-purple);
}
.schedule-list {
  list-style: none;
  margin-bottom: 1rem;
}
.schedule-list li {
  margin-bottom: 0.3rem;
  color: var(--light-text);
}

/* Map Section */
.map-section {
  background-color: var(--dark-bg-alt);
}
.map-section h2 {
  color: var(--slime-yellow);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.map-image-wrapper {
  margin-top: 2rem;
  overflow-x: auto;
  border: 3px solid var(--slime-purple);
  border-radius: 8px;
}
.map-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer */
.site-footer {
  background-color: var(--dark-bg);
  color: var(--muted-text);
  padding: 2rem 0;
  font-size: 0.9rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--slime-green);
}
.footer-col p {
  margin-bottom: 0.5rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  .site-nav .nav-link {
    margin-left: 0;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .experience-grid {
    flex-direction: column;
  }
}