@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&family=Source+Serif+Pro:ital@1&display=swap');

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #f8f7f2;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #3d5c39;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #3d5c39;
}

p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.container-wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
}

@media (max-width: 1200px) {
  .container-wide {
    padding: 0 60px;
  }
}

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  background-color: #f8f7f2;
  border-bottom: 1px solid rgba(61, 92, 57, 0);
  z-index: 1000;
  transition: border-color 0.3s ease;
}

header.scrolled {
  border-bottom-color: rgba(61, 92, 57, 0.3);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 80px;
  max-width: 1600px;
  margin: 0 auto;
}

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

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #3d5c39;
  text-decoration: none;
}

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

@media (max-width: 768px) {
  nav ul {
    gap: 1rem;
    flex-direction: column;
    display: none;
  }

  nav.mobile-menu-open ul {
    display: flex;
  }
}

nav a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #3d5c39;
}

/* HERO */
#hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, #f8f7f2 0%, #f0ebe3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}

#hero .content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #3d5c39;
}

#hero h1 {
  color: #3d5c39;
  margin-bottom: 1rem;
}

/* SECTION STYLES */
section {
  padding: 180px 0;
}

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

/* TWO COLUMN LAYOUT */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease-out;
}

.two-column.reverse {
  grid-template-columns: 1fr 1fr;
}

.two-column.reverse .image-col {
  order: 2;
}

.two-column.reverse .text-col {
  order: 1;
}

@media (max-width: 768px) {
  .two-column.reverse {
    grid-template-columns: 1fr;
  }

  .two-column.reverse .image-col {
    order: 0;
  }

  .two-column.reverse .text-col {
    order: 0;
  }
}

/* CARDS GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.6s ease-in-out;
}

.card:hover {
  transform: scale(1.06);
  box-shadow: 0 13px 40px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
  text-align: center;
}

.card h3 {
  color: #3d5c39;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* COMPARISON TABLE */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table th,
.comparison-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid #e0ddd5;
}

.comparison-table th {
  background-color: #3d5c39;
  color: white;
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background-color: #faf9f6;
}

/* SUBSTANCE LIST */
.substance-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .substance-list {
    grid-template-columns: 1fr;
  }
}

.substance-item {
  padding: 1.5rem;
  background: white;
  border-left: 4px solid #3d5c39;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.substance-item h4 {
  color: #3d5c39;
  margin-bottom: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
}

.substance-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* FAQ */
.faq-item {
  margin-bottom: 1.5rem;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem;
  background: #f8f7f2;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f0ebe3;
}

.faq-question h4 {
  margin: 0;
  color: #3d5c39;
  font-family: 'Cormorant Garamond', serif;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #3d5c39;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* DISCLAIMER BLOCK */
.disclaimer-block {
  background: linear-gradient(135deg, #f8f7f2 0%, #f0ebe3 100%);
  border-left: 4px solid #3d5c39;
  padding: 2rem;
  border-radius: 8px;
  margin: 3rem 0;
}

.disclaimer-block p {
  font-size: 0.9rem;
  margin-bottom: 0;
  font-style: italic;
  color: #666;
}

/* FORM */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 400;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-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: #3d5c39;
  box-shadow: 0 0 0 2px rgba(61, 92, 57, 0.1);
}

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

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #3d5c39;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #2f4629;
}

.btn-secondary {
  background-color: #a8b5c4;
  color: white;
}

.btn-secondary:hover {
  background-color: #8f9aad;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #3d5c39 0%, #2f4629 100%);
  color: white;
  padding: 3rem 80px 2rem;
  margin-top: 100px;
}

@media (max-width: 768px) {
  footer {
    padding: 2rem 30px;
  }
}

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

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

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #c7a589;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

/* MODALS */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 2.5rem;
  border-radius: 8px;
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

.modal-close {
  float: right;
  font-size: 2rem;
  font-weight: 300;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #333;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #3d5c39;
  color: white;
  padding: 1.5rem;
  z-index: 1500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

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

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

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

@media (max-width: 768px) {
  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }
}

.cookie-btn {
  padding: 0.5rem 1.5rem;
  background: white;
  color: #3d5c39;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: #f8f7f2;
}

.cookie-btn.decline {
  background: transparent;
  color: white;
  border: 1px solid white;
}

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

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

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

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* SECTION BACKGROUNDS */
#einfuehrung {
  background: linear-gradient(135deg, #f8f7f2 0%, #f0ebe3 100%);
}

#portraits {
  background: white;
}

#rhodiola,
#eleutherococcus,
#schisandra {
  background: linear-gradient(135deg, #f8f7f2 0%, #f0ebe3 100%);
}

#vergleich,
#stoffe {
  background: white;
}

#qualitaet,
#faq {
  background: linear-gradient(135deg, #f8f7f2 0%, #f0ebe3 100%);
}

#haltung,
#kontext {
  background: white;
}

#beispiele {
  background: linear-gradient(135deg, #f8f7f2 0%, #f0ebe3 100%);
}

#cta {
  background: white;
  text-align: center;
  padding: 100px 0;
}

#kontakt {
  background: linear-gradient(135deg, #f8f7f2 0%, #f0ebe3 100%);
}

/* BREADCRUMB */
.breadcrumb-section {
  color: #999;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.breadcrumb-section a {
  color: #3d5c39;
  text-decoration: none;
}

.breadcrumb-section a:hover {
  text-decoration: underline;
}

/* IMAGE SIZING */
section img {
  max-width: 100%;
  height: auto;
}

/* PULSE ANIMATION FOR CTA */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

.btn.pulse {
  animation: pulse 4s infinite;
}

/* SECTION TEXT ALIGNMENT */
.text-center {
  text-align: center;
}

.max-width-600 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE IMAGES */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
