351 lines
13 KiB
HTML
Executable File
351 lines
13 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Technik | Feuerwehr Stadt Wehlen</title>
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="../css/nav.css">
|
|
<link rel="stylesheet" href="../css/footer.css">
|
|
|
|
<style>
|
|
:root {
|
|
/* Grundfarben */
|
|
--fw-rot: #900000; /* Dunkles Rot für Titel/Akzente */
|
|
--fw-rot-hell: #b30000; /* Helleres Rot für Kachel-Hintergrund */
|
|
--fw-grau: #616161; /* Standard-Grau */
|
|
--bg-light: #f8f9fa; /* Seiten-Hintergrund */
|
|
|
|
/* NEU: Das dunkle Weinrot für Kontraste (statt Schwarz/Blau) */
|
|
--text-dunkelrot: #3d0000;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--bg-light);
|
|
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
|
|
color: #333; /* Standard-Text etwas weicher als tiefschwarz */
|
|
}
|
|
|
|
/* NAVBAR-DESIGN (Mit logo2.jpeg Pattern) */
|
|
.navbar-custom {
|
|
background-color: var(--fw-rot-hell) !important;
|
|
background-image: url('../bilder/logo2.jpeg') !important;
|
|
background-size: 7em !important;
|
|
background-repeat: repeat !important;
|
|
padding: 1rem 0;
|
|
border-bottom: 2px solid var(--text-dunkelrot);
|
|
}
|
|
|
|
.navbar-custom .navbar-brand,
|
|
.navbar-custom .nav-link {
|
|
color: #ffffff !important;
|
|
text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Hover & Aktiv: Dunkles Weinrot statt Schwarz/Blau */
|
|
.navbar-custom .nav-link:hover,
|
|
.navbar-custom .dropdown-item:hover,
|
|
.navbar-custom .nav-link.active,
|
|
.navbar-custom .dropdown-item.active {
|
|
color: #ffffff !important;
|
|
background-color: var(--text-dunkelrot) !important;
|
|
}
|
|
|
|
.navbar-custom .dropdown-menu {
|
|
background-color: var(--fw-rot) !important;
|
|
background-image: url('../bilder/logo2.jpeg') !important;
|
|
background-size: 9em !important;
|
|
border: 1px solid var(--text-dunkelrot);
|
|
}
|
|
|
|
.navbar-custom .dropdown-item {
|
|
color: #ffffff !important;
|
|
}
|
|
|
|
/* PAGE HEADER */
|
|
.page-header {
|
|
position: relative;
|
|
text-align: center;
|
|
padding: 60px 0;
|
|
background-color: #fff;
|
|
overflow: hidden;
|
|
border-bottom: 1px solid #dee2e6;
|
|
}
|
|
|
|
.header-bg-icon {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
height: 120%;
|
|
opacity: 0.07;
|
|
z-index: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.page-header h1 {
|
|
position: relative;
|
|
z-index: 1;
|
|
color: var(--fw-rot);
|
|
font-weight: 800;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
/* TECHNIK CONTAINER & CARDS */
|
|
.technik-container {
|
|
max-width: 1100px;
|
|
margin: 40px auto;
|
|
padding: 0 15px;
|
|
}
|
|
|
|
.technik-card {
|
|
background: #fff;
|
|
border: none;
|
|
border-left: 5px solid var(--fw-rot);
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
margin-bottom: 30px;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
.technik-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
|
|
/* Hover-Akzent: Dunkles Weinrot */
|
|
border-left-color: var(--text-dunkelrot);
|
|
}
|
|
|
|
.card-img-wrapper {
|
|
width: 100%;
|
|
height: 200px;
|
|
background-color: #eee;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.card-img-wrapper img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.card-body-custom {
|
|
padding: 1.25rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.card-body-custom h5 {
|
|
margin: 0;
|
|
font-weight: 700;
|
|
color: #333;
|
|
}
|
|
|
|
/* FOOTER */
|
|
footer {
|
|
background-color: #fff;
|
|
border-top: 1px solid #dee2e6;
|
|
color: #555;
|
|
}
|
|
footer h6 { color: var(--text-dunkelrot); }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-custom shadow-sm">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand d-flex align-items-center" href="../index.html">
|
|
<img src="../bilder/ffw_transp_72.gif" alt="Logo" style="height: 3em; margin-right: 10px;">
|
|
<span>Feuerwehr Stadt Wehlen</span>
|
|
</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav ms-auto">
|
|
<li class="nav-item"><a class="nav-link" href="#">Aktuelles</a></li>
|
|
<li class="nav-item dropdown">
|
|
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" data-bs-toggle="dropdown">Über uns</a>
|
|
<ul class="dropdown-menu">
|
|
<li><a class="dropdown-item" href="../geschichte/Geschichte.html">Geschichte</a></li>
|
|
<li><a class="dropdown-item active" href="technik.html">Technik</a></li>
|
|
<li><a class="dropdown-item" href="../mitglieder/Organigramm.html">Mitglieder/Organigramm</a></li>
|
|
</ul>
|
|
</li>
|
|
<li class="nav-item"><a class="nav-link" href="#">Veranstaltungen</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="#">Kontakt/Impressum</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="page-header">
|
|
<img src="../bilder/ffw_transp_72.gif" class="header-bg-icon" alt="BG-Icon">
|
|
<h1>Unsere Technik</h1>
|
|
<p class="lead text-muted">Einsatzfahrzeuge und Ausrüstung der Stadt Wehlen</p>
|
|
</div>
|
|
|
|
<div class="technik-container">
|
|
<div class="row g-4">
|
|
|
|
<div class="col-md-4 col-sm-6">
|
|
<a href="lf10/lf10.html" class="technik-card">
|
|
<div class="card-img-wrapper">
|
|
<img src="technikpage/t_lf10_6_1.jpg" alt="LF 10/6">
|
|
</div>
|
|
<div class="card-body-custom">
|
|
<h5>LF 10/6</h5>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="col-md-4 col-sm-6">
|
|
<a href="tsf/tsf.html" class="technik-card">
|
|
<div class="card-img-wrapper">
|
|
<img src="technikpage/t_tsf_01.jpg" alt="TSF-W">
|
|
</div>
|
|
<div class="card-body-custom">
|
|
<h5>TSF-W</h5>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="col-md-4 col-sm-6">
|
|
<a href="VRW-Quad/VRW.html" class="technik-card">
|
|
<div class="card-img-wrapper">
|
|
<img src="technikpage/t_vrw_1.jpg" alt="VRW Quad">
|
|
</div>
|
|
<div class="card-body-custom">
|
|
<h5>VRW Quad</h5>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="col-md-4 col-sm-6">
|
|
<a href="elw1/elw1.html" class="technik-card">
|
|
<div class="card-img-wrapper">
|
|
<img src="technikpage/t_elw1_1.jpg" alt="ELW 1">
|
|
</div>
|
|
<div class="card-body-custom">
|
|
<h5>ELW 1</h5>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="col-md-4 col-sm-6">
|
|
<a href="rtb1/rtb1.html" class="technik-card">
|
|
<div class="card-img-wrapper">
|
|
<img src="technikpage/t_aluboot_rtb1_1.jpg" alt="Aluboot RTB 1">
|
|
</div>
|
|
<div class="card-body-custom">
|
|
<h5>Aluboot RTB 1</h5>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="col-md-4 col-sm-6">
|
|
<a href="rtb2/rtb2.html" class="technik-card">
|
|
<div class="card-img-wrapper">
|
|
<img src="technikpage/t_rtb2_1.jpg" alt="RTB 2">
|
|
</div>
|
|
<div class="card-body-custom">
|
|
<h5>Rettungsboot RTB 2</h5>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="col-md-4 col-sm-6">
|
|
<a href="rtb1schlauchboot/rtb1_Schlauchboot.html" class="technik-card">
|
|
<div class="card-img-wrapper">
|
|
<img src="technikpage/t_schlauchboot.jpg" alt="Schlauchboot">
|
|
</div>
|
|
<div class="card-body-custom">
|
|
<h5>RTB 1 Schlauchboot</h5>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="col-md-4 col-sm-6">
|
|
<a href="sta/sta.html" class="technik-card">
|
|
<div class="card-img-wrapper">
|
|
<img src="technikpage/t_sta_1.jpg" alt="STA">
|
|
</div>
|
|
<div class="card-body-custom">
|
|
<h5>STA Anhänger</h5>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="col-md-4 col-sm-6">
|
|
<a href="TSA-Anhaenger/TSA.html" class="technik-card">
|
|
<div class="card-img-wrapper">
|
|
<img src="technikpage/t_tsa_1.jpg" alt="TSA">
|
|
</div>
|
|
<div class="card-body-custom">
|
|
<h5>TSA Anhänger</h5>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="col-md-4 col-sm-6">
|
|
<a href="Hydrantenwagen/Hydrantenwagen.html" class="technik-card">
|
|
<div class="card-img-wrapper">
|
|
<img src="technikpage/t_hydrantenwagen_1.jpg" alt="Hydrantenwagen">
|
|
</div>
|
|
<div class="card-body-custom">
|
|
<h5>Hydrantenwagen (1905)</h5>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="col-md-4 col-sm-6">
|
|
<a href="lf1/lf1.html" class="technik-card">
|
|
<div class="card-img-wrapper">
|
|
<img src="technikpage/t_lf1_1.jpg" alt="LF 1">
|
|
</div>
|
|
<div class="card-body-custom">
|
|
<h5>Postfahrrad LF 1</h5>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="col-md-4 col-sm-6">
|
|
<a href="Transporthaenger/Transporthaenger.html" class="technik-card">
|
|
<div class="card-img-wrapper">
|
|
<img src="technikpage/t_transportanhaenger.jpg" alt="Transportanhänger">
|
|
</div>
|
|
<div class="card-body-custom">
|
|
<h5>Transportanhänger</h5>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="container-fluid py-4 mt-5">
|
|
<div class="row justify-content-center align-items-center">
|
|
<div class="col-lg-4 col-md-5 text-lg-end text-center mb-3 mb-lg-0">
|
|
<h6 class="fw-bold text-decoration-underline">Letzte Aktualisierung</h6>
|
|
<p class="mb-0">17. März 2026</p>
|
|
</div>
|
|
<div class="col-lg-1 d-none d-lg-block"></div>
|
|
<div class="col-lg-4 col-md-5 text-lg-start text-center">
|
|
<h6 class="fw-bold text-decoration-underline">Statistik</h6>
|
|
<p class="mb-0 small">Aktive: 27 | Jugend: 23 | Förderverein: 172</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html> |