/* Extends main.css dark style */

.viba-logo {
  width: 300px;
  max-width: 80%;
  margin-bottom: 1.5rem;
}

/* Hero Styling */
.viba-hero {
  background: radial-gradient(circle at top, #15212e, #0d1117);
  text-align: center;
  padding: 7rem 1rem 5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.viba-hero h1 {
  font-size: 2.8rem;
  color: #5cc9ff;
  margin-bottom: 1rem;
}

.viba-hero p {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Social Icons */
.social-icons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.social-icons img {
  width: 30px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.feature {
  background: #11151d;
  padding: 2rem;
  border-radius: 10px;
  color: #ddd;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.feature h3 {
  color: #5cc9ff;
  margin-bottom: 0.5rem;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.step {
  background: #11151d;
  padding: 1.5rem;
  border-radius: 10px;
  color: #ccc;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.step-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #5cc9ff;
  margin-bottom: 0.5rem;
}

/* Download Buttons */
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-primary {
  background: #5cc9ff;
  color: #0d1117;
}

.btn-primary:hover {
  background: #4bb3e6;
}

.btn-secondary {
  border: 1px solid #5cc9ff;
  color: #5cc9ff;
  background: transparent;
}

.btn-secondary:hover {
  background: #5cc9ff;
  color: #0d1117;
}

/* Responsive */
@media (max-width: 768px) {
  .viba-hero h1 {
    font-size: 2.2rem;
  }
  .viba-hero p {
    font-size: 1.1rem;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
