/* App Landing Page - Ultra Minimalist Dark Theme */
/* Inspired by magneta.app - for iOS app landing pages */

/* ========================================
   CSS Variables for App Landing
   ======================================== */
:root {
  --app-landing-bg: #000000;
  --app-landing-text: #ffffff;
  --app-landing-text-muted: rgba(255, 255, 255, 0.7);
  --app-landing-text-subtle: rgba(255, 255, 255, 0.5);
  --app-landing-accent: #FFD700; /* Golden sun color for Solis */
}

/* ========================================
   Base Styles
   ======================================== */
body.app-landing-page {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: var(--app-landing-bg);
  color: var(--app-landing-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Hero Section - Centered Content
   ======================================== */
.app-landing-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  min-height: calc(100vh - 80px);
}

/* App Title with Emoji */
.app-landing-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 1rem 0;
  color: var(--app-landing-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.app-landing-emoji {
  font-size: 0.9em;
  display: inline-block;
}

/* Tagline */
.app-landing-tagline {
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 300;
  color: var(--app-landing-text-muted);
  margin: 0 0 3rem 0;
  letter-spacing: 0.05em;
}

/* ========================================
   App Store Buttons
   ======================================== */
.app-landing-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.app-store-badge {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.app-store-badge:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.app-store-badge img {
  height: 54px;
  width: auto;
}

/* ========================================
   Footer
   ======================================== */
.app-landing-footer {
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.875rem;
}

.app-landing-footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.app-landing-footer a {
  color: var(--app-landing-text-subtle);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 400;
}

.app-landing-footer a:hover {
  color: var(--app-landing-text);
}

.app-landing-footer-separator {
  color: var(--app-landing-text-subtle);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 480px) {
  .app-landing-hero {
    padding: 1.5rem;
    min-height: calc(100vh - 140px); /* Account for mobile banner */
  }
  
  .app-landing-title {
    flex-direction: row;
    gap: 0.25rem;
  }
  
  .app-store-badge img {
    height: 48px;
  }
  
  .app-landing-footer {
    padding: 1rem;
    padding-bottom: 5rem; /* Space for mobile banner */
  }
}

/* ========================================
   Subtle Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.app-landing-title {
  animation: fadeInUp 0.8s ease-out;
}

.app-landing-tagline {
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.app-landing-buttons {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ========================================
   Optional: Subtle Background Effect
   ======================================== */
.app-landing-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center top,
    rgba(255, 215, 0, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: -1;
}

/* Position hero relative for the pseudo-element */
.app-landing-hero {
  position: relative;
}

