footer.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /* Container layout rules for the global footer section aligned with the design system */
  2. .global-footer {
  3. background-color: #0b0b12;
  4. border-top: 1px solid rgba(255, 255, 255, 0.08);
  5. padding: 64px 32px 32px 32px;
  6. margin-top: 64px;
  7. }
  8. /* Master grid layout for aligning the navigation columns and brand block */
  9. .footer-structural-grid {
  10. max-width: 1400px;
  11. margin: 0 auto;
  12. display: grid;
  13. grid-template-columns: 2fr 1fr 1fr;
  14. gap: 48px;
  15. padding-bottom: 48px;
  16. }
  17. /* Left metadata column positioning definitions */
  18. .footer-brand-column {
  19. display: flex;
  20. flex-direction: column;
  21. gap: 16px;
  22. max-width: 320px;
  23. }
  24. .footer-brand-anchor {
  25. display: flex;
  26. align-items: center;
  27. gap: 10px;
  28. text-decoration: none;
  29. color: #ffffff;
  30. }
  31. .footer-brand-logo {
  32. font-family: 'Rajdhani', sans-serif;
  33. font-weight: 700;
  34. font-size: 24px;
  35. letter-spacing: 0.05em;
  36. }
  37. .footer-brand-description {
  38. color: #94a3b8;
  39. font-size: 14px;
  40. line-height: 1.6;
  41. margin: 0;
  42. }
  43. /* Central and right link mapping navigation blocks */
  44. .footer-nav-column {
  45. display: flex;
  46. flex-direction: column;
  47. gap: 16px;
  48. }
  49. .footer-column-heading {
  50. color: #ffffff;
  51. font-family: 'Rajdhani', sans-serif;
  52. font-size: 16px;
  53. font-weight: 700;
  54. text-transform: uppercase;
  55. letter-spacing: 0.05em;
  56. margin: 0;
  57. }
  58. .footer-links-list {
  59. display: flex;
  60. flex-direction: column;
  61. gap: 12px;
  62. }
  63. .footer-interactive-link {
  64. color: #64748b;
  65. text-decoration: none;
  66. font-size: 14px;
  67. font-weight: 500;
  68. transition: color 0.2s ease-in-out;
  69. }
  70. .footer-interactive-link:hover {
  71. color: #7E5BD8;
  72. }
  73. /* Social icons layout grouping specifications */
  74. .footer-socials-wrapper {
  75. display: flex;
  76. align-items: center;
  77. gap: 12px;
  78. }
  79. .social-vector-trigger {
  80. display: flex;
  81. align-items: center;
  82. justify-content: center;
  83. width: 36px;
  84. height: 36px;
  85. background-color: rgba(255, 255, 255, 0.03);
  86. border: 1px solid rgba(255, 255, 255, 0.05);
  87. border-radius: 8px;
  88. color: #94a3b8;
  89. transition: all 0.2s ease-in-out;
  90. }
  91. .social-vector-trigger:hover {
  92. color: #ffffff;
  93. background-color: #7E5BD8;
  94. border-color: #7E5BD8;
  95. }
  96. /* Bottom copyright row layout separation definitions */
  97. .footer-copyright-divider {
  98. border-top: 1px solid rgba(255, 255, 255, 0.04);
  99. max-width: 1400px;
  100. margin: 0 auto;
  101. padding-top: 24px;
  102. display: flex;
  103. justify-content: space-between;
  104. align-items: center;
  105. }
  106. .copyright-legal-text {
  107. color: #64748b;
  108. font-size: 13px;
  109. margin: 0;
  110. }
  111. .legal-links-capsule {
  112. display: flex;
  113. gap: 24px;
  114. }