-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlegal-styles.css
More file actions
80 lines (68 loc) · 1.49 KB
/
Copy pathlegal-styles.css
File metadata and controls
80 lines (68 loc) · 1.49 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
/* Legal Pages (Terms of Service, Privacy Policy) Styles */
.legal-main {
min-height: 100vh;
background: var(--soft-black);
padding: 120px 2rem 4rem;
color: var(--warm-white);
}
.legal-container {
max-width: 800px;
margin: 0 auto;
background: var(--deep-plum);
border: 1px solid var(--antique-gold);
border-radius: 15px;
padding: 3rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.legal-header {
text-align: center;
margin-bottom: 3rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid var(--antique-gold);
}
.legal-title {
font-family: 'Playfair Display', serif;
font-size: 3rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.legal-subtitle {
font-size: 1rem;
opacity: 0.7;
}
.legal-content h2 {
font-family: 'Playfair Display', serif;
font-size: 1.75rem;
font-weight: 600;
color: var(--antique-gold);
margin-top: 2.5rem;
margin-bottom: 1rem;
}
.legal-content p {
font-family: 'Lato', sans-serif;
font-size: 1rem;
line-height: 1.8;
margin-bottom: 1.5rem;
opacity: 0.9;
}
.legal-content a {
color: var(--antique-gold);
text-decoration: none;
transition: color 0.3s ease;
}
.legal-content a:hover {
color: var(--warm-white);
text-decoration: underline;
}
/* Responsive Design */
@media (max-width: 768px) {
.legal-main {
padding: 100px 1rem 2rem;
}
.legal-container {
padding: 2rem;
}
.legal-title {
font-size: 2.5rem;
}
}