/* Home page specific styles */

body.home-page {
  padding-top: 0;
}

.hero-section {
  padding: 120px 0 80px;
  text-align: center;
}

.logo-img {
  max-width: 200px;
  height: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.hero-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(44, 82, 130, 0.3);
}

.store-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 82, 130, 0.4);
  color: white;
}

.store-btn i {
  font-size: 1.5rem;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .store-buttons {
    flex-direction: column;
    align-items: center;
  }
  .store-btn {
    width: 250px;
  }
}
