:root {
  --primary-color: #FF0055;
  --secondary-color: #00FFEE;
  --text-color: #f0f0f0;
  --bg-dark: #1a1a1a;
  --bg-medium: #2a2a2a;
  --bg-light: #3a3a3a;
}

/* Basic Reset & Body Styles */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-dark);
  line-height: 1.6;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

a:hover {
  color: var(--secondary-color);
}

/* Site Header */
.site-header {
  background-color: var(--bg-medium);
  padding: 1rem 2rem;
  border-bottom: 2px solid var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Impact', 'Arial Black', sans-serif; /* Hiphop vibe font */
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  -webkit-text-fill-color: var(--secondary-color); /* Fallback for hover */
}


.main-nav ul {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  padding: 0.5rem 1rem;
  color: var(--text-color);
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 5px;
}

.main-nav a:hover {
  color: var(--secondary-color);
  background-color: rgba(255, 255, 255, 0.1);
}

.main-nav a.current-page {
  color: var(--secondary-color);
  background-color: rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid var(--secondary-color);
}

/* Hamburger Menu */
.hamburger-menu {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.hamburger-menu span:last-child {
  margin-bottom: 0;
}

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Site Footer */
.site-footer {
  background-color: var(--bg-medium);
  color: var(--text-color);
  padding: 3rem 2rem;
  border-top: 2px solid var(--primary-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
}

.footer-column h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-column p, .footer-column a {
  color: var(--text-color);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-column a:hover {
  color: var(--secondary-color);
}

.footer-logo {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .site-header {
    padding: 1rem;
  }

  .header-container {
    flex-wrap: wrap;
  }

  .logo {
    font-size: 2rem;
  }

  .hamburger-menu {
    display: block; /* Show hamburger on mobile */
  }

  .main-nav {
    flex-basis: 100%;
    order: 3; /* Push nav below logo and hamburger */
    transition: max-height 0.5s ease-out;
    max-height: 0;
    overflow: hidden;
  }

  .main-nav.active {
    max-height: 500px; /* Arbitrary large height for smooth expansion */
  }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
    background-color: var(--bg-light);
    border-top: 1px solid var(--primary-color);
    padding: 1rem 0;
    margin-top: 1rem;
  }

  .main-nav li {
    text-align: center;
  }

  .main-nav a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .main-nav li:last-child a {
    border-bottom: none;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column h3 {
    margin-top: 1.5rem;
  }

  .footer-nav ul {
    align-items: center;
  }
}