/*
Theme Name: Diez Etiketten Complete Theme
Theme URI: https://diez-etiketten.de
Author: Ihr Name
Description: Vollständiges responsives Theme mit Slider, Templates und Arial-Schrift
Version: 1.0
Text Domain: diez-etiketten
*/

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #2F3A56;
}

header, footer {
  background-color: #2F3A56;
  color: white;
  padding: 1em;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1em;
  padding: 0;
  margin: 0;
}

nav ul li {
  display: inline;
}

nav a {
  color: white;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
}

.button {
  background-color: #E30613;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none;
}

.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  nav ul {
    display: none;
    flex-direction: column;
    background: #2F3A56;
    padding: 1em;
  }
  nav ul.active {
    display: flex;
  }
}
