/* LegendYou Website - Core Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');

:root {
  --primary: #6C5CE7;
  --primary-hover: #5b4bc4;
  --bg-soft: #fcfcfd;
  --text-main: #111827;
  --text-soft: #6b7280;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-soft);
  color: var(--text-main);
  scroll-behavior: smooth;
}

h1, h2, h3, .font-heading {
  font-family: 'Outfit', sans-serif;
}

/* Custom Gradient Utilities */
.bg-purple-gradient {
  background: linear-gradient(135deg, #6C5CE7 0%, #a29bfe 100%);
}

.text-gradient {
  background: linear-gradient(135deg, #6C5CE7 0%, #a29bfe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Premium Card Styles */
.card-premium {
  background: white;
  border-radius: 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
}

/* Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
}

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

.animate-fade-in-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  
  h1, h2, h3 {
    line-height: 1.2;
  }

  .section-padding-mobile {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .mobile-grid-2x2 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }

  .mobile-btn-height {
    height: 56px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Reduce hero padding on mobile */
  .pt-40 { padding-top: 7rem !important; }
  .pb-24 { padding-bottom: 4rem !important; }
  
  /* Improve spacing on mobile */
  .p-10, .p-12 { padding: 1.5rem !important; }
}
