/* ============================================
   Genossenschaft Landing Page Styles
   ============================================ */

/* Page Container */
.genossenschaft-page {
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  min-height: 100vh;
}

/* Top Bar */
.genossenschaft-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: white;
  border-radius: 10px;
  margin: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.genossenschaft-top-bar .top-bar-logo a {
  font-size: 1.5em;
  font-weight: 700;
  color: #14b8a6;
  text-decoration: none;
}

.genossenschaft-top-bar .top-bar-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.genossenschaft-top-bar .top-bar-link {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  color: #0f766e;
  transition: all 0.2s ease;
}

.genossenschaft-top-bar .top-bar-link:hover {
  background: #f0fdfa;
}

.genossenschaft-top-bar .top-bar-cta {
  background: #14b8a6;
  color: white !important;
}

.genossenschaft-top-bar .top-bar-cta:hover {
  background: #0d9488;
  transform: translateY(-2px);
}

/* Hero Section */
.genossenschaft-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #2dd4bf 100%);
  color: white;
  margin: 0 20px;
  border-radius: 20px;
}

.genossenschaft-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.genossenschaft-hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.genossenschaft-hero .highlight {
  color: #fef3c7;
}

.genossenschaft-hero-subtitle {
  font-size: 1.3em;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.95;
  line-height: 1.6;
}

.genossenschaft-hero-mission {
  max-width: 700px;
  margin: 0 auto 40px;
}

.mission-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 15px;
  text-align: left;
}

.mission-icon {
  font-size: 2em;
}

.mission-text {
  font-size: 1.1em;
  line-height: 1.6;
}

.genossenschaft-hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1em;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.cta-primary {
  background: #fbbf24;
  color: #0f766e;
}

.cta-primary:hover {
  background: #f59e0b;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(251, 191, 36, 0.4);
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.cta-large {
  padding: 16px 40px;
  font-size: 1.2em;
}

/* Section Common */
.genossenschaft-why,
.genossenschaft-services,
.genossenschaft-membership,
.genossenschaft-process,
.genossenschaft-benefits,
.genossenschaft-principles,
.genossenschaft-contact,
.genossenschaft-faq,
.genossenschaft-glossary {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

h2 {
  text-align: center;
  font-size: 2.2em;
  color: #0f766e;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1.2em;
  margin-bottom: 40px;
}

/* Why Cooperative Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.why-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.15);
}

.why-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.why-card h3 {
  color: #0f766e;
  margin-bottom: 10px;
}

.why-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.15);
}

.service-header {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: white;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-icon {
  font-size: 2em;
}

.service-header h3 {
  margin: 0;
  font-size: 1.3em;
}

.service-features {
  list-style: none;
  padding: 25px;
  margin: 0;
}

.service-features li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #14b8a6;
  font-weight: bold;
}

/* Membership Section */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.membership-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.membership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.15);
}

.membership-card.featured {
  border: 2px solid #14b8a6;
  background: linear-gradient(135deg, #f0fdfa 0%, white 100%);
}

.membership-badge {
  display: inline-block;
  background: #e0f2f1;
  color: #0f766e;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 600;
  margin-bottom: 15px;
}

.membership-card.featured .membership-badge {
  background: #14b8a6;
  color: white;
}

.membership-card h3 {
  color: #0f766e;
  margin-bottom: 15px;
  font-size: 1.4em;
}

.membership-who,
.membership-purpose {
  color: #64748b;
  margin-bottom: 10px;
  font-size: 0.95em;
}

.membership-details {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.membership-details li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #334155;
}

.membership-details li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #14b8a6;
  font-weight: bold;
}

.membership-note {
  font-size: 0.85em;
  color: #64748b;
  font-style: italic;
  margin-bottom: 20px;
  padding: 10px;
  background: #f8fafc;
  border-radius: 8px;
}

.membership-cta {
  display: block;
  text-align: center;
  padding: 12px 25px;
  background: #14b8a6;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.membership-cta:hover {
  background: #0d9488;
  transform: translateY(-2px);
}

/* Process Timeline */
.process-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.process-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  font-weight: 700;
  flex-shrink: 0;
}

.process-content {
  flex: 1;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.process-content h3 {
  color: #0f766e;
  margin: 0 0 10px 0;
}

.process-content p {
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Benefits Section */
.genossenschaft-benefits {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  padding: 60px 20px;
  border-radius: 20px;
  margin: 60px 20px;
  max-width: none;
}

.genossenschaft-benefits h2 {
  color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  color: white;
}

.benefit-check {
  color: #fbbf24;
  font-size: 1.3em;
  font-weight: bold;
}

/* Principles Section */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.principle-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.principle-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: 700;
  margin: 0 auto 15px;
}

.principle-card h3 {
  color: #0f766e;
  margin-bottom: 10px;
}

.principle-card p {
  color: #64748b;
  line-height: 1.6;
}

.principles-note {
  background: #fef3c7;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  border-left: 4px solid #f59e0b;
}

.principles-note p {
  margin: 0;
  color: #92400e;
}

/* Contact Form */
.genossenschaft-contact {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1em;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #14b8a6;
}

.checkbox-group {
  margin: 20px 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
}

.checkbox-label a {
  color: #14b8a6;
}

.form-note {
  text-align: center;
  color: #64748b;
  font-size: 0.9em;
  margin-top: 15px;
}

.contact-form button[type="submit"] {
  width: 100%;
  margin-top: 10px;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  color: #0f766e;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #f0fdfa;
}

.faq-icon {
  font-size: 1.5em;
  color: #14b8a6;
  font-weight: 300;
}

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

.faq-answer p {
  padding: 0 25px 20px;
  color: #64748b;
  line-height: 1.7;
}

.faq-item.open .faq-question {
  background: #f0fdfa;
}

/* Glossary Section */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.glossary-item {
  background: white;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.glossary-item dt {
  font-weight: 700;
  color: #0f766e;
  margin-bottom: 8px;
  font-size: 1.1em;
}

.glossary-item dd {
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Footer */
.genossenschaft-footer {
  background: #0f766e;
  color: white;
  padding: 40px 20px;
  text-align: center;
  margin-top: 60px;
}

.genossenschaft-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.genossenschaft-footer .footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.genossenschaft-footer .footer-links a:hover {
  color: white;
}

.genossenschaft-footer .footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9em;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .genossenschaft-top-bar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin: 10px;
    padding: 15px;
  }

  .genossenschaft-top-bar .top-bar-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .genossenschaft-hero {
    padding: 50px 20px;
    margin: 0 10px;
  }

  .genossenschaft-hero h1 {
    font-size: 2em;
  }

  .genossenschaft-hero-subtitle {
    font-size: 1.1em;
  }

  .mission-card {
    flex-direction: column;
    text-align: center;
  }

  .genossenschaft-hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .genossenschaft-hero-cta .cta-button {
    width: 100%;
    max-width: 300px;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
  }

  .process-number {
    margin: 0 auto;
  }

  .genossenschaft-benefits {
    margin: 40px 10px;
    padding: 40px 20px;
  }

  .genossenschaft-contact {
    padding: 40px 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .genossenschaft-hero h1 {
    font-size: 1.6em;
  }

  h2 {
    font-size: 1.8em;
  }

  .why-card,
  .service-card,
  .membership-card,
  .principle-card {
    padding: 20px;
  }
}
