/* Home page styles (theme-aware) */

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.btn-success {
  background-color: var(--success-color);
  border-color: var(--success-color);
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../assets/hero-background.jpg") no-repeat center center;
  background-size: cover;
  color: white;
  padding: 120px 0;
  position: relative;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-section h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-section .lead {
  font-size: 1.7rem;
  margin-bottom: 40px;
}

.feature-card {
  background: var(--card-bg-light);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.15);
}

.feature-card i {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.feature-card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-card p {
  font-size: 1.15rem;
  color: var(--secondary-color);
}

.about-section {
  background-color: var(--card-bg-light);
  border: 1px solid var(--border-light);
  padding: 80px 0;
  border-radius: 15px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.about-section h2 {
  font-size: 3.5rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.pricing-card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  border-radius: 12px;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.15);
}

.pricing-card .card-header {
  background-color: var(--primary-color);
  color: white;
  padding: 20px;
  border-bottom: none;
}

.pricing-card.border-primary .card-header {
  background-color: var(--primary-color);
}

.pricing-card .price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-card .price .fs-6 {
  font-size: 1.2rem !important;
  opacity: 0.8;
}

.pricing-card ul li i {
  font-size: 1.1rem;
  margin-right: 10px;
}

.cta-banner {
  background: linear-gradient(45deg, var(--primary-color), #0056b3);
  color: white;
  padding: 80px 0;
  text-align: center;
  border-radius: 15px;
  margin-top: 60px;
  margin-bottom: 60px;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.15);
}

.cta-banner h2 {
  font-size: 3.8rem;
  margin-bottom: 25px;
  font-weight: 800;
}

.cta-banner p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  font-size: 1.6rem;
  padding: 18px 35px;
  border-radius: 50px;
  background-color: white;
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.3s ease;
}

.cta-banner .btn:hover {
  background-color: var(--success-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .hero-section h1 { font-size: 3.5rem; }
  .hero-section .lead { font-size: 1.4rem; }
  .cta-banner h2 { font-size: 3rem; }
}

@media (max-width: 768px) {
  .hero-section { padding: 60px 0; }
  .hero-section h1 { font-size: 2.5rem; }
  .hero-section .lead { font-size: 1.1rem; }
  .feature-card { padding: 25px; }
  .feature-card i { font-size: 3.5rem; }
  .feature-card h3 { font-size: 1.5rem; }
  .about-section h2 { font-size: 2.2rem; }
  .pricing-card .price { font-size: 2.8rem; }
  .cta-banner { padding: 40px 0; }
  .cta-banner h2 { font-size: 2.2rem; }
  .cta-banner p { font-size: 1.1rem; }
  .cta-banner .btn { font-size: 1.2rem; padding: 10px 20px; }
}

@media (max-width: 576px) {
  .hero-section h1 { font-size: 2rem; }
  .hero-section .lead { font-size: 0.95rem; }
  .pricing-card .price { font-size: 2.2rem; }
  .pricing-card ul { max-width: 100%; }
  .cta-banner h2 { font-size: 1.8rem; }
  .cta-banner p { font-size: 1rem; }
}


