/* style.css */

/* Reset & Basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fdfdfd;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: #6b4f3f; /* Warmer, uriger Braunton */
  color: #fff;
  padding: 20px 0;
}
header .logo {
  font-size: 1.8em;
  font-weight: bold;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
nav ul li {
  margin-left: 20px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: url('placeholder-hero.jpg') no-repeat center center/cover;
  height: 400px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}
.hero-content h1 {
  font-size: 3em;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 1.2em;
}

/* Sections */
section {
  padding: 40px 0;
}
section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2em;
  color: #6b4f3f;
}
.section-content {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #6b4f3f;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 20px;
  border-radius: 5px;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  padding: 20px 0;
  font-size: 0.9em;
}
footer .footer-links {
  text-align: center;
  margin-bottom: 10px;
}
footer .footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}
footer p {
  text-align: center;
}

/* Formulare */
form {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}
form input,
form textarea,
form select,
form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
form button {
  background: #6b4f3f;
  color: #fff;
  border: none;
  cursor: pointer;
}
form button:hover {
  background: #5a4033;
}

/* Tabellen (Preise) */
table {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
}
table,
th,
td {
  border: 1px solid #ccc;
}
th,
td {
  padding: 10px;
  text-align: center;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    text-align: center;
  }
  nav ul li {
    margin: 10px 0;
  }
}

/* Bild-Platzhalter */
.placeholder-img {
  width: 100%;
  height: 200px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  margin-bottom: 20px;
}
