themes/ehc/static/css/style.css
888 Zeilen · 25.6 KB · CSS
| 1 | /* ============================================================ |
| 2 | EHC Essen (Ruhr) e.V. — Quilldrop Theme |
| 3 | ============================================================ */ |
| 4 | |
| 5 | *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } |
| 6 | |
| 7 | :root { |
| 8 | --orange: #f37021; |
| 9 | --orange-bright: #ff7a2a; |
| 10 | --orange-dark: #c5571a; |
| 11 | --black: #0a0a0a; |
| 12 | --dark: #141414; |
| 13 | --gray-mid: #2a2a2a; |
| 14 | --gray-light: #b8b8b8; |
| 15 | --silver: #d8d8d8; |
| 16 | --white: #ffffff; |
| 17 | |
| 18 | --corner-img-w: 160px; |
| 19 | --content-right-pad: 220px; |
| 20 | --content-max: 1400px; |
| 21 | } |
| 22 | |
| 23 | html { height: 100%; } |
| 24 | |
| 25 | body { |
| 26 | min-height: 100vh; |
| 27 | font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
| 28 | color: var(--white); |
| 29 | line-height: 1.65; |
| 30 | background: var(--black); |
| 31 | position: relative; |
| 32 | display: flex; |
| 33 | flex-direction: column; |
| 34 | } |
| 35 | |
| 36 | a { color: #ff4c00; text-decoration: none; transition: color 0.2s ease; } |
| 37 | a:hover { color: var(--orange-bright); } |
| 38 | |
| 39 | img { max-width: 100%; height: auto; display: block; } |
| 40 | |
| 41 | /* ====== Fixierter Hintergrund + Overlay ====== */ |
| 42 | .bg-fixed { |
| 43 | position: fixed; inset: 0; z-index: -2; |
| 44 | background-image: url('/images/ehc/ehc-steelers-bg.webp'); |
| 45 | background-size: cover; background-position: center; |
| 46 | background-repeat: no-repeat; pointer-events: none; |
| 47 | } |
| 48 | .bg-overlay { |
| 49 | position: fixed; inset: 0; z-index: -1; |
| 50 | background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%); |
| 51 | pointer-events: none; |
| 52 | } |
| 53 | |
| 54 | /* ====== NAVBAR ====== */ |
| 55 | .navbar { |
| 56 | position: sticky; top: 0; z-index: 100; |
| 57 | background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(20,20,20,0.92) 100%); |
| 58 | border-bottom: 3px solid #ff4c00; |
| 59 | box-shadow: 0 6px 20px rgba(0,0,0,0.6); |
| 60 | backdrop-filter: blur(6px); |
| 61 | -webkit-backdrop-filter: blur(6px); |
| 62 | } |
| 63 | .nav-inner { |
| 64 | max-width: var(--content-max); |
| 65 | margin: 0 auto; |
| 66 | padding: 12px 30px; |
| 67 | display: flex; align-items: center; |
| 68 | justify-content: space-between; |
| 69 | gap: 30px; |
| 70 | } |
| 71 | .nav-brand { |
| 72 | display: flex; align-items: center; gap: 14px; |
| 73 | text-decoration: none; color: var(--white); |
| 74 | } |
| 75 | .nav-brand img { |
| 76 | height: 64px; width: auto; |
| 77 | filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6)); |
| 78 | } |
| 79 | .nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; } |
| 80 | .nav-brand-text .name { |
| 81 | font-size: 1.15rem; font-weight: 800; letter-spacing: 1.2px; |
| 82 | text-transform: uppercase; color: var(--white); |
| 83 | } |
| 84 | .nav-brand-text .sub { |
| 85 | font-size: 0.72rem; letter-spacing: 3px; color: #ff4c00; |
| 86 | text-transform: uppercase; font-weight: 600; |
| 87 | } |
| 88 | .nav-brand:hover .nav-brand-text .name { color: #ff4c00; } |
| 89 | |
| 90 | /* Nav links */ |
| 91 | .nav-links { |
| 92 | display: flex; align-items: center; |
| 93 | gap: 4px; list-style: none; |
| 94 | } |
| 95 | .nav-links > a, |
| 96 | .nav-links .nav-dropdown > .nav-dropdown-toggle { |
| 97 | display: inline-flex; align-items: center; gap: 6px; |
| 98 | padding: 14px 18px; |
| 99 | color: var(--white); text-decoration: none; |
| 100 | font-size: 0.95rem; font-weight: 700; |
| 101 | text-transform: uppercase; letter-spacing: 1.5px; |
| 102 | border-radius: 4px; transition: all 0.25s ease; |
| 103 | position: relative; |
| 104 | background: transparent; border: none; cursor: pointer; |
| 105 | font-family: inherit; |
| 106 | } |
| 107 | .nav-links > a::after, |
| 108 | .nav-links .nav-dropdown > .nav-dropdown-toggle::after { |
| 109 | content: ""; position: absolute; |
| 110 | left: 18px; right: 18px; bottom: 8px; |
| 111 | height: 2px; background: #ff4c00; |
| 112 | transform: scaleX(0); transform-origin: left; |
| 113 | transition: transform 0.3s ease; |
| 114 | } |
| 115 | .nav-links > a:hover, |
| 116 | .nav-links .nav-dropdown:hover > .nav-dropdown-toggle, |
| 117 | .nav-links .nav-dropdown.open > .nav-dropdown-toggle { |
| 118 | color: #ff4c00; background: rgba(243, 112, 33, 0.08); |
| 119 | } |
| 120 | .nav-links > a:hover::after, |
| 121 | .nav-links .nav-dropdown:hover > .nav-dropdown-toggle::after, |
| 122 | .nav-links .nav-dropdown.open > .nav-dropdown-toggle::after { |
| 123 | transform: scaleX(1); |
| 124 | } |
| 125 | |
| 126 | /* Dropdown */ |
| 127 | .nav-dropdown { position: relative; } |
| 128 | .nav-dropdown-menu { |
| 129 | position: absolute; top: 100%; left: 0; |
| 130 | min-width: 220px; |
| 131 | background: rgba(15, 15, 15, 0.98); |
| 132 | border: 1px solid rgba(243, 112, 33, 0.4); |
| 133 | border-top: 3px solid #ff4c00; |
| 134 | padding: 8px 0; |
| 135 | opacity: 0; visibility: hidden; |
| 136 | transform: translateY(8px); |
| 137 | transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s; |
| 138 | box-shadow: 0 10px 30px rgba(0,0,0,0.7); |
| 139 | } |
| 140 | .nav-dropdown:hover > .nav-dropdown-menu, |
| 141 | .nav-dropdown.open > .nav-dropdown-menu { |
| 142 | opacity: 1; visibility: visible; transform: translateY(0); |
| 143 | } |
| 144 | /* letztes Item: nach links öffnen, damit es nicht aus der Seite ragt */ |
| 145 | .nav-links > .nav-dropdown:last-of-type > .nav-dropdown-menu { left: auto; right: 0; } |
| 146 | |
| 147 | .nav-dropdown-menu a { |
| 148 | display: block; padding: 10px 20px; |
| 149 | color: var(--silver); text-decoration: none; |
| 150 | font-size: 0.85rem; text-transform: uppercase; |
| 151 | letter-spacing: 1px; font-weight: 600; |
| 152 | border-left: 3px solid transparent; |
| 153 | transition: all 0.2s ease; |
| 154 | } |
| 155 | .nav-dropdown-menu a:hover { |
| 156 | color: var(--white); background: rgba(243, 112, 33, 0.15); |
| 157 | border-left-color: #ff4c00; padding-left: 26px; |
| 158 | } |
| 159 | |
| 160 | /* Search + RSS */ |
| 161 | .search-container { position: relative; } |
| 162 | .search-toggle, .nav-rss { |
| 163 | width: 36px; height: 36px; |
| 164 | display: inline-flex; align-items: center; justify-content: center; |
| 165 | background: rgba(255,255,255,0.05); |
| 166 | border: 1px solid rgba(243, 112, 33, 0.25); |
| 167 | border-radius: 50%; |
| 168 | color: var(--silver); cursor: pointer; |
| 169 | transition: all 0.2s ease; |
| 170 | text-decoration: none; |
| 171 | } |
| 172 | .search-toggle:hover, .nav-rss:hover { |
| 173 | color: #ff4c00; border-color: #ff4c00; |
| 174 | background: rgba(243, 112, 33, 0.1); |
| 175 | } |
| 176 | .search-box { |
| 177 | position: absolute; top: calc(100% + 8px); right: 0; |
| 178 | width: 320px; |
| 179 | background: rgba(15, 15, 15, 0.98); |
| 180 | border: 1px solid rgba(243, 112, 33, 0.4); |
| 181 | border-top: 3px solid #ff4c00; |
| 182 | border-radius: 4px; |
| 183 | padding: 12px; |
| 184 | opacity: 0; visibility: hidden; |
| 185 | transform: translateY(8px); |
| 186 | transition: opacity 0.2s, transform 0.2s, visibility 0.2s; |
| 187 | box-shadow: 0 10px 30px rgba(0,0,0,0.7); |
| 188 | } |
| 189 | .search-container.active .search-box { |
| 190 | opacity: 1; visibility: visible; transform: translateY(0); |
| 191 | } |
| 192 | .search-box input { |
| 193 | width: 100%; padding: 8px 12px; |
| 194 | background: rgba(0,0,0,0.4); |
| 195 | border: 1px solid rgba(243, 112, 33, 0.3); |
| 196 | border-radius: 4px; |
| 197 | color: var(--white); |
| 198 | font-family: inherit; font-size: 0.95rem; |
| 199 | } |
| 200 | .search-box input:focus { outline: none; border-color: #ff4c00; } |
| 201 | .search-results { margin-top: 8px; max-height: 60vh; overflow-y: auto; } |
| 202 | .search-results a { |
| 203 | display: block; padding: 8px 10px; |
| 204 | color: var(--silver); border-radius: 4px; |
| 205 | font-size: 0.88rem; |
| 206 | } |
| 207 | .search-results a:hover { background: rgba(243, 112, 33, 0.1); color: var(--white); } |
| 208 | .search-results .search-result-title { color: var(--white); font-weight: 600; display: block; } |
| 209 | .search-results .search-result-snippet { color: var(--gray-light); font-size: 0.8rem; display: block; margin-top: 2px; } |
| 210 | |
| 211 | /* Hamburger (mobile) */ |
| 212 | .hamburger { display: none; background: transparent; border: none; cursor: pointer; padding: 8px; } |
| 213 | .hamburger span { |
| 214 | display: block; width: 24px; height: 2px; |
| 215 | background: var(--white); margin: 5px 0; |
| 216 | transition: all 0.3s ease; |
| 217 | } |
| 218 | .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); } |
| 219 | .hamburger.active span:nth-child(2) { opacity: 0; } |
| 220 | .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } |
| 221 | |
| 222 | /* ====== MAIN / CONTAINER ====== */ |
| 223 | .container { |
| 224 | max-width: var(--content-max); |
| 225 | margin: 0 auto; |
| 226 | padding: 40px 30px 60px; |
| 227 | padding-right: var(--content-right-pad); |
| 228 | flex: 1; |
| 229 | width: 100%; |
| 230 | } |
| 231 | |
| 232 | /* ====== HERO (Homepage) ====== */ |
| 233 | .hero-image { |
| 234 | margin-bottom: 32px; |
| 235 | border-radius: 12px; |
| 236 | overflow: hidden; |
| 237 | box-shadow: 0 0 0 2px rgba(243, 112, 33, 0.7), 0 20px 60px rgba(0,0,0,0.7); |
| 238 | position: relative; |
| 239 | } |
| 240 | .hero-image img { width: 100%; display: block; } |
| 241 | .hero-image::after { |
| 242 | content: ""; position: absolute; inset: 0; |
| 243 | background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%); |
| 244 | pointer-events: none; |
| 245 | } |
| 246 | |
| 247 | /* ====== Sektionen ====== */ |
| 248 | .section { |
| 249 | background: rgba(15, 15, 15, 0.78); |
| 250 | border: 1px solid rgba(255,255,255,0.06); |
| 251 | border-radius: 10px; |
| 252 | padding: 32px 36px; |
| 253 | margin-bottom: 28px; |
| 254 | box-shadow: 0 8px 30px rgba(0,0,0,0.5); |
| 255 | backdrop-filter: blur(4px); |
| 256 | } |
| 257 | .section h2 { |
| 258 | font-size: 1.8rem; |
| 259 | text-transform: uppercase; letter-spacing: 2px; |
| 260 | color: var(--white); |
| 261 | margin-bottom: 0; |
| 262 | padding-bottom: 12px; |
| 263 | border-bottom: 2px solid #ff4c00; |
| 264 | display: inline-block; |
| 265 | } |
| 266 | .section h2:not(.no-margin) { margin-bottom: 18px; } |
| 267 | .section p { color: var(--gray-light); margin-bottom: 12px; } |
| 268 | |
| 269 | .section-head { |
| 270 | display: flex; align-items: flex-end; justify-content: space-between; |
| 271 | gap: 20px; margin-bottom: 18px; flex-wrap: wrap; |
| 272 | } |
| 273 | .section-head h2 { margin-bottom: 0; } |
| 274 | .all-link { |
| 275 | color: #ff4c00; text-decoration: none; |
| 276 | font-size: 0.9rem; font-weight: 700; |
| 277 | letter-spacing: 1.5px; text-transform: uppercase; |
| 278 | padding-bottom: 4px; |
| 279 | transition: color 0.2s ease, transform 0.2s ease; |
| 280 | } |
| 281 | .all-link:hover { color: var(--orange-bright); transform: translateX(3px); } |
| 282 | |
| 283 | /* ====== Partner Karussell ====== */ |
| 284 | .partner-section { |
| 285 | background: rgba(15, 15, 15, 0.78); |
| 286 | border: 1px solid rgba(255,255,255,0.06); |
| 287 | border-radius: 10px; |
| 288 | padding: 32px 36px; |
| 289 | margin-bottom: 28px; |
| 290 | box-shadow: 0 8px 30px rgba(0,0,0,0.5); |
| 291 | backdrop-filter: blur(4px); |
| 292 | } |
| 293 | .carousel { position: relative; overflow: hidden; padding: 10px 0; } |
| 294 | .carousel-track { display: flex; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; } |
| 295 | .carousel-slide { |
| 296 | flex: 0 0 calc(100% / 3); |
| 297 | padding: 0 14px; |
| 298 | display: flex; align-items: center; justify-content: center; |
| 299 | } |
| 300 | .partner-link { display: block; width: 100%; text-decoration: none; } |
| 301 | .partner-card { |
| 302 | width: 100%; height: 140px; |
| 303 | background: var(--white); |
| 304 | border-radius: 8px; |
| 305 | display: flex; align-items: center; justify-content: center; |
| 306 | padding: 18px; |
| 307 | box-shadow: 0 6px 16px rgba(0,0,0,0.4); |
| 308 | transition: transform 0.3s ease, box-shadow 0.3s ease; |
| 309 | } |
| 310 | .partner-card:hover { |
| 311 | transform: translateY(-4px); |
| 312 | box-shadow: 0 12px 24px rgba(243, 112, 33, 0.25); |
| 313 | } |
| 314 | .partner-card img { max-width: 100%; max-height: 100%; object-fit: contain; } |
| 315 | .carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; } |
| 316 | .carousel-dot { |
| 317 | width: 10px; height: 10px; border-radius: 50%; |
| 318 | background: rgba(255,255,255,0.25); |
| 319 | border: none; cursor: pointer; padding: 0; |
| 320 | transition: all 0.25s ease; |
| 321 | } |
| 322 | .carousel-dot.active { background: #ff4c00; transform: scale(1.3); } |
| 323 | |
| 324 | /* ====== Post-Liste / News-Karten ====== */ |
| 325 | .post-list { |
| 326 | display: grid; |
| 327 | grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); |
| 328 | gap: 24px; |
| 329 | } |
| 330 | .post-card { |
| 331 | background: rgba(0,0,0,0.55); |
| 332 | border: 1px solid rgba(243, 112, 33, 0.25); |
| 333 | border-radius: 8px; |
| 334 | overflow: hidden; |
| 335 | display: flex; flex-direction: column; |
| 336 | transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; |
| 337 | } |
| 338 | .post-card:hover { |
| 339 | border-color: #ff4c00; |
| 340 | transform: translateY(-4px); |
| 341 | box-shadow: 0 12px 28px rgba(243, 112, 33, 0.18); |
| 342 | } |
| 343 | .post-card-cover { |
| 344 | display: block; |
| 345 | aspect-ratio: 16 / 10; |
| 346 | overflow: hidden; |
| 347 | background: #1a1a1a; |
| 348 | } |
| 349 | .post-card-cover img { |
| 350 | width: 100%; height: 100%; |
| 351 | object-fit: cover; |
| 352 | transition: transform 0.5s ease; |
| 353 | } |
| 354 | .post-card:hover .post-card-cover img { transform: scale(1.05); } |
| 355 | .post-card-body { |
| 356 | padding: 20px 22px 22px; |
| 357 | display: flex; flex-direction: column; gap: 10px; |
| 358 | flex: 1; |
| 359 | } |
| 360 | .post-card-meta { |
| 361 | display: flex; align-items: center; justify-content: space-between; |
| 362 | gap: 10px; flex-wrap: wrap; |
| 363 | } |
| 364 | .post-card-meta time { |
| 365 | color: #ff4c00; |
| 366 | font-size: 0.75rem; font-weight: 700; |
| 367 | letter-spacing: 1.8px; text-transform: uppercase; |
| 368 | } |
| 369 | .post-card-title { margin: 0; } |
| 370 | .post-card-title a { |
| 371 | color: var(--white); text-decoration: none; |
| 372 | font-size: 1.1rem; font-weight: 800; line-height: 1.3; |
| 373 | } |
| 374 | .post-card-title a:hover { color: #ff4c00; } |
| 375 | .post-card-preview { color: var(--gray-light); font-size: 0.92rem; flex: 1; margin: 0; } |
| 376 | .read-more { |
| 377 | color: #ff4c00; text-decoration: none; |
| 378 | font-size: 0.78rem; font-weight: 700; |
| 379 | letter-spacing: 1.5px; text-transform: uppercase; |
| 380 | margin-top: 4px; padding-top: 10px; |
| 381 | border-top: 1px solid rgba(243, 112, 33, 0.2); |
| 382 | } |
| 383 | .post-card:hover .read-more { color: var(--orange-bright); } |
| 384 | |
| 385 | /* Tags */ |
| 386 | .post-tags { display: flex; flex-wrap: wrap; gap: 6px; } |
| 387 | .tag { |
| 388 | display: inline-block; |
| 389 | padding: 3px 10px; |
| 390 | background: rgba(243, 112, 33, 0.1); |
| 391 | border: 1px solid rgba(243, 112, 33, 0.35); |
| 392 | border-radius: 12px; |
| 393 | color: #ff4c00; |
| 394 | font-size: 0.7rem; font-weight: 700; |
| 395 | letter-spacing: 0.5px; text-transform: uppercase; |
| 396 | text-decoration: none; |
| 397 | transition: all 0.2s ease; |
| 398 | } |
| 399 | .tag:hover { background: rgba(243, 112, 33, 0.2); color: var(--orange-bright); } |
| 400 | .tag-large { |
| 401 | font-size: 0.95rem; |
| 402 | padding: 8px 16px; |
| 403 | border-radius: 20px; |
| 404 | } |
| 405 | .tag-count { |
| 406 | margin-left: 6px; |
| 407 | padding: 1px 8px; |
| 408 | background: rgba(243, 112, 33, 0.3); |
| 409 | border-radius: 10px; |
| 410 | font-size: 0.75rem; |
| 411 | } |
| 412 | |
| 413 | /* ====== Single Post ====== */ |
| 414 | .post-single, .page-single { |
| 415 | background: rgba(15, 15, 15, 0.82); |
| 416 | border: 1px solid rgba(255,255,255,0.06); |
| 417 | border-radius: 10px; |
| 418 | padding: 36px 40px; |
| 419 | box-shadow: 0 8px 30px rgba(0,0,0,0.5); |
| 420 | backdrop-filter: blur(4px); |
| 421 | } |
| 422 | .post-header { margin-bottom: 26px; padding-bottom: 14px; border-bottom: 2px solid #ff4c00; } |
| 423 | .post-header-meta { |
| 424 | display: flex; gap: 16px; |
| 425 | color: #ff4c00; |
| 426 | font-size: 0.85rem; font-weight: 700; |
| 427 | letter-spacing: 2px; text-transform: uppercase; |
| 428 | margin-bottom: 10px; |
| 429 | } |
| 430 | .post-title, .page-title { |
| 431 | font-size: 2.2rem; |
| 432 | color: var(--white); |
| 433 | line-height: 1.25; |
| 434 | font-weight: 800; |
| 435 | text-transform: uppercase; |
| 436 | letter-spacing: 3px; |
| 437 | margin-bottom: 14px; |
| 438 | } |
| 439 | .post-cover { |
| 440 | margin: 0 0 28px; |
| 441 | border-radius: 10px; |
| 442 | overflow: hidden; |
| 443 | border: 2px solid rgba(243, 112, 33, 0.7); |
| 444 | box-shadow: 0 12px 36px rgba(0,0,0,0.6); |
| 445 | } |
| 446 | .post-cover img { width: 100%; } |
| 447 | .page-header { margin-bottom: 26px; padding-bottom: 14px; border-bottom: 2px solid #ff4c00; } |
| 448 | |
| 449 | /* TOC */ |
| 450 | .toc { |
| 451 | background: rgba(0,0,0,0.35); |
| 452 | border: 1px dashed rgba(243, 112, 33, 0.35); |
| 453 | border-radius: 6px; |
| 454 | padding: 18px 22px; |
| 455 | margin-bottom: 28px; |
| 456 | } |
| 457 | .toc h3 { |
| 458 | color: #ff4c00; font-size: 0.85rem; |
| 459 | text-transform: uppercase; letter-spacing: 2px; |
| 460 | font-weight: 700; margin-bottom: 10px; |
| 461 | } |
| 462 | .toc ul { list-style: none; padding: 0; margin: 0; } |
| 463 | .toc li { margin: 4px 0; } |
| 464 | .toc li a { color: var(--silver); font-size: 0.92rem; } |
| 465 | .toc li a:hover { color: var(--orange-bright); } |
| 466 | .toc .toc-level-1 { padding-left: 16px; } |
| 467 | .toc .toc-level-2 { padding-left: 32px; } |
| 468 | .toc .toc-level-3 { padding-left: 48px; } |
| 469 | |
| 470 | /* ============================================================ |
| 471 | Markdown-Content |
| 472 | ------------------------------------------------------------ |
| 473 | Alle Selektoren nutzen :where(.post-content), damit ihre |
| 474 | Spezifität bei (0,0,X) bleibt – jede Widget-Klasse (board-card, |
| 475 | partner-tile etc.) gewinnt damit automatisch und Markdown-Regeln |
| 476 | verirren sich nicht in eingebettete HTML-Komponenten. |
| 477 | ============================================================ */ |
| 478 | .post-content { color: var(--gray-light); font-size: 1.02rem; line-height: 1.75; } |
| 479 | |
| 480 | :where(.post-content) h1, |
| 481 | :where(.post-content) h2, |
| 482 | :where(.post-content) h3, |
| 483 | :where(.post-content) h4 { |
| 484 | color: var(--white); |
| 485 | margin: 28px 0 14px; |
| 486 | line-height: 1.3; |
| 487 | } |
| 488 | :where(.post-content) h1 { font-size: 1.7rem; } |
| 489 | :where(.post-content) h2 { |
| 490 | font-size: 1.4rem; |
| 491 | padding: 8px 14px; |
| 492 | background: rgba(243, 112, 33, 0.12); |
| 493 | border-left: 4px solid #ff4c00; |
| 494 | } |
| 495 | :where(.post-content) h3 { font-size: 1.15rem; color: #ff4c00; } |
| 496 | :where(.post-content) h4 { font-size: 1.02rem; text-transform: uppercase; letter-spacing: 0.5px; } |
| 497 | :where(.post-content) p { margin-bottom: 16px; } |
| 498 | :where(.post-content) a { color: #ff4c00; } |
| 499 | :where(.post-content) a:hover { color: var(--orange-bright); text-decoration: underline; } |
| 500 | :where(.post-content) strong { color: var(--white); font-weight: 700; } |
| 501 | :where(.post-content) ul, |
| 502 | :where(.post-content) ol { margin: 10px 0 18px 22px; } |
| 503 | :where(.post-content) li { margin-bottom: 6px; } |
| 504 | :where(.post-content) li::marker { color: #ff4c00; } |
| 505 | :where(.post-content) blockquote { |
| 506 | margin: 18px 0; |
| 507 | padding: 14px 20px; |
| 508 | background: rgba(0,0,0,0.4); |
| 509 | border-left: 4px solid #ff4c00; |
| 510 | border-radius: 4px; |
| 511 | color: var(--silver); |
| 512 | font-style: italic; |
| 513 | } |
| 514 | :where(.post-content) code { |
| 515 | background: rgba(0,0,0,0.5); |
| 516 | padding: 2px 6px; |
| 517 | border-radius: 4px; |
| 518 | font-family: 'JetBrains Mono', Consolas, monospace; |
| 519 | font-size: 0.9em; |
| 520 | color: var(--orange-bright); |
| 521 | border: 1px solid rgba(243, 112, 33, 0.2); |
| 522 | } |
| 523 | :where(.post-content) pre { |
| 524 | background: rgba(0,0,0,0.6); |
| 525 | border: 1px solid rgba(243, 112, 33, 0.2); |
| 526 | border-radius: 6px; |
| 527 | padding: 16px 18px; |
| 528 | overflow-x: auto; |
| 529 | margin: 16px 0; |
| 530 | } |
| 531 | :where(.post-content) pre code { |
| 532 | background: transparent; |
| 533 | border: none; |
| 534 | padding: 0; |
| 535 | color: var(--silver); |
| 536 | } |
| 537 | :where(.post-content) img { |
| 538 | border-radius: 6px; |
| 539 | margin: 16px 0; |
| 540 | } |
| 541 | :where(.post-content) table { |
| 542 | border-collapse: collapse; |
| 543 | margin: 16px 0; |
| 544 | width: 100%; |
| 545 | } |
| 546 | :where(.post-content) th, |
| 547 | :where(.post-content) td { |
| 548 | border: 1px solid rgba(243, 112, 33, 0.2); |
| 549 | padding: 8px 12px; |
| 550 | text-align: left; |
| 551 | } |
| 552 | :where(.post-content) th { background: rgba(243, 112, 33, 0.12); color: var(--white); } |
| 553 | .highlight { color: #ff4c00; } |
| 554 | |
| 555 | /* Post navigation */ |
| 556 | .post-nav { |
| 557 | display: grid; grid-template-columns: 1fr 1fr; |
| 558 | gap: 16px; margin: 36px 0 20px; |
| 559 | } |
| 560 | .post-nav-link { |
| 561 | display: flex; flex-direction: column; gap: 4px; |
| 562 | padding: 16px 18px; |
| 563 | background: rgba(0,0,0,0.4); |
| 564 | border: 1px solid rgba(243, 112, 33, 0.2); |
| 565 | border-radius: 8px; |
| 566 | text-decoration: none; |
| 567 | transition: all 0.25s ease; |
| 568 | color: inherit; |
| 569 | } |
| 570 | .post-nav-link:hover { border-color: #ff4c00; background: rgba(243, 112, 33, 0.08); } |
| 571 | .post-nav-link.disabled { pointer-events: none; opacity: 0.4; } |
| 572 | .post-nav-next { text-align: right; } |
| 573 | .post-nav-label { |
| 574 | color: #ff4c00; |
| 575 | font-size: 0.75rem; font-weight: 700; |
| 576 | letter-spacing: 1.5px; text-transform: uppercase; |
| 577 | } |
| 578 | .post-nav-title { color: var(--white); font-weight: 700; font-size: 0.95rem; } |
| 579 | |
| 580 | .post-footer { margin-top: 20px; } |
| 581 | .back-link { |
| 582 | display: inline-block; |
| 583 | color: #ff4c00; |
| 584 | font-weight: 700; |
| 585 | letter-spacing: 1.5px; |
| 586 | text-transform: uppercase; |
| 587 | font-size: 0.9rem; |
| 588 | text-decoration: none; |
| 589 | } |
| 590 | .back-link:hover { color: var(--orange-bright); text-decoration: underline; } |
| 591 | |
| 592 | /* ====== Tags-/Kategorien-Seiten ====== */ |
| 593 | .tags-page, .tag-page { |
| 594 | background: rgba(15, 15, 15, 0.82); |
| 595 | border: 1px solid rgba(255,255,255,0.06); |
| 596 | border-radius: 10px; |
| 597 | padding: 36px 40px; |
| 598 | box-shadow: 0 8px 30px rgba(0,0,0,0.5); |
| 599 | backdrop-filter: blur(4px); |
| 600 | } |
| 601 | .tags-page h1, .tag-page h1 { |
| 602 | font-size: 2rem; color: var(--white); |
| 603 | margin-bottom: 24px; padding-bottom: 14px; |
| 604 | border-bottom: 2px solid #ff4c00; |
| 605 | display: inline-block; |
| 606 | } |
| 607 | .tags-cloud { display: flex; flex-wrap: wrap; gap: 10px; } |
| 608 | |
| 609 | /* ====== Pagination ====== */ |
| 610 | .pagination { |
| 611 | display: flex; align-items: center; justify-content: center; |
| 612 | gap: 14px; margin: 40px 0 20px; flex-wrap: wrap; |
| 613 | } |
| 614 | .pagination-btn, .pagination-num { |
| 615 | display: inline-block; |
| 616 | padding: 10px 18px; |
| 617 | border: 1px solid rgba(243, 112, 33, 0.3); |
| 618 | border-radius: 6px; |
| 619 | color: var(--silver); text-decoration: none; |
| 620 | font-size: 0.85rem; font-weight: 700; |
| 621 | text-transform: uppercase; letter-spacing: 1px; |
| 622 | transition: all 0.2s ease; |
| 623 | } |
| 624 | .pagination-btn:hover, .pagination-num:hover { |
| 625 | border-color: #ff4c00; |
| 626 | color: var(--white); |
| 627 | background: rgba(243, 112, 33, 0.1); |
| 628 | } |
| 629 | .pagination-num.active { |
| 630 | background: #ff4c00; |
| 631 | color: var(--black); |
| 632 | border-color: #ff4c00; |
| 633 | } |
| 634 | .pagination-btn.disabled { opacity: 0.35; pointer-events: none; } |
| 635 | .pagination-pages { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; } |
| 636 | .pagination-ellipsis { color: var(--gray-light); padding: 0 4px; } |
| 637 | |
| 638 | /* ====== Fixed Corner ====== */ |
| 639 | .corner-fixed { |
| 640 | position: fixed; right: 20px; bottom: 20px; |
| 641 | width: var(--corner-img-w); height: auto; |
| 642 | z-index: 50; pointer-events: none; |
| 643 | filter: drop-shadow(0 8px 24px rgba(0,0,0,0.85)); |
| 644 | } |
| 645 | |
| 646 | /* ====== Footer ====== */ |
| 647 | .footer { |
| 648 | background: rgba(5, 5, 5, 0.92); |
| 649 | border-top: 3px solid #ff4c00; |
| 650 | padding: 30px; |
| 651 | text-align: center; |
| 652 | color: var(--gray-light); |
| 653 | font-size: 0.9rem; |
| 654 | margin-top: 40px; |
| 655 | } |
| 656 | .footer-inner { |
| 657 | max-width: var(--content-max); |
| 658 | margin: 0 auto; |
| 659 | padding-right: calc(var(--content-right-pad) - 30px); |
| 660 | } |
| 661 | .footer a { color: #ff4c00; margin: 0 8px; } |
| 662 | .footer a:hover { color: var(--orange-bright); text-decoration: underline; } |
| 663 | |
| 664 | /* ====== RESPONSIVE ====== */ |
| 665 | @media (max-width: 1100px) { |
| 666 | :root { --corner-img-w: 130px; --content-right-pad: 190px; } |
| 667 | } |
| 668 | |
| 669 | @media (max-width: 860px) { |
| 670 | :root { --corner-img-w: 110px; --content-right-pad: 20px; } |
| 671 | |
| 672 | /* Eckbild auf Mobile ausblenden – im engen Viewport würde es sonst |
| 673 | die Karten/Texte rechts überlagern */ |
| 674 | .corner-fixed { display: none; } |
| 675 | |
| 676 | .nav-inner { padding: 10px 16px; flex-wrap: wrap; } |
| 677 | .nav-brand img { height: 52px; } |
| 678 | .nav-brand-text .name { font-size: 1rem; } |
| 679 | |
| 680 | .hamburger { display: inline-block; } |
| 681 | .nav-links { |
| 682 | display: none; |
| 683 | flex-direction: column; |
| 684 | align-items: stretch; |
| 685 | width: 100%; |
| 686 | gap: 0; |
| 687 | margin-top: 10px; |
| 688 | padding-top: 10px; |
| 689 | border-top: 1px solid rgba(243, 112, 33, 0.3); |
| 690 | } |
| 691 | .nav-links.open { display: flex; } |
| 692 | .nav-links > a, |
| 693 | .nav-links .nav-dropdown > .nav-dropdown-toggle { padding: 12px 14px; width: 100%; justify-content: space-between; } |
| 694 | .nav-dropdown-menu { |
| 695 | position: static; opacity: 1; visibility: hidden; |
| 696 | transform: none; box-shadow: none; border: none; |
| 697 | border-left: 3px solid #ff4c00; |
| 698 | background: rgba(0,0,0,0.3); |
| 699 | margin: 4px 0 8px 14px; |
| 700 | padding: 4px 0; |
| 701 | max-height: 0; |
| 702 | overflow: hidden; |
| 703 | transition: max-height 0.3s ease, visibility 0s linear 0.3s; |
| 704 | } |
| 705 | .nav-dropdown.open > .nav-dropdown-menu { |
| 706 | visibility: visible; |
| 707 | max-height: 400px; |
| 708 | transition: max-height 0.3s ease, visibility 0s; |
| 709 | } |
| 710 | .nav-dropdown-menu a { padding: 8px 16px; } |
| 711 | |
| 712 | .search-box { width: calc(100vw - 32px); right: -8px; } |
| 713 | |
| 714 | .container { padding: 24px 16px 40px; } |
| 715 | .section, .partner-section, .post-single, .page-single, .tags-page, .tag-page { padding: 22px 20px; } |
| 716 | .post-title, .page-title { font-size: 1.5rem; } |
| 717 | .section h2 { font-size: 1.4rem; } |
| 718 | .carousel-slide { flex: 0 0 100%; } |
| 719 | .post-nav { grid-template-columns: 1fr; } |
| 720 | } |
| 721 | |
| 722 | /* Eckbild ist auf ≤860 bereits ausgeblendet, daher hier nichts mehr nötig. */ |
| 723 | |
| 724 | /* ====== Vorstand ====== */ |
| 725 | .board-grid { |
| 726 | display: grid; |
| 727 | grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); |
| 728 | gap: 26px; |
| 729 | margin: 24px 0 8px; |
| 730 | } |
| 731 | .board-card { |
| 732 | background: rgba(0, 0, 0, 0.5); |
| 733 | border: 1px solid rgba(243, 112, 33, 0.2); |
| 734 | border-radius: 12px; |
| 735 | overflow: hidden; |
| 736 | display: flex; |
| 737 | flex-direction: column; |
| 738 | transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; |
| 739 | } |
| 740 | .board-card:hover { |
| 741 | transform: translateY(-4px); |
| 742 | border-color: #ff4c00; |
| 743 | box-shadow: 0 14px 30px rgba(243, 112, 33, 0.18); |
| 744 | } |
| 745 | .board-card .photo { |
| 746 | width: 100%; |
| 747 | height: 500px; |
| 748 | aspect-ratio: 1 / 1; |
| 749 | /* background: #1a1a1a; */ |
| 750 | overflow: hidden; |
| 751 | } |
| 752 | .board-card .photo img { |
| 753 | width: 100%; height: 100%; |
| 754 | object-fit: cover; display: block; |
| 755 | } |
| 756 | .board-card .info { |
| 757 | padding: 22px 24px 26px; |
| 758 | display: flex; flex-direction: column; |
| 759 | gap: 10px; flex: 1; |
| 760 | } |
| 761 | .board-card .role { |
| 762 | color: #ff4c00; |
| 763 | font-size: 0.78rem; font-weight: 700; |
| 764 | text-transform: uppercase; letter-spacing: 2px; |
| 765 | } |
| 766 | .board-card .name { |
| 767 | color: var(--white); |
| 768 | font-size: 1.3rem; font-weight: 800; |
| 769 | letter-spacing: 0.3px; |
| 770 | margin: 0; |
| 771 | /* Reset, falls die Karte als h2 in .post-content steht */ |
| 772 | padding: 0; |
| 773 | background: transparent; |
| 774 | border: none; |
| 775 | text-transform: none; |
| 776 | } |
| 777 | .board-card .email { |
| 778 | margin-top: auto; |
| 779 | display: inline-flex; align-items: center; gap: 8px; |
| 780 | color: var(--silver); |
| 781 | text-decoration: none; |
| 782 | font-size: 0.95rem; |
| 783 | word-break: break-all; |
| 784 | padding-top: 12px; |
| 785 | border-top: 1px solid rgba(243, 112, 33, 0.2); |
| 786 | transition: color 0.2s ease; |
| 787 | } |
| 788 | .board-card .email:hover { color: var(--orange-bright); } |
| 789 | .board-card .email::before { |
| 790 | content: "✉"; |
| 791 | color: #ff4c00; |
| 792 | font-size: 1.05rem; |
| 793 | flex-shrink: 0; |
| 794 | } |
| 795 | |
| 796 | /* ====== Impressum / Datenschutz Blöcke ====== */ |
| 797 | .impressum-block { margin-bottom: 22px; } |
| 798 | .impressum-block .label { |
| 799 | color: #ff4c00; |
| 800 | font-size: 0.9rem; font-weight: 700; |
| 801 | text-transform: uppercase; letter-spacing: 1.5px; |
| 802 | margin-bottom: 4px; |
| 803 | } |
| 804 | .address-block { |
| 805 | background: rgba(0,0,0,0.4); |
| 806 | border-left: 3px solid #ff4c00; |
| 807 | padding: 14px 18px; |
| 808 | margin: 10px 0 18px; |
| 809 | border-radius: 4px; |
| 810 | } |
| 811 | .uppercase-notice { |
| 812 | background: rgba(243, 112, 33, 0.06); |
| 813 | border: 1px solid rgba(243, 112, 33, 0.3); |
| 814 | border-radius: 6px; |
| 815 | padding: 14px 18px; |
| 816 | margin: 12px 0; |
| 817 | color: var(--silver); |
| 818 | font-size: 0.85rem; |
| 819 | line-height: 1.55; |
| 820 | text-transform: uppercase; |
| 821 | letter-spacing: 0.4px; |
| 822 | } |
| 823 | |
| 824 | /* ====== Partner-Grid (Übersichtsseite) ====== */ |
| 825 | .partner-grid { |
| 826 | display: grid; |
| 827 | grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); |
| 828 | gap: 22px; |
| 829 | margin: 20px 0 8px; |
| 830 | } |
| 831 | .partner-tile { |
| 832 | background: rgba(0, 0, 0, 0.5); |
| 833 | border: 1px solid rgba(243, 112, 33, 0.2); |
| 834 | border-radius: 10px; |
| 835 | overflow: hidden; |
| 836 | display: flex; |
| 837 | flex-direction: column; |
| 838 | text-decoration: none; |
| 839 | color: inherit; |
| 840 | transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; |
| 841 | } |
| 842 | .partner-tile:hover { |
| 843 | transform: translateY(-4px); |
| 844 | border-color: #ff4c00; |
| 845 | box-shadow: 0 12px 28px rgba(243, 112, 33, 0.18); |
| 846 | } |
| 847 | .partner-tile .logo { |
| 848 | background: var(--white); |
| 849 | height: 150px; |
| 850 | display: flex; |
| 851 | align-items: center; |
| 852 | justify-content: center; |
| 853 | padding: 20px; |
| 854 | } |
| 855 | .partner-tile .logo img { |
| 856 | max-width: 100%; |
| 857 | max-height: 100%; |
| 858 | object-fit: contain; |
| 859 | } |
| 860 | .partner-tile .info { |
| 861 | padding: 16px 18px 18px; |
| 862 | flex: 1; |
| 863 | display: flex; |
| 864 | flex-direction: column; |
| 865 | justify-content: space-between; |
| 866 | gap: 10px; |
| 867 | } |
| 868 | .partner-tile .name { |
| 869 | color: var(--white); |
| 870 | font-size: 1.05rem; |
| 871 | font-weight: 700; |
| 872 | letter-spacing: 0.3px; |
| 873 | } |
| 874 | .partner-tile .visit { |
| 875 | color: #ff4c00; |
| 876 | font-size: 0.85rem; |
| 877 | font-weight: 700; |
| 878 | letter-spacing: 1.5px; |
| 879 | text-transform: uppercase; |
| 880 | transition: color 0.2s ease; |
| 881 | } |
| 882 | .partner-tile:hover .visit { color: var(--orange-bright); } |
| 883 | .partner-tile .no-url { |
| 884 | color: rgba(184, 184, 184, 0.55); |
| 885 | font-size: 0.8rem; |
| 886 | font-style: italic; |
| 887 | letter-spacing: 0.5px; |
| 888 | } |