@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;700&display=swap');

:root {
  --primary-bg: #F6FDFC;
  --primary-accent: #3E6D63;
  --secondary-accent: #73B0A3;
  --tertiary-accent: #CEB834;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --border-light: #e0e0e0;
  --white: #ffffff;
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-dark);
  line-height: 1.76;
  font-size: 17px;
  font-weight: 400;
}

h1 {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--primary-accent);
  margin-bottom: 1.5rem;
  text-align: center;
  text-balance: true;
}

h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--primary-accent);
  margin-bottom: 1.5rem;
  text-align: center;
  text-balance: true;
}

h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--primary-accent);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.76;
}

em, .italic-text {
  font-style: italic;
  color: var(--primary-accent);
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 30px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  background-color: rgba(246, 253, 252, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: all 0.6s ease;
}

header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-accent);
  text-decoration: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.logo:hover {
  opacity: 0.8;
}

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

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: var(--secondary-accent);
  border-bottom-color: var(--secondary-accent);
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding-left: 30px;
    padding-right: 30px;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    width: 100%;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-attachment: fixed;
  margin-bottom: 60px;
}

.hero-content {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 3rem;
  border-radius: var(--radius);
  max-width: 600px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 400px;
    background-attachment: scroll;
  }

  .hero-content {
    padding: 2rem;
    margin: 2rem 30px;
  }

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

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

/* Sections */
section {
  padding: 180px 0;
}

.section-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .section-content {
    padding: 0 30px;
  }
}

/* Balance Section */
#balance {
  text-align: center;
  background-color: var(--white);
}

#balance p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 900px;
}

/* Pflanzen Section */
#pflanzen {
  background-color: var(--primary-bg);
}

.plants-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 3rem;
}

.plants-grid img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(62, 109, 99, 0.1);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.plants-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 45px rgba(62, 109, 99, 0.2);
}

.plants-text h3 {
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .plants-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Products Section */
#produkte {
  background-color: var(--white);
}

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

.product-card {
  background-color: var(--primary-bg);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.6s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary-accent);
  box-shadow: 0 15px 40px rgba(115, 176, 163, 0.15);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  transition: transform 0.6s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  margin-bottom: 1rem;
  text-align: center;
}

.product-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  text-align: center;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* Gleichgewicht Section */
#gleichgewicht {
  background-color: var(--primary-bg);
  text-align: center;
}

.balance-infographic {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.balance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 150px;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(62, 109, 99, 0.08);
}

.balance-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
}

.balance-item h4 {
  color: var(--primary-accent);
  font-weight: 500;
}

.balance-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .balance-infographic {
    gap: 20px;
  }

  .balance-item {
    padding: 1.5rem;
    min-width: 120px;
  }
}

/* Fakten Section */
#fakten {
  background-color: var(--white);
  text-align: center;
}

.facts-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.fact-item {
  background-color: var(--primary-bg);
  padding: 2.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--secondary-accent);
  transition: all 0.3s ease;
}

.fact-item:hover {
  box-shadow: 0 10px 25px rgba(115, 176, 163, 0.15);
  transform: translateY(-4px);
}

.fact-item p {
  text-align: left;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .facts-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* Quellen Section */
#quellen {
  background-color: var(--primary-bg);
}

.sources-table {
  margin-top: 2rem;
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(62, 109, 99, 0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

thead {
  background-color: var(--primary-accent);
  color: var(--white);
}

th, td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

th {
  font-weight: 600;
}

tbody tr:hover {
  background-color: var(--primary-bg);
  transition: background-color 0.3s ease;
}

tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  table {
    font-size: 0.85rem;
  }

  th, td {
    padding: 0.8rem;
  }
}

/* Alltag Section */
#alltag {
  background-color: var(--white);
}

.alltag-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 2rem;
}

.alltag-image {
  position: relative;
}

.alltag-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(62, 109, 99, 0.15);
}

.alltag-text h3 {
  margin-bottom: 1.5rem;
}

.alltag-factors {
  list-style: none;
  margin-top: 1.5rem;
}

.alltag-factors li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-dark);
}

.alltag-factors li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-accent);
  font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .alltag-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Geschichte Section */
#geschichte {
  background-color: var(--primary-bg);
}

.geschichte-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 2rem;
}

.geschichte-text {
  order: 2;
}

.geschichte-text h3 {
  margin-bottom: 1.5rem;
}

.geschichte-image {
  order: 1;
}

.geschichte-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(62, 109, 99, 0.15);
}

@media (max-width: 768px) {
  .geschichte-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .geschichte-text {
    order: 1;
  }

  .geschichte-image {
    order: 2;
  }
}

/* FAQ Section */
#faq {
  background-color: var(--white);
  text-align: center;
}

.faq-container {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  background-color: var(--primary-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--secondary-accent);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  font-weight: 500;
  color: var(--primary-accent);
  user-select: none;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: var(--primary-bg);
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--secondary-accent);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-answer.active {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  text-align: left;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Hinweis Section */
#hinweis {
  background-color: var(--primary-bg);
  text-align: center;
}

.hinweis-box {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--tertiary-accent);
  max-width: 900px;
  margin: 2rem auto 0;
}

.hinweis-box h3 {
  color: var(--primary-accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hinweis-box ul {
  list-style: none;
  text-align: left;
  display: inline-block;
}

.hinweis-box li {
  padding: 0.7rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-dark);
}

.hinweis-box li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--tertiary-accent);
  font-weight: bold;
}

/* Finale Section */
#finale {
  background-color: var(--white);
  text-align: center;
}

.finale-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.finale-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

/* Kontakt Section */
#kontakt {
  background-color: var(--primary-bg);
  padding-bottom: 180px;
}

.kontakt-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.kontakt-info {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(62, 109, 99, 0.08);
}

.kontakt-info h3 {
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-label {
  font-weight: 600;
  color: var(--primary-accent);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.kontakt-form {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(62, 109, 99, 0.08);
}

.kontakt-form h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-accent);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-accent);
}

.form-disclaimer {
  background-color: var(--primary-bg);
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-align: center;
  font-style: italic;
}

.form-btn {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(62, 109, 99, 0.25);
}

.form-btn:active {
  transform: translateY(0);
}

.kontakt-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(62, 109, 99, 0.15);
}

@media (max-width: 768px) {
  .kontakt-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .kontakt-info,
  .kontakt-form {
    padding: 1.5rem;
  }
}

/* Footer */
footer {
  background-color: var(--primary-accent);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.8;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  font-size: 0.85rem;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-style: italic;
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer-content {
    padding: 0 30px;
  }

  .footer-sections {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  width: 90%;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--primary-accent);
}

.modal-content h2 {
  color: var(--primary-accent);
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.modal-content h3 {
  color: var(--primary-accent);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.modal-content ul, 
.modal-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.modal-content li {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.modal-content a {
  color: var(--secondary-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.modal-content a:hover {
  color: var(--primary-accent);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-accent);
  color: var(--white);
  padding: 1.5rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-banner.hidden {
  display: none;
}

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

.cookie-text strong {
  color: var(--tertiary-accent);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.cookie-btn-accept {
  background-color: var(--tertiary-accent);
  color: var(--text-dark);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(206, 184, 52, 0.3);
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-info {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-btn-info:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    min-width: 100px;
  }
}

/* Success Message */
.success-message {
  background-color: var(--secondary-accent);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}
