/* --------------------------------------------------------------
   Wallahi Homepage – Fully Scoped & Centered
   Save as: /css/homepage.css
-------------------------------------------------------------- */
.wallahi-homepage {
  /* 🔧 Just change these to adjust size */
  --typewriter-font-size-desktop: 4rem;
  --typewriter-font-size-mobile: 2.8rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  padding: 20px;
}

/* Centered Content */
.wallahi-homepage .wallahi-centered-content {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Ensure no default padding affects slider */
  padding-left: 0;
  padding-right: 0;
}

/* Desktop: keep layout centered */
@media (min-width: 768px) {
  .wallahi-homepage .wallahi-centered-content {
    margin: 0 auto;
    min-height: 80vh;
  }
}

/* Hero Buttons */
.wallahi-homepage .hero-url {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 60px; /* Increased space above buttons */
}

.wallahi-homepage .hero-or {
  font-size: 1rem;
  color: grey;
}

/* Hero Buttons - Base Styles */
.wallahi-homepage .hero-url .url-btn {
  color: #007bff;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Desktop hover effects only */
@media (hover: hover) and (pointer: fine) {
  .wallahi-homepage .hero-url .url-btn:hover,
  .wallahi-homepage .hero-url .url-btn:focus {
    background: linear-gradient(
      to right,
      rgba(231, 0, 199, 0.9),
      rgba(253, 29, 29, 0.9)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    outline: none;
    text-decoration: none;
  }
}
