Gemeinsam trainieren. Gemeinsam wachsen.
Hundesportverein mit Wurzeln im Schäferhundesport – offen für alle Hunderassen und jedes Level.
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hundesportverein</title>
<style>
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: Arial, sans-serif;
background: #f6f6f6;
color: #222;
}
/* NAV */
nav {
position: fixed;
top: 0;
width: 100%;
background: #8B1E2D;
padding: 12px;
text-align: center;
z-index: 1000;
}
nav a {
color: white;
margin: 0 10px;
text-decoration: none;
font-size: 14px;
}
/* HERO */
.hero {
height: 100vh;
background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
url('https://images.unsplash.com/photo-1601758123927-196d4f4f4a5d') center/cover;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 20px;
}
.hero h1 {
font-size: 34px;
margin-bottom: 10px;
}
.hero p {
max-width: 600px;
font-size: 16px;
}
.btn {
margin-top: 20px;
background: #C0392B;
color: white;
padding: 14px 22px;
border-radius: 10px;
text-decoration: none;
font-weight: bold;
}
/* SECTIONS */
section {
padding: 80px 20px;
max-width: 1000px;
margin: auto;
text-align: center;
}
/* GRID */
.grid {
display: grid;
gap: 15px;
margin-top: 20px;
}
.card {
background: white;
padding: 18px;
border-radius: 12px;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
/* CTA */
.cta {
background: #8B1E2D;
color: white;
text-align: center;
padding: 70px 20px;
}
.cta a {
background: white;
color: #8B1E2D;
padding: 14px 22px;
border-radius: 10px;
text-decoration: none;
font-weight: bold;
}
/* FOOTER */
footer {
background: #222;
color: white;
text-align: center;
padding: 20px;
font-size: 13px;
}
/* MOBILE */
@media (min-width: 768px) {
.hero h1 { font-size: 52px; }
.grid {
grid-template-columns: 1fr 1fr;
}
}
</style>
</head>
<body>
<!-- ABOUT -->
<section id="about">
<h2>Was uns ausmacht</h2>
<div class="grid">
<div class="card">🐾 Training in der Gruppe</div>
<div class="card">🐕 Alle Hunderassen willkommen</div>
<div class="card">💪 Hundesport & Bewegung</div>
<div class="card">🤝 Gemeinschaft & Teamgeist</div>
</div>
</section>
<!-- TRAINING -->
<section id="training">
<h2>Unser Training</h2>
<p>
Praxisnahes Training für Alltag, Gehorsam und sportliche Auslastung – gemeinsam im Verein.
</p>
<div class="grid">
<div class="card">Welpen</div>
<div class="card">Grundgehorsam</div>
<div class="card">Beschäftigung</div>
<div class="card">Hundesport</div>
</div>
</section>
<!-- VEREIN -->
<section>
<h2>Über unseren Verein</h2>
<p>
Aus dem Schäferhundesport entstanden, heute ein moderner Hundesportverein für alle Hunderassen.
Bei uns stehen Gemeinschaft, Training und Freude am Hund im Mittelpunkt.
</p>
</section>
<!-- FOOTER -->
<footer>
© 2026 Hundesportverein • Impressum • Datenschutz
</footer>
</body>
</html>