/* Custom Waliduino styles - overrides any default theme */
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #f8f8f8;
  line-height: 1.6;
  background-color: #333;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: #eeeded;
  margin-top: 0;
}

a {
  color: #d35959;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsive container */
.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .container {
    width: 80%;
  }
}

/* Navigation */
.site-nav {
  background: #333;
  margin-bottom: 1rem;
}
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle:focus {
  outline: 2px solid #0069d9;
  outline-offset: 2px;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.nav-menu li {
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu li {
    margin: 0.5rem 0;
  }
}

/* Hero Banner */
.hero-banner {
  position: relative;
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-headline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem 2rem;
  border-radius: 4px;
}
