/*
Theme Name: Engelmann Zaunbau
Author: Christian Hahn
Description: Ein Wordpress Theme von Melzig & Friends
Version: 1.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/

@import url(./styles/reset.css);
@import url(./styles/class.css);
@import url(./styles/home.css);

:root {
  --color1: #021c1e;
  --color2: #004445;
  --color3: #2c7873;
  --color4: #6fb98f;
  --gap-xs: 5px;
  --gap-s: 10px;
  --gap-m: 20px;
  --gap-l: 30px;
  --gap-xl: 50px;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: Arial, sans-serif;
  color: var(--color1);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

header {
  background-color: var(--color1);
  color: white;
  padding: var(--gap-s) var(--gap-m);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  box-shadow: 0 3px 5px rgba(2, 28, 30, 0.3);
  z-index: 999;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

header .logo {
  font-size: 2em;
  font-weight: bold;
}

.header-menu {
  list-style: none;
  display: flex;
  gap: var(--gap-m);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

section {
  padding: var(--gap-l) var(--gap-m);
}

section h2 {
  font-size: 1.8em;
}

section.bg1 {
  background-color: var(--color1);
  color: white;
}

section.bg2 {
  background-color: var(--color2);
  color: white;
}

section.bg3 {
  background-color: var(--color3);
  color: white;
}

section.bg4 {
  background-color: var(--color4);
  color: white;
}

.section-inner {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  gap: var(--gap-m);
}

.section-inner.column {
  flex-direction: column;
}

footer {
  display: flex;
  flex-direction: column;
  gap: var(--gap-s);
  background-color: var(--color1);
  color: white;
  text-align: center;
  padding: var(--gap-s) var(--gap-m);
}

.footer-menu {
  list-style: none;
  display: flex;
  gap: var(--gap-m);
  justify-content: center;
}
