/* ========== HERO ========== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0;
  background: linear-gradient(rgba(248,245,240,0.9), rgba(248,245,240,0.9));
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ========== FEATURES ========== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  border-top: 4px solid var(--secondary);
}

.feature-card h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ========== PRODUCT GRID ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

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

.product-card h3 {
  padding: 1.2rem 1rem 0.5rem;
  font-size: 1.2rem;
}

.origin {
  padding: 0 1rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.price {
  padding: 0 1rem;
  font-weight: bold;
  color: var(--secondary);
  font-size: 1.3rem;
}

.btn-add-to-cart {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

/* ========== CTA PALESTINA ========== */
.cta-palestine {
  background: var(--primary);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin: 4rem 0;
}

.cta-palestine h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-palestine p {
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* ========== INTRO TEXT ========== */
.intro-text {
  padding: 2rem 0;
  background: white;
}

.intro-paragraph {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--dark);
}

/* ========== FULL WIDTH IMAGE ========== */
.full-width-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px;
}

/* ========== CTA BUTTON SECTION ========== */
.cta-button-section {
  padding: 3rem 0;
  background: var(--light);
}

.cta-button-section .btn {
  font-size: 1.2rem;
  padding: 16px 32px;
}

.text-center {
  text-align: center;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: white;
  padding: 4rem 0;
  border-top: 1px solid #eee;
}

.testimonials-section .section-title {
  text-align: center;
  color: var(--primary);
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--secondary);
}

.stars {
  color: gold;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 4px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-content cite {
  font-weight: 600;
  color: var(--accent);
}

/* ========== MARKET SECTION ========== */
.market-section {
  background: linear-gradient(rgba(248,245,240,0.9), rgba(248,245,240,0.9));
  padding: 4rem 0;
}

.market-section .section-title {
  color: var(--primary);
  margin-bottom: 2rem;
}

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

.market-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.market-info {
  list-style: none;
  padding: 0;
}

.market-info li {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.market-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .market-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .market-image {
    order: -1;
  }
}

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

  .testimonial-card {
    padding: 1.5rem;
  }
}

.no-reviews {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gray);
  font-style: italic;
  padding: 2rem;
}

/* ========== COMMUNITY & REZEPTE ========== */
.community-recipes-section,
.featured-recipes-section {
  padding: 4rem 0;
  background: var(--light);
}

.community-recipes-section .section-title,
.featured-recipes-section .section-title {
  color: var(--primary);
  margin-bottom: 2rem;
}

.no-reviews {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gray);
  font-style: italic;
  padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .community-recipes-section,
  .featured-recipes-section {
    padding: 2rem 0;
  }
}

/* ========== REZEPTE & COMMUNITY ========== */
.featured-recipes-section,
.community-recipes-section,
.testimonials-section {
  padding: 4rem 0;
}

.featured-recipes-section .section-title,
.community-recipes-section .section-title,
.testimonials-section .section-title {
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}

/* Rezept-Grid wie auf recipes.html */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  padding: 1rem 0;
}

.recipe-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.recipe-card:hover {
  transform: translateY(-5px);
}

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

.recipe-content {
  padding: 1.5rem;
}

.recipe-content h3 {
  margin-bottom: 0.5rem;
}

.recipe-meta {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.no-reviews {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gray);
  font-style: italic;
  padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .featured-recipes-section,
  .community-recipes-section,
  .testimonials-section {
    padding: 2rem 0;
  }

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

/* ========== MÄRTYRER:INNEN – EMOTIONAL & WAHRNEHMEND ========== */
.martyrs-section {
  padding: 4rem 0;
  background: linear-gradient(rgba(255, 250, 245, 0.7), rgba(255, 250, 245, 0.7));
  border-top: 3px solid var(--flag-red);
  border-bottom: 3px solid var(--flag-red);
  position: relative;
}

.martyrs-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity="0.02"><circle cx="50" cy="50" r="2"/></svg>');
  pointer-events: none;
}

.martyrs-header {
  text-align: center;
  margin-bottom: 2rem;
}

.martyrs-header .section-title {
  color: var(--flag-red);
  font-size: 2.4rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.martyrs-source {
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 800px;
  margin: 0 auto;
}

.martyrs-source a {
  color: var(--primary);
  text-decoration: underline;
}

.martyrs-intro {
  text-align: center;
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  line-height: 1.7;
  font-size: 1.1rem;
}

.symbol-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.5rem;
  font-size: 1.8rem;
}

.martyrs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin: 2.5rem 0;
}

.martyrs-card {
  background: white;
  border-radius: 16px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid;
}

.martyrs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.martyrs-card .icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}

.martyrs-card h3 {
  color: var(--dark);
  margin: 0.8rem 0 0.5rem;
  font-size: 1.3rem;
}

.martyrs-card .number {
  font-size: 2.3rem;
  font-weight: 700;
  margin: 0.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  color: var(--flag-red);
}

.martyrs-card .label {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Farben nach Kategorie */
.martyrs-card.child { border-top-color: #e91e63; }
.martyrs-card.woman { border-top-color: #9c27b0; }
.martyrs-card.medical { border-top-color: #00bcd4; }
.martyrs-card.press { border-top-color: #ff9800; }
.martyrs-card.education { border-top-color: #4caf50; }
.martyrs-card.missing { border-top-color: #607d8b; }
.martyrs-card.elderly { border-top-color: #607d8b; }
.martyrs-card.westbank { border-top-color: #ff5722; }
.martyrs-card.child-wb { border-top-color: #e91e63; }
.martyrs-card.civil { border-top-color: #f44336; }
.martyrs-card.un { border-top-color: #2196f3; }

.martyrs-tribute {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 248, 225, 0.8);
  border-radius: 16px;
  border-left: 5px solid var(--accent);
}

.martyrs-tribute blockquote {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  color: var(--dark);
  font-family: 'Amiri', serif;
}

.martyrs-tribute cite {
  display: block;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.call-to-action {
  font-weight: 600;
  color: var(--flag-red);
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .martyrs-section {
    padding: 2.5rem 0;
  }

  .martyrs-header .section-title {
    font-size: 1.9rem;
  }

  .martyrs-intro {
    font-size: 1rem;
    padding: 1.2rem;
  }

  .symbol-row {
    gap: 0.8rem;
    font-size: 1.5rem;
  }

  .martyrs-card .number {
    font-size: 2rem;
  }

  .martyrs-tribute blockquote {
    font-size: 1.2rem;
  }
}

/* ========== SLIDER FÜR PRODUKTE & REZEPTE ========== */
.slider-container {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
  margin: 2rem 0;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slider-item {
  min-width: 100%;
  flex: 0 0 auto;
  box-sizing: border-box;
  padding: 0 10px;
}

.slider-item .product-grid,
.slider-item .recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
  padding: 0;
}

/* ========== PFEILE (INNERHALB DES SLIDERS) ========== */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Pfeile leicht nach innen versetzt */
.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ========== PUNKTE ========== */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dots button.active {
  background: var(--primary);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .slider-item .product-grid,
  .slider-item .recipe-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .slider-btn.prev { left: 10px; }
  .slider-btn.next { right: 10px; }
}

/* Schnellkauf-Button auf Homepage */
.btn-add-to-cart {
  width: 100%;
  padding: 10px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: auto;
}

.btn-add-to-cart:hover:not(:disabled) {
  background: #005a2d;
}

.btn-add-to-cart:disabled {
  background: #ccc;
  cursor: not-allowed;
}