:root {
    --bg: #f3e7d3;
    --accent: #c46a1b;
    --dark: #4a2e1a;
    --text: #2b2b2b;
    --max-width: 800px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Arial", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    color: var(--accent);
}

header, footer {
    background: var(--dark);
    color: white;
    padding: 1rem;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    font-family: "Arial", serif;
    font-size: 3rem;
}

.menu-icon {
    font-size: 1.5rem;
    cursor: pointer;
}

.content {
    max-width: var(--max-width);
    margin: 2rem auto;
    padding: 0 1rem;
}

h1 {
    font-family: "Arial", serif;
    color: white;
}

h2, h3, h4 {
    font-family: "Arial", serif;
    color: var (--dark);
}

.hero {
    position: relative;
    height: 40vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.new-design {
    margin-top: 1rem;
    color: var(--accent);
    font-weight: bold;
}

.small-img {
    width: 150px;
    display: block;
    margin: 1rem auto;
}
.big-img {
    width: 100%;
    display: block;
    margin: 1rem auto;
}

.icon-img {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 0.5rem;
}

.button:hover {
    opacity: 0.9;
}

.timeline {
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-marker {
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: 5px;
}

.quote {
    margin-bottom: 2rem;
    font-style: italic;
}

.quote-source {
    font-style: normal;
    font-size: 0.9rem;
    color: #555;
}

.download-list {
    list-style: none;
    padding: 0;
}

.download-list li {
    margin-bottom: 1rem;
}

table, th, td, caption {
  border: thin solid #a0a0a0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border-width: thin 0 0 thin;
  margin: 0 0 1em;
  table-layout: auto;
  max-width: 100%;
}
th, td {
  font-weight: normal;
  text-align: left;
  border-width: 3px 3px 3px 3px;
}
th, caption {
  font-weight: 700;
}


/* Slide-In-Menü */

#side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: var(--dark);
    color: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 1000;
}

#side-menu.open {
    transform: translateX(0);
}

#side-menu a {
    color: white;
    text-decoration: none;
    padding: 0.3rem 0;
}

#side-menu a:hover {
    color: var(--accent);
}

.close-btn {
    font-size: 1.5rem;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 1rem;
}

/* Footer */

footer p {
    text-align: center;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsiv */

@media (min-width: 768px) {
    .hero {
        height: 45vh;
    }
}
