/* Home Page Specific Styles */

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 6rem 3rem;
  background: linear-gradient(135deg, #ff4500 0%, #ff6347 50%, #ff7f50 100%);
  border-radius: 24px;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 69, 0, 0.3);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
}

.hero-section h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  z-index: 1;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: -1px;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  font-weight: 500;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-hero-primary {
  background: white;
  color: #ff4500;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 3px solid white;
}

.btn-hero-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 3px solid white;
}

.btn-hero-secondary:hover {
  background: white;
  color: #ff4500;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

/* Features Section */
.features-section {
  margin-bottom: 3rem;
}

.features-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #333;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Quick Links Section */
.quick-links-section {
  margin-bottom: 3rem;
}

.quick-links-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.quick-link-card {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, #333 0%, #444 100%);
  border-radius: 16px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.quick-link-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.quick-link-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.quick-link-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem;
  border-radius: 16px;
  margin-bottom: 2rem;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #333;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.contact-info {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  margin: 0.5rem 0;
}

.contact-hours {
  color: #666;
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.contact-cta {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
}

.contact-cta h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.btn-order-now {
  display: inline-block;
  background: orangered;
  color: white;
  padding: 1.25rem 3rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 69, 0, 0.3);
}

.btn-order-now:hover {
  background: #e64a19;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
  }
}
