@charset "utf-8";
/* CSS Document */

<style>
/* ============================================
   MODERN HOMEPAGE STYLES - EMINFLEISCH GMBH
   ============================================ */

.eminfleisch-modern-homepage * {
  box-sizing: border-box;
}

/* Hero Section Styles */
.modern-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #991b1b 0%, #1f2937 50%, #000 100%);
  color: #ffffff !important;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 32px;
  font-size: 14px;
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-size: 56px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #ffffff !important;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 28px;
  margin-bottom: 48px;
  opacity: 0.95;
  font-weight: 300;
  color: #ffffff !important;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  background: #dc2626;
  color: #ffffff !important;
  padding: 18px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 25px 60px rgba(220, 38, 38, 0.4);
  color: #ffffff !important;
}

.btn-secondary {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid #ffffff;
  color: #ffffff !important;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-secondary:hover {
  background: #ffffff;
  color: #1f2937 !important;
  text-shadow: none;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: #ffffff !important;
  padding: 80px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
}

/* Intro Section */
.intro-section {
  padding: 96px 20px;
  background: white;
  position: relative;
}

.section-badge {
  display: inline-block;
  background: #fee2e2;
  color: #dc2626;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.section-title {
  font-size: 48px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 32px;
  line-height: 1.2;
}

.section-text {
  font-size: 20px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
  margin: 0 auto 48px;
}

/* Why Choose Us Section */
.why-section {
  padding: 96px 20px;
  background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 64px auto 0;
}

.value-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #fca5a5;
}

.value-icon {
  width: 64px;
  height: 64px;
  background: #fee2e2;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  transition: all 0.3s;
}

.value-card:hover .value-icon {
  background: #dc2626;
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 24px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 16px;
}

.value-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Products Section */
.products-section {
  padding: 96px 20px;
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 64px auto 0;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #fca5a5;
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: #f3f4f6;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-content {
  padding: 24px;
}

.product-content h3 {
  font-size: 24px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.product-card:hover .product-content h3 {
  color: #dc2626;
}

.product-content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-link {
  color: #dc2626;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Quality Section (Dark Mode) */
.quality-dark-section {
  padding: 96px 20px;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
}

.quality-dark-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.3) 0%, transparent 70%);
  filter: blur(80px);
}

.quality-dark-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.3) 0%, transparent 70%);
  filter: blur(80px);
}

.quality-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 48px 0;
}

.cert-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s;
}

.cert-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.cert-icon {
  width: 48px;
  height: 48px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.cert-card h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.cert-card p {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  padding: 96px 20px;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: #ffffff !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
  background-size: 40px 40px;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .section-text {
    font-size: 16px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
</style>