/* Basic reset / base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Header & Nav */
.site-header {
  background-color: #fafafa;
  border-bottom: 1px solid #ddd;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.site-nav a:hover {
  color: #007ACC;
}

/* Hero section */
.hero {
  background: url("../images/hero-bg.jpg") center center / cover no-repeat;
  color: white;
  padding: 4rem 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero p {
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

/* About / features */
.about {
  padding: 3rem 0;
}
.features {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.feature {
  flex: 1;
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 4px;
}

/* Events / competition section */
.events {
  padding: 3rem 0;
}
.event-blocks {
  display: flex;
  gap: 2rem;
}
.event {
  flex: 1;
  background-color: #f0f0f0;
  padding: 1rem;
  border-radius: 4px;
}
.event ul {
  list-style: disc inside;
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  background-color: #222;
  color: #eee;
  padding: 1.5rem 0;
  text-align: center;
}
/* CSS Document */

