body {
  margin: 0;
  background: #111;
  color: white;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 5s ease, transform 5s ease;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px 40px;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 12px;
}

.fade-item {
  opacity: 0;
  transition: opacity 2.5s ease, transform 2.5s ease;
}

.fade-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 2.5s ease;
  backdrop-filter: blur(4px);
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.platform-buttons {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    align-items: center;
}


/* Hyperlinks */
.apple-icon {
    height: 1em;
    width: 1em;
    margin-right: 8px;
    vertical-align: middle;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.insta-icon {
   height: 1.2em;
    width: 1.2em;
    margin-right: 8px;
    vertical-align: middle;
}


@media (max-width: 768px) {
  .hero {
    transform: none;
  }

  .hero-text {
    padding: 16px;
  }

  .hero-image {
    object-position: center top;
  }
}

/* When JS adds .loaded */
.loaded .hero-image {
  opacity: 1;
  transform: scale(1);
}

.loaded .fade-item {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect */
.fade-0 { transition-delay: 0.5s; }
.fade-1 { transition-delay: 1s; }
.fade-2 { transition-delay: 2s; }
.fade-3 { transition-delay: 4s; }
.fade-4 { transition-delay: 6.5s; }