-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
199 lines (172 loc) · 4.32 KB
/
style.css
File metadata and controls
199 lines (172 loc) · 4.32 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/* RESET & BASICS */
:root {
--bg-color: #ffffff;
--text-color: #111; /* Noch schwärzer für Kontrast */
--accent-color: #8e0000;
--light-gray: #f4f4f4;
--alert-bg: #fff0f0; /* Leichter Rotstich für Hervorhebung */
--font-stack: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background-color: var(--bg-color);
color: var(--text-color);
font-family: var(--font-stack);
line-height: 1.5;
font-size: 18px;
}
/* HEADER - Special Layout für Branding */
header, main, footer { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.site-header {
display: flex;
justify-content: space-between;
align-items: flex-start; /* Oben bündig */
padding-top: 30px;
padding-bottom: 50px;
}
.brand-container {
display: flex;
flex-direction: column;
}
.logo {
font-weight: 900;
font-size: 1.8rem;
letter-spacing: -1px;
line-height: 1;
}
.dot { color: var(--accent-color); }
.sub-brand {
font-size: 0.85rem;
color: #666;
margin-top: 5px;
font-weight: 500;
}
.sub-brand a { color: #666; text-decoration: none; border-bottom: 1px solid #ccc; }
/* Phone Link Header (Desktop) */
.phone-link-header {
text-decoration: none;
color: var(--accent-color);
font-weight: 900;
font-size: 1.2rem;
display: flex;
align-items: center;
gap: 8px;
}
/* HERO CRISIS */
.hero-crisis { margin-bottom: 60px; padding-bottom: 40px; border-bottom: 2px solid #eee; }
.mantra-crisis {
font-size: clamp(3rem, 8vw, 6rem);
line-height: 1;
font-weight: 900;
margin-bottom: 20px;
}
.highlight { color: var(--accent-color); }
/* Bild Hoover */
.image-container {
position: relative;
display: inline-block;
}
.overlay-text {
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
background: var(--accent-color);
color: white;
display: flex;
align-items: center;
justify-content: center;
opacity: 0; /* Standardmäßig unsichtbar */
transition: opacity 0.3s ease; /* Sanfter Übergang */
}
.image-container:hover .overlay-text {
o pacity: 1; /* Beim Hover sichtbar */
}
.subtitle-crisis {
font-size: 1.3rem;
color: #333;
max-width: 650px;
margin-bottom: 40px;
}
/* EMERGENCY BUTTON */
.action-area { margin-top: 30px; }
.button-emergency {
display: inline-block;
background-color: var(--accent-color);
color: white;
padding: 20px 40px; /* Großer Button */
font-size: 1.3rem;
text-decoration: none;
font-weight: 900;
border-radius: 4px;
box-shadow: 0 4px 10px rgba(142, 0, 0, 0.3);
transition: transform 0.1s, background-color 0.2s;
}
.button-emergency:hover {
background-color: #600000;
transform: scale(1.02);
}
.availability-note {
margin-top: 10px;
font-size: 0.9rem;
color: #666;
font-style: italic;
}
/* MISSION GRID */
.mission-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-bottom: 80px;
}
.mission-item {
padding: 30px;
border: 1px solid #eee;
}
.highlight-bg {
background-color: var(--alert-bg);
border-color: var(--accent-color);
}
.mission-item h3 {
font-size: 1.2rem;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 15px;
color: var(--accent-color);
}
/* PROCESS */
.process { margin-bottom: 80px; }
.process h2 { font-size: 2rem; margin-bottom: 30px; }
.steps {
display: flex;
flex-direction: column;
gap: 30px;
}
.step {
display: flex;
gap: 20px;
align-items: flex-start;
}
.step-num {
font-family: monospace;
font-size: 1.5rem;
color: var(--accent-color);
font-weight: bold;
min-width: 40px;
}
/* FOOTER */
.site-footer {
padding-top: 20px;
border-top: 2px solid #ddd;
padding-bottom: 40px;
font-size: 0.9rem;
display: flex;
justify-content: space-between;
}
.footer-links a { color: #555; text-decoration: none; margin-right: 20px; }
.footer-note { color: #888; }
/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {
.site-header { flex-direction: column; gap: 20px; }
.emergency-contact-header { display: none; } /* Auf Mobile Button unten wichtiger */
.button-emergency { width: 100%; text-align: center; font-size: 1.1rem; }
.mantra-crisis { font-size: 3.5rem; }
}