header 
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: white; 
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.67);
}

header img 
{
    height: 75px; 
    width: auto;
}

nav ul 
{
    list-style: none;
    display: flex;
    gap: 67px;
    margin: 0;
    padding: 0;
}

nav a 
{
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-family: Arial;
}

nav a:hover 
{
    text-decoration: underline;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  background-color: #ffffff;
  line-height: 1.6;
}

/* ====== Main Layout ====== */
main {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

h1 {
  font-size: 2rem;
  color: #c00040;
  margin-bottom: 2.5rem;
}

/* ====== Cards (voor sportlocaties) ====== */
section {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  padding: 2rem;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

section:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

h2 {
  color: #c00040;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

p {
  color: #444;
  margin-bottom: 1rem;
}

/* ====== Links ====== */
a {
  color: #c00040;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #90002e;
  text-decoration: underline;
}

/* ====== Footer ====== */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  border-top: 3px solid #c00040;
  background-color: #fff;
  color: #555;
}

footer a {
  color: #c00040;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ====== Responsive Design ====== */
@media (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  main {
    padding: 1rem;
  }

  section {
    padding: 1.5rem;
  }
}

footer 
{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f2f2f2;
  border-top: 2px solid #b1003a;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}