:root {
  --color-bg: #f5f3f0;
  --color-text: #3a3a3a;
  --color-accent-primary: #6b2c3a;
  --color-accent-secondary: #7a8c5e;
  --color-border: #d9d4cf;
  --color-light-bg: #fefdfb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Garamond', serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: var(--color-accent-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: underline;
}

header {
  background-color: var(--color-light-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.logo a {
  color: var(--color-accent-primary);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav a {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
}

nav a:hover {
  color: var(--color-accent-primary);
  text-decoration: none;
}

.hero {
  height: 500px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 600px;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background-color: var(--color-accent-secondary);
  margin-top: 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 4rem 2rem;
  margin: 2rem 0;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--color-accent-primary);
}

section h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  color: var(--color-text);
}

section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 750px;
}

.intro-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.intro-text p {
  max-width: none;
}

.orientierung-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  margin: 3rem 0;
}

.orientierung-block {
  padding: 2rem;
  background-color: var(--color-light-bg);
  border-left: 3px solid var(--color-accent-secondary);
}

.orientierung-block h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--color-accent-primary);
  font-weight: 600;
}

.orientierung-block p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.themen-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.themen-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.themen-block:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.themen-block:nth-child(even) img {
  order: 2;
}

.themen-block img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border: 1px solid var(--color-border);
}

.themen-block img:hover {
  transform: scale(1.02);
}

.themen-content h3 {
  color: var(--color-accent-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 3rem 0;
}

.product-card {
  background-color: var(--color-light-bg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.product-content {
  padding: 1.8rem;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--color-accent-primary);
}

.product-description {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: var(--color-text);
}

.product-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--color-accent-secondary);
  margin-bottom: 1.2rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border: 1px solid var(--color-accent-primary);
  color: var(--color-accent-primary);
  background-color: transparent;
  font-size: 0.9rem;
  font-family: 'Georgia', serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.btn:hover {
  background-color: var(--color-accent-primary);
  color: var(--color-light-bg);
  text-decoration: none;
}

.btn-secondary {
  border-color: var(--color-accent-secondary);
  color: var(--color-accent-secondary);
}

.btn-secondary:hover {
  background-color: var(--color-accent-secondary);
  color: var(--color-light-bg);
}

.btn-block {
  display: block;
  text-align: center;
  width: 100%;
}

.cta-block {
  text-align: center;
  padding: 3rem;
  margin: 3rem 0;
}

.cta-block h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.hinweise-block {
  background-color: var(--color-light-bg);
  padding: 2.5rem;
  border-left: 4px solid var(--color-accent-secondary);
  margin: 2rem 0;
}

.hinweise-block h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent-primary);
}

.hinweise-block p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.faq-block {
  margin: 2rem 0;
}

.faq-item {
  background-color: var(--color-light-bg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--color-accent-secondary);
}

.faq-question {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-accent-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}

.faq-answer.active {
  display: block;
}

.faq-toggle {
  font-size: 1.3rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

footer {
  background-color: var(--color-light-bg);
  border-top: 1px solid var(--color-border);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--color-accent-primary);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--color-text);
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: var(--color-accent-primary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

.form-group {
  margin-bottom: 1.8rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-light-bg);
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent-primary);
  box-shadow: 0 0 0 2px rgba(107, 44, 58, 0.1);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--color-accent-primary);
}

.checkbox-group label {
  margin: 0;
  font-size: 0.9rem;
  cursor: pointer;
}

.thank-you-message {
  text-align: center;
  padding: 3rem;
  background-color: var(--color-light-bg);
  border-left: 4px solid var(--color-accent-secondary);
  margin: 2rem 0;
}

.thank-you-message h2 {
  color: var(--color-accent-primary);
  margin-bottom: 1rem;
}

.thank-you-message p {
  margin-bottom: 2rem;
  font-size: 1rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-light-bg);
  border-top: 2px solid var(--color-accent-primary);
  padding: 1.5rem 2rem;
  display: none;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.cookie-consent.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .hero {
    height: 350px;
    padding: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .intro-text {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .orientierung-blocks {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .themen-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .themen-block:nth-child(even) img {
    order: 1;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .cookie-consent.show {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  section {
    padding: 2rem 1rem;
  }

  .hero {
    height: 280px;
    padding: 1.5rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  section h2 {
    font-size: 1.5rem;
  }

  section h3 {
    font-size: 1.3rem;
  }
}
