<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Saylik Immobilien - Kamil Saylik | Grundstücks- und Immobilienexperte für institutionelle Investoren</title>
<style>
:root {
/* Farben angepasst, um besser zum Logo zu passen (Annahme: Blau/Grau) */
--primary-color: #1e3c96; /* Hauptfarbe (z.B. Blau) */
--secondary-color: #5a5a5a; /* Sekundärfarbe (z.B. Grau) */
--accent-color: #f8f9fa; /* Akzentfarbe für Hintergründe */
--text-color: #333; /* Standard Textfarbe */
--light-blue: #e9eefb; /* Heller Blauton für Akzente */
--overlay-color: rgba(255, 255, 255, 0.85); /* Overlay für Hintergrundbild, um Textlesbarkeit zu sichern */
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}
body {
color: var(--text-color);
line-height: 1.6;
/* Hintergrundbild mit Overlay hinzugefügt */
background: linear-gradient(var(--overlay-color), var(--overlay-color)), url('/api/placeholder/1920/1080?text=Saylik+Immobilien+Logo+Placeholder') no-repeat center center fixed;
background-size: cover; /* Stellt sicher, dass das Bild den gesamten Bereich abdeckt */
}
.hero {
/* Hero-Hintergrund leicht angepasst für besseren Kontrast zum Body-Hintergrund */
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1200/600?text=Immobilien+Banner') no-repeat center center;
background-size: cover;
height: 90vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #fff;
}
.hero-content {
max-width: 900px;
padding: 2rem;
background-color: rgba(0, 0, 0, 0.5); /* Leichter Hintergrund für Text im Hero-Bereich */
border-radius: 8px;
}
.hero-content h1 {
font-size: 2.8rem;
margin-bottom: 1rem;
font-weight: 600;
}
.hero-content p {
font-size: 1.3rem;
margin-bottom: 2rem;
line-height: 1.8;
}
.btn {
display: inline-block;
padding: 1rem 2rem;
background-color: var(--primary-color);
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
font-weight: 500;
letter-spacing: 0.5px;
}
.btn:hover {
background-color: #152d70; /* Dunkleres Blau beim Hover */
}
header {
background-color: rgba(255, 255, 255, 0.9); /* Header leicht transparent */
backdrop-filter: blur(5px); /* Weichzeichner-Effekt für den Header */
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
padding: 1rem 0;
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
}
.logo img {
height: 50px;
/* URL für Logo-Platzhalter */
content: url('/api/placeholder/200/50?text=Saylik+Logo');
}
.nav-links {
display: flex;
list-style: none;
}
.nav-links li {
margin-left: 2.5rem;
}
.nav-links a {
text-decoration: none;
color: var(--text-color);
font-weight: 500;
transition: color 0.3s;
font-size: 0.95rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.nav-links a:hover {
color: var(--primary-color);
}
section {
padding: 5rem 0;
/* Hintergrund für Sektionen, um sie vom Body-Hintergrund abzuheben */
background-color: rgba(255, 255, 255, 0.95);
margin-bottom: 2rem; /* Abstand zwischen Sektionen */
border-radius: 8px; /* Abgerundete Ecken für Sektionen */
box-shadow: 0 3px 10px rgba(0,0,0,0.05); /* Leichter Schatten */
}
/* Spezifische Hintergrundfarben für bestimmte Sektionen beibehalten/anpassen */
#about {
background-color: rgba(248, 249, 250, 0.95); /* --accent-color mit Transparenz */
}
#network {
background-color: rgba(255, 255, 255, 0.95); /* Weiß mit Transparenz */
}
#contact {
background-color: rgba(248, 249, 250, 0.95); /* --accent-color mit Transparenz */
}
.cta {
background-color: var(--primary-color); /* CTA bleibt vollfarbig */
color: white;
text-align: center;
padding: 4rem 0;
margin-bottom: 0; /* Kein unterer Rand für CTA */
border-radius: 0; /* Keine abgerundeten Ecken für CTA */
}
.section-title {
text-align: center;
margin-bottom: 4rem;
}
.section-title h2 {
font-size: 2.2rem;
color: var(--primary-color);
position: relative;
padding-bottom: 1rem;
font-weight: 600;
}
.section-title h2::after {
content: '';
position: absolute;
left: 50%;
bottom: 0;
transform: translateX(-50%);
width: 60px;
height: 3px;
background-color: var(--primary-color);
}
.section-subtitle {
font-size: 1.1rem;
color: var(--secondary-color);
max-width: 700px;
margin: 1rem auto 0;
}
.services {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Mindestbreite angepasst */
gap: 2.5rem;
}
.service-card {
background-color: white; /* Karten bleiben vollfarbig weiß */
padding: 2.5rem;
border-radius: 5px;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.service-card i {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
}
.service-card h3 {
font-size: 1.5rem;
margin-bottom: 1.2rem;
font-weight: 600;
}
.service-card p {
color: #666;
font-size: 1rem;
line-height: 1.7;
}
.about-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Mindestbreite angepasst */
gap: 3rem;
align-items: center;
}
.about-text h3 {
font-size: 1.9rem;
margin-bottom: 1.5rem;
color: var(--primary-color);
font-weight: 600;
}
.about-text p {
margin-bottom: 1.2rem;
color: #444;
font-size: 1.05rem;
line-height: 1.8;
}
.about-image img {
/* URL für Bild-Platzhalter */
content: url('/api/placeholder/500/400?text=Büro+Saylik+Immobilien');
max-width: 100%;
height: auto;
border-radius: 5px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.network-content {
max-width: 800px;
margin: 0 auto;
text-align: center;
}
.network-content p {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 2rem;
color: #444;
}
.network-stats {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin-top: 3rem;
}
.stat-item {
padding: 1.5rem;
text-align: center;
min-width: 180px; /* Leicht angepasst */
}
.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 0.5rem;
}
.stat-text {
font-size: 1rem;
color: var(--secondary-color);
font-weight: 500;
}
.contact-info {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Mindestbreite angepasst */
gap: 2rem;
margin-bottom: 3rem;
}
.contact-card {
text-align: center;
padding: 2.5rem;
border-radius: 5px;
background-color: white; /* Karten bleiben vollfarbig weiß */
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.contact-card i {
font-size: 2.2rem;
color: var(--primary-color);
margin-bottom: 1.2rem;
}
.contact-card h3 {
font-size: 1.3rem;
margin-bottom: 1rem;
font-weight: 600;
}
.contact-card p, .contact-card a { /* E-Mail-Adresse als Link */
color: #555;
font-size: 1.05rem;
text-decoration: none; /* Link nicht unterstreichen */
}
.contact-card a:hover {
color: var(--primary-color); /* Farbe beim Hover ändern */
}
.contact-form-container {
max-width: 700px;
margin: 0 auto;
background-color: white; /* Formular bleibt vollfarbig weiß */
padding: 3rem;
border-radius: 5px;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 500;
color: var(--secondary-color);
}
.form-control {
width: 100%;
padding: 0.8rem;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 1rem;
transition: border-color 0.3s;
}
.form-control:focus {
border-color: var(--primary-color);
outline: none;
}
textarea.form-control {
resize: vertical;
min-height: 150px;
}
.form-btn {
background-color: var(--primary-color);
color: white;
padding: 1rem 2rem;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 1rem;
font-weight: 500;
transition: background-color 0.3s;
}
.form-btn:hover {
background-color: #152d70;
}
.cta h3 {
font-size: 2rem;
margin-bottom: 1.5rem;
}
.cta p {
font-size: 1.1rem;
margin-bottom: 2rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.cta-btn {
display: inline-block;
padding: 1rem 2rem;
background-color: white;
color: var(--primary-color);
text-decoration: none;
border-radius: 5px;
font-weight: 600;
transition: background-color 0.3s, color 0.3s;
}
.cta-btn:hover {
background-color: #f0f0f0;
}
footer {
background-color: #222; /* Footer bleibt dunkel */
color: white;
padding: 4rem 0 2rem;
border-radius: 0; /* Keine abgerundeten Ecken für Footer */
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 3rem;
}
.footer-column h3 {
margin-bottom: 1.5rem;
font-size: 1.2rem;
color: #fff;
font-weight: 600;
padding-bottom: 0.5rem;
position: relative;
}
.footer-column h3::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 40px;
height: 2px;
background-color: var(--primary-color);
}
.footer-column ul {
list-style: none;
}
.footer-column ul li {
margin-bottom: 0.8rem;
}
.footer-column ul li a {
color: #ccc;
text-decoration: none;
transition: color 0.3s;
font-size: 0.95rem;
}
.footer-column ul li a:hover {
color: white;
}
.footer-column p {
color: #aaa;
line-height: 1.7;
font-size: 0.95rem;
}
.footer-column address {
color: #aaa;
font-style: normal;
line-height: 1.7;
font-size: 0.95rem;
}
/* E-Mail im Footer als Link */
.footer-column address a {
color: #aaa;
text-decoration: none;
transition: color 0.3s;
}
.footer-column address a:hover {
color: white;
}
.copyright {
border-top: 1px solid rgba(255,255,255,0.1);
margin-top: 3rem;
padding-top: 2rem;
text-align: center;
color: #999;
font-size: 0.9rem;
}
.legal-links {
margin-top: 1rem;
}
.legal-links a {
color: #aaa;
text-decoration: none;
margin: 0 0.8rem;
font-size: 0.85rem;
transition: color 0.3s;
}
.legal-links a:hover {
color: white;
}
/* Rechtliche Seiten Styles (unverändert) */
.legal-page {
padding-top: 120px;
padding-bottom: 5rem;
background-color: rgba(255, 255, 255, 0.95); /* Hintergrund für Konsistenz */
margin: 2rem auto; /* Zentrierung und Abstand */
max-width: 900px; /* Begrenzung der Breite */
border-radius: 8px;
box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.legal-page .container {
max-width: 100%; /* Container füllt legal-page aus */
}
.legal-content {
background-color: transparent; /* Hintergrund von legal-page übernehmen */
padding: 0 3rem 3rem; /* Padding angepasst */
border-radius: 0;
box-shadow: none;
}
.legal-content h1 {
font-size: 2.2rem;
color: var(--primary-color);
margin-bottom: 2rem;
}
.legal-content h2 {
font-size: 1.5rem;
color: var(--secondary-color);
margin: 2rem 0 1rem;
}
.legal-content h3 {
font-size: 1.2rem;
margin: 1.5rem 0 1rem;
}
.legal-content p {
margin-bottom: 1rem;
line-height: 1.8;
}
.legal-content ul, .legal-content ol {
margin: 1rem 0 1rem 2rem;
}
.legal-content li {
margin-bottom: 0.5rem;
}
.legal-content a {
color: var(--primary-color);
text-decoration: none;
}
.legal-content a:hover {
text-decoration: underline;
}
.back-link {
display: inline-block;
margin-top: 2rem;
color: var(--secondary-color);
text-decoration: none;
font-weight: 500;
}
.back-link:hover {
color: var(--primary-color);
}
/* Responsive Anpassungen */
@media (max-width: 992px) {
.services, .about-content, .contact-info {
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Flexiblere Spalten */
}
}
@media (max-width: 768px) {
.nav-links {
display: none; /* Menü für Mobile ausblenden (später ggf. durch Burger-Menü ersetzen) */
}
.hero-content h1 {
font-size: 2.2rem;
}
.hero-content p {
font-size: 1.1rem;
}
.about-content {
grid-template-columns: 1fr; /* Untereinander auf Mobile */
}
.about-image {
margin-top: 2rem; /* Abstand Bild zum Text */
}
.section-title h2 {
font-size: 1.8rem;
}
.services, .contact-info {
grid-template-columns: 1fr; /* Eine Spalte auf Mobile */
}
.network-stats {
flex-direction: column; /* Statistiken untereinander */
align-items: center;
}
.stat-item {
margin-bottom: 1rem;
}
.contact-form-container {
padding: 2rem;
}
.footer-content {
grid-template-columns: 1fr; /* Footer-Spalten untereinander */
text-align: center;
}
.footer-column h3::after {
left: 50%;
transform: translateX(-50%);
}
.footer-column address {
text-align: center;
}
.legal-content {
padding: 2rem;
}
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<header>
<div class="container">
<nav>
<div class="logo">
<img src="/api/placeholder/200/50?text=Saylik+Logo" alt="Saylik Immobilien Logo">
</div>
<ul class="nav-links">
<li><a href="#home">Startseite</a></li>
<li><a href="#services">Dienstleistungen</a></li>
<li><a href="#about">Über uns</a></li>
<li><a href="#network">Netzwerk</a></li>
<li><a href="#contact">Kontakt</a></li>
</ul>
</nav>
</div>
</header>
<section id="home" class="hero">
<div class="hero-content">
<h1>Saylik Immobilien - Ihr Partner für institutionelle Immobilieninvestitionen</h1>
<p>Spezialisiert auf die Vermittlung, Entwicklung und Projektierung hochwertiger Immobilien- und Grundstücksinvestitionen für institutionelle Anleger in Oberhausen und der gesamten Region.</p>
<a href="#contact" class="btn">Vereinbaren Sie einen Beratungstermin</a>
</div>
</section>
<section id="services">
<div class="container">
<div class="section-title">
<h2>Unsere Dienstleistungen</h2>
<p class="section-subtitle">Maßgeschneiderte Immobilienlösungen für Banken, Versicherungen und institutionelle Investoren</p>
</div>
<div class="services">
<div class="service-card">
<i class="fas fa-chart-line"></i>
<h3>Immobilien Verkauf</h3>
<p>Professionelle Vermarktung und Transaktionsabwicklung hochwertiger Anlageimmobilien mit Fokus auf renditestarke Objekte für institutionelle Investoren. Wir begleiten Sie durch den gesamten Akquisitionsprozess – von der Due Diligence bis zum notariellen Kaufvertrag. Alle Verfahren entsprechen den aktuellen EU-Regularien und gewährleisten höchste Rechtssicherheit.</p>
</div>
<div class="service-card">
<i class="fas fa-building"></i>
<h3>Immobilien Vermietung/Verwaltung</h3>
<p>Spezialisierte Vermietung und professionelle Verwaltung institutioneller Immobilienportfolios. Wir übernehmen das vollständige Objekt- und Mietermanagement unter Berücksichtigung aller relevanten EU- und nationalen Rechtsvorschriften. Unsere systematisierte Verwaltungsstruktur garantiert maximale Renditen bei gleichzeitiger Risikominimierung und vollständiger Compliance.</p>
</div>
<div class="service-card">
<i class="fas fa-city"></i>
<h3>Immobilien/Grundstücks Projektierung</h3>
<p>Umfassende Projektentwicklung von der Standortanalyse bis zur Fertigstellung. Wir identifizieren Grundstücke mit Entwicklungspotenzial, erstellen marktgerechte Nutzungskonzepte und begleiten den gesamten Projektierungsprozess gemäß den aktuellen EU-Nachhaltigkeitskriterien und Regularien. Unsere Projektierungen erfüllen sämtliche ESG-Anforderungen für institutionelle Investoren.</p>
</div>
</div>
</div>
</section>
<section id="about" class="about">
<div class="container">
<div class="section-title">
<h2>Über uns</h2>
</div>
<div class="about-content">
<div class="about-text">
<h3>Kamil Saylik - Ihr Experte für institutionelle Immobilieninvestitionen</h3>
<p>Als etablierter Immobilienexperte mit langjähriger Erfahrung in der Beratung institutioneller Investoren bieten wir umfassende Dienstleistungen im Bereich hochwertiger Immobilien- und Grundstückstransaktionen an. Unsere Expertise liegt in der Identifikation, Analyse und Vermittlung von renditestarken Anlageobjekten, die den hohen Anforderungen von Banken und institutionellen Anlegern entsprechen.</p>
<p>Unser Unternehmen handelt stets unter Einhaltung aller relevanten europäischen und nationalen Rechtsvorschriften, insbesondere der EU-Finanzmarktrichtlinie MiFID II, der Immobilienkredit-Richtlinie sowie der aktuellen ESG-Regularien. Wir garantieren vollständige Transparenz und Compliance in allen Geschäftsprozessen.</p>
<p>Mit profunder Marktkenntnis, analytischem Vorgehen und einem diskreten, auf Ihre individuellen Anlagebedürfnisse abgestimmten Service sind wir der ideale Partner für Ihre Immobilieninvestitionen in Oberhausen und der gesamten Region.</p>
</div>
<div class="about-image">
<img src="/api/placeholder/500/400?text=Büro+Saylik+Immobilien" alt="Büro von Saylik Immobilien">
</div>
</div>
</div>
</section>
<section id="network" class="network">
<div class="container">
<div class="section-title">
<h2>Unser Netzwerk</h2>
</div>
<div class="network-content">
<p>Im Laufe unserer langjährigen Tätigkeit haben wir ein umfangreiches Netzwerk aus renommierten Marktakteuren aufgebaut. Diese exzellenten Kontakte zu Projektentwicklern, Investoren, Banken, Notaren und anderen relevanten Stakeholdern erlauben uns, auch komplexe Transaktionen effizient und diskret abzuwickeln.</p>
<p>Durch unsere etablierten Beziehungen zu Finanzinstituten und institutionellen Anlegern können wir attraktive Investitionsmöglichkeiten frühzeitig identifizieren und unseren Kunden exklusiven Zugang zu Off-Market-Objekten mit überdurchschnittlichem Renditepotenzial bieten.</p>
<p>Unser Expertenkreis umfasst zudem Spezialisten für Baurecht, Steuerberatung und Finanzierung, wodurch wir eine ganzheitliche Betreuung während des gesamten Investitionsprozesses gewährleisten können.</p>
<div class="network-stats">
<div class="stat-item">
<div class="stat-number">23+</div>
<div class="stat-text">Jahre Erfahrung</div>
</div>
<div class="stat-item">
<div class="stat-number">50+</div>
<div class="stat-text">Institutionelle Partner</div>
</div>
<div class="stat-item">
<div class="stat-number">100+</div>
<div class="stat-text">Erfolgreiche Transaktionen</div>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<div class="section-title">
<h2>Kontakt</h2>
<p class="section-subtitle">Vereinbaren Sie einen persönlichen Beratungstermin</p>
</div>
<div class="contact-info">
<div class="contact-card">
<i class="fas fa-map-marker-alt"></i>
<h3>Geschäftsadresse</h3>
<p>Hoffmannstr. 10<br>46117 Oberhausen<br>Deutschland</p>
</div>
<div class="contact-card">
<i class="fas fa-phone"></i>
<h3>Telefon</h3>
<p><a href="tel:+4917693432002">+49 176 93432002</a></p> </div>
<div class="contact-card">
<i class="fas fa-envelope"></i>
<h3>E-Mail</h3>
<p><a href="mailto:info@saylik.immobilien">info@saylik.immobilien</a></p>
</div>
</div>
<div class="contact-form-container">
<form id="contactForm" action="mailto:info@saylik.immobilien" method="post" enctype="text/plain">
<div class="form-group">
<label for="name">Name / Unternehmen *</label>
<input type="text" id="name" name="name" class="form-control" required>
</div>
<div class="form-group">
<label for="email">E-Mail *</label>
<input type="email" id="email" name="email" class="form-control" required>
</div>
<div class="form-group">
<label for="phone">Telefon</label>
<input type="tel" id="phone" name="phone" class="form-control">
</div>
<div class="form-group">
<label for="subject">Betreff *</label>
<input type="text" id="subject" name="subject" class="form-control" required>
</div>
<div class="form-group">
<label for="message">Nachricht *</label>
<textarea id="message" name="message" class="form-control" required></textarea>
</div>
<div class="form-group">
<input type="checkbox" id="privacy" name="privacy" required style="margin-right: 5px; vertical-align: middle;">
<label for="privacy" style="display: inline; font-weight: normal;">Ich habe die <a href="datenschutz.html" target="_blank">Datenschutzerklärung</a> gelesen und akzeptiere diese *</label>
</div>
<button type="submit" class="form-btn">Nachricht senden</button>
</form>
</div>
</div>
</section>
<section class="cta">
<div class="container">
<h3>Suchen Sie nach renditestarken Immobilieninvestitionen?</h3>
<p>Nutzen Sie unsere langjährige Expertise und unser exzellentes Netzwerk für Ihre nächste Immobilieninvestition. Wir freuen uns auf das persönliche Gespräch mit Ihnen.</p>
<a href="#contact" class="cta-btn">Jetzt Kontakt aufnehmen</a>
</div>
</section>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-column">
<h3>Saylik Immobilien</h3>
<p>Spezialisiert auf hochwertige Immobilien- und Grundstückstransaktionen für institutionelle Investoren in Oberhausen und der Region.</p>
</div>
<div class="footer-column">
<h3>Dienstleistungen</h3>
<ul>
<li><a href="#services">Immobilien Verkauf</a></li>
<li><a href="#services">Immobilien Vermietung/Verwaltung</a></li>
<li><a href="#services">Immobilien/Grundstücks Projektierung</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Kontakt</h3>
<address>
Hoffmannstr. 10<br>
46117 Oberhausen<br>
Deutschland<br><br>
Tel: <a href="tel:+4917693432002">+49 176 93432002</a><br>
E-Mail: <a href="mailto:info@saylik.immobilien">info@saylik.immobilien</a>
</address>
</div>
<div class="footer-column">
<h3>Rechtliches</h3>
<ul>
<li><a href="impressum.html">Impressum</a></li>
<li><a href="datenschutz.html">Datenschutzerklärung</a></li>
<li><a href="agb.html">AGB</a></li>
<li><a href="widerruf.html">Widerrufsbelehrung</a></li>
<li><a href="cookie-richtlinie.html">Cookie-Richtlinie</a></li>
</ul>
</div>
</div>
<div class="copyright">
<p>© 2025 Saylik Immobilien - Alle Rechte vorbehalten</p>
<div class="legal-links">
<a href="impressum.html">Impressum</a>
<a href="datenschutz.html">Datenschutzerklärung</a>
<a href="agb.html">AGB</a>
<a href="cookie-richtlinie.html">Cookie-Einstellungen</a>
</div>
</div>
</div>
</footer>
<script>
// Kleines Script für Header-Transparenz beim Scrollen
window.addEventListener('scroll', function() {
const header = document.querySelector('header');
if (window.scrollY > 50) { // Schaltet früher um
header.style.backgroundColor = 'rgba(255, 255, 255, 0.95)';
header.style.boxShadow = '0 2px 10px rgba(0,0,0,0.1)';
} else {
header.style.backgroundColor = 'rgba(255, 255, 255, 0.9)';
header.style.boxShadow = '0 2px 5px rgba(0,0,0,0.1)';
}
});
// Optional: Smooth Scrolling für Ankerlinks
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
if(targetElement) {
// Berücksichtigt die Höhe des fixierten Headers
const headerOffset = document.querySelector('header').offsetHeight;
const elementPosition = targetElement.getBoundingClientRect().top;
const offsetPosition = elementPosition + window.pageYOffset - headerOffset;
window.scrollTo({
top: offsetPosition,
behavior: "smooth"
});
}
});
});
</script>
</body>
</html>