/* Reset and core layout */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Open Sans', 'Poppins', sans-serif;
  line-height: 1.5;
  color: #ffffff;
  background-color: #000000;
}

/* Hero section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 0 1rem;
}

/* Gradient or image backdrop */
.bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* Use the Vocastation mockup image with a stronger, semi-opaque gradient overlay. */
  background-image: linear-gradient(120deg, rgba(26,35,126,0.75), rgba(49,27,146,0.75) 30%, rgba(13,71,161,0.75) 60%, rgba(0,0,0,0.65)),
                    url("img/vocastation_mockup.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  /* Desaturate and dim the background image for better contrast */
  filter: grayscale(30%) saturate(60%) brightness(85%) contrast(95%);
  will-change: opacity, filter;
  opacity: 0;
  animation: fadeInBg 2s forwards;
  z-index: 1;
}

/* Extra dark overlay to improve text contrast */
.bg-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.22);
  pointer-events: none;
}

/* Content container */
.content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  opacity: 0;
  animation: fadeInContent 1.6s forwards 0.6s;
  /* keep text readable without blur: subtle translucent panel */
  background-color: rgba(0,0,0,0.18);
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

/* Tagline styling*/
.tagline {
  text-transform: uppercase;
  color: #FFF500;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.35rem;
  width: calc(100% + 0.35rem);
  font-size: 0.875em;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-shadow: 0 6px 18px rgba(0,0,0,0.55);
}

/* Main title styling*/
.title {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 0.325rem;
  width: calc(100% + 0.325rem);
  font-size: 5.5em;
  line-height: 1.25;
  font-weight: 400;
  text-shadow: 0 10px 30px rgba(0,0,0,0.65), 0 2px 6px rgba(0,0,0,0.45);
  margin-bottom: 0.5rem;
}

/* Subtitle styling */
.subtitle {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #e0e0e0;
  text-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

/* Call‑to‑action button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transform-origin: center;
  will-change: transform, background-color, color, border-color;
  transition: transform 150ms ease, background-color 300ms ease, color 300ms ease, border-color 300ms ease;
}

/* Add bottom margin so social icons are visible on most screens */
.btn {
  margin-bottom: 1.5rem;
}

.btn:hover {
  background-color: #FFF500;
  color: #000000;
  border-color: #FFF500;
  transform: scale(1.1);
}

.btn-label {
  font-size: 1rem;
}

.btn-arrow {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

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

/* Individual social icon styling */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s, transform 0.3s;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

/* Fade‑in animations */
@keyframes fadeInBg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive typography adjustments */
@media (max-width: 768px) {
  .title {
    font-size: 3.5rem;
  }
  .subtitle {
    font-size: 0.9rem;
  }
}
