Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 

72 Zeilen
1.7 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. @include tablet { padding: $space-8 $space-4; }
  35. }
  36. .home-hero__inner {
  37. text-align: center;
  38. max-width: 600px;
  39. }
  40. .home-hero__title {
  41. font-size: 2.8rem;
  42. font-weight: $font-weight-bold;
  43. color: $color-text-dark;
  44. line-height: 1.2;
  45. margin-bottom: $space-6;
  46. @include mobile { font-size: 2rem; }
  47. }
  48. .home-hero__sub {
  49. font-size: $font-size-lg;
  50. color: $color-text-muted;
  51. margin-bottom: $space-10;
  52. line-height: $line-height-base;
  53. }
  54. .home-hero__cta {
  55. font-size: $font-size-md;
  56. padding: $space-4 $space-10;
  57. @include tablet { width: 100%; }
  58. }