/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  margin-top: 80px;
  background: linear-gradient(135deg, #C2410C 0%, #EA580C 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/enjoy.jpg');
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
}

/* Orange Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(194, 65, 12, 0.7) 0%, rgba(234, 88, 12, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  max-width: 600px;
  color: white;
  padding: 80px 0;
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/enjoy.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.features .container {
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  padding: 0;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(194, 65, 12, 0.1);
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, #C2410C 0%, #EA580C 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(194, 65, 12, 0.2);
}

.feature-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.1);
}

.feature-icon {
  font-size: 48px;
  margin: -24px 0 16px 0;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #C2410C 0%, #EA580C 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 12px rgba(194, 65, 12, 0.3);
}

.feature-card > h3,
.feature-card > p {
  padding: 0 32px;
}

.feature-card > p {
  padding-bottom: 32px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #C2410C 0%, #EA580C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/fresh.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.how-it-works .container {
  position: relative;
  z-index: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.step {
  text-align: center;
}

.step-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 4px solid #f3f4f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C2410C 0%, #EA580C 50%, #C2410C 100%);
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: -25px auto 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(194, 65, 12, 0.4);
}

.step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #C2410C 0%, #EA580C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step p {
  color: #6b7280;
  line-height: 1.6;
}

.cta-section {
  text-align: center;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #C2410C 0%, #EA580C 100%);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero-subtitle {
    font-size: 18px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .hero-content {
    padding: 60px 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  .features,
  .how-it-works,
  .cta {
    padding: 60px 0;
  }
  
  .step-image {
    width: 150px;
    height: 150px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-top: -20px;
  }
  
  .feature-image {
    height: 150px;
  }
}
