@charset "UTF-8";
/* CSS Document */

/* RESET */
/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
	
}

/* HERO */
.hero {
  min-height: 80vh;
  background-image: url("../images/splash.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
}

.logo {
  max-width: 280px;
  width: 80%;
  margin-bottom: 20px;
}

.hero h1 {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 25px;
}

/* BUTTONS */
.btn {
  padding: 12px 24px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  margin: 5px;
}

.primary {
  background: #00a651;
  color: #fff;
}

.secondary {
  border: 2px solid #00a651;
  color: #00a651;
}

/* NAV */
.main-nav {
  background: #000;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  padding: 15px 20px;
  text-transform: uppercase;
  font-size: 14px;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
}

.section.dark {
  background: #111;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* PROGRAM LIST */
.program-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.program-list li {
  border: 1px solid #333;
  padding: 20px;
  text-align: center;
}

/* FOOTER */
.footer {
  background: #000;
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid #222;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    background-image: url("../images/splash.png");
    min-height: 70vh;
  }

  .logo {
    max-width: 220px;
  }
}
