-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.css
More file actions
134 lines (118 loc) · 2.55 KB
/
Copy pathfooter.css
File metadata and controls
134 lines (118 loc) · 2.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/* ===== FOOTER ===== */
.footer {
background: var(--bg-primary);
padding: 60px 0 30px;
border-top: 1px solid rgba(183, 148, 244, 0.1);
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1.5fr 1fr;
gap: 40px;
margin-bottom: 40px;
}
.footer-brand .footer-logo {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
}
.footer-logo-img {
width: 36px;
height: 36px;
object-fit: contain;
border-radius: 6px;
}
.footer-brand .footer-logo span {
font-family: var(--font-display);
font-weight: 700;
font-size: 1.1rem;
background: linear-gradient(135deg, #d4c4f7 0%, #b794f4 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.footer-brand p {
color: var(--text-secondary);
font-size: 0.9rem;
}
.footer-contact h4,
.footer-social h4 {
font-size: 0.9rem;
font-weight: 700;
margin-bottom: 16px;
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--accent-light);
}
.footer-contact p {
color: var(--text-secondary);
font-size: 0.9rem;
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 8px;
}
.footer-contact i {
color: var(--accent-light);
opacity: 0.6;
font-size: 0.85rem;
}
.footer-social {
display: flex;
flex-direction: column;
gap: 12px;
}
.social-links {
display: flex;
gap: 12px;
}
.social-link {
width: 40px;
height: 40px;
background: var(--bg-tertiary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--text-secondary);
transition: all var(--transition-bounce);
border: 1px solid var(--border-color);
}
.social-link:hover {
background: var(--accent-strong);
color: #ffffff;
border-color: transparent;
transform: translateY(-4px) rotate(8deg);
box-shadow: 0 8px 24px var(--accent-glow);
}
.footer-bottom {
border-top: 1px solid var(--border-color);
padding-top: 24px;
text-align: center;
}
.footer-bottom p {
color: var(--text-tertiary);
font-size: 0.8rem;
}
@media (max-width: 1024px) {
.footer-grid {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 768px) {
.footer-grid {
grid-template-columns: 1fr;
gap: 32px;
text-align: center;
}
.footer-contact p {
justify-content: center;
}
.footer-social {
flex-direction: row;
justify-content: center;
}
.social-links {
justify-content: center;
}
}