You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

66 line
1.5 KiB

  1. @use '../atoms/variables' as *;
  2. @use '../atoms/mixins' as *;
  3. .home-body {
  4. @include page-shell;
  5. }
  6. // ─── Header ──────────────────────────────────────────────────────────────────
  7. .home-header {
  8. background: linear-gradient(135deg, var(--color-header-from), var(--color-header-to));
  9. padding: $space-4 $space-8;
  10. }
  11. .home-header__inner {
  12. max-width: 1000px;
  13. margin: 0 auto;
  14. display: flex;
  15. align-items: center;
  16. justify-content: space-between;
  17. }
  18. .home-header__brand {
  19. font-size: $font-size-lg;
  20. font-weight: $font-weight-bold;
  21. color: var(--header-text);
  22. span {
  23. font-weight: $font-weight-regular;
  24. opacity: 0.8;
  25. }
  26. }
  27. // ─── Hero ─────────────────────────────────────────────────────────────────────
  28. .home-hero {
  29. flex: 1;
  30. display: flex;
  31. align-items: center;
  32. justify-content: center;
  33. padding: $space-12 $space-8;
  34. }
  35. .home-hero__inner {
  36. text-align: center;
  37. max-width: 600px;
  38. }
  39. .home-hero__title {
  40. font-size: 2.8rem;
  41. font-weight: $font-weight-bold;
  42. color: $color-text-dark;
  43. line-height: 1.2;
  44. margin-bottom: $space-6;
  45. }
  46. .home-hero__sub {
  47. font-size: $font-size-lg;
  48. color: $color-text-muted;
  49. margin-bottom: $space-10;
  50. line-height: $line-height-base;
  51. }
  52. .home-hero__cta {
  53. font-size: $font-size-md;
  54. padding: $space-4 $space-10;
  55. }