@charset "utf-8";
/* CSS Document */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 8%;
  min-height: 80vh;
  background: linear-gradient(to right, #0f172a, #1e293b);
  color: #ffffff;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #cbd5f5;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn.primary {
  background: #f59e0b;
  color: #000;
}

.btn.primary:hover {
  background: #d97706;
}

.btn.secondary {
  border: 2px solid #f59e0b;
  color: #f59e0b;
}

.btn.secondary:hover {
  background: #f59e0b;
  color: #000;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* 📱 Mobile Optimization */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 5%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }
}
