1051 lines
38 KiB
HTML
1051 lines
38 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<meta name="description" content="Dr. med. Carina Kautsch – Ärztin für Allgemeinmedizin in 1160 Wien. Öffnungszeiten, Leistungen und Kontakt." />
|
||
<title>Dr. Carina Kautsch – Allgemeinmedizin Wien</title>
|
||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@400;500;600&display=swap" rel="stylesheet" />
|
||
<style>
|
||
/* ─── Reset & Base ─────────────────────────────────────── */
|
||
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||
html { scroll-behavior: smooth; }
|
||
body {
|
||
font-family: 'DM Sans', sans-serif;
|
||
font-size: 18px;
|
||
color: #222;
|
||
background: #fff;
|
||
line-height: 1.6;
|
||
}
|
||
a { color: inherit; text-decoration: none; }
|
||
img { display: block; max-width: 100%; }
|
||
|
||
/* ─── Variables ─────────────────────────────────────────── */
|
||
:root {
|
||
--red: #C8102E;
|
||
--red-dk: #a00d24;
|
||
--bg-alt: #f7f7f7;
|
||
--shadow: 0 6px 28px rgba(0,0,0,.14);
|
||
--radius: 12px;
|
||
}
|
||
|
||
/* ─── Animations ────────────────────────────────────────── */
|
||
@keyframes fadeUp {
|
||
from { opacity: 0; transform: translateY(24px); }
|
||
to { opacity: 1; transform: translateY(0); }
|
||
}
|
||
@keyframes floatLogo {
|
||
0%, 100% { transform: translateY(0); }
|
||
50% { transform: translateY(-12px); }
|
||
}
|
||
|
||
/* ─── Header / Nav ──────────────────────────────────────── */
|
||
header {
|
||
position: sticky;
|
||
top: 0;
|
||
z-index: 100;
|
||
background: #fff;
|
||
border-bottom: 1px solid #eee;
|
||
box-shadow: 0 2px 12px rgba(0,0,0,.07);
|
||
}
|
||
nav {
|
||
max-width: 1100px;
|
||
margin: 0 auto;
|
||
padding: 0 24px;
|
||
height: 68px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
gap: 16px;
|
||
}
|
||
.nav-logo img { height: 42px; width: auto; }
|
||
.nav-links {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 28px;
|
||
list-style: none;
|
||
}
|
||
.nav-links a {
|
||
font-size: 15px;
|
||
font-weight: 500;
|
||
color: #444;
|
||
transition: color .2s;
|
||
}
|
||
.nav-links a:hover { color: var(--red); }
|
||
.nav-phone {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
background: var(--red);
|
||
color: #fff;
|
||
font-weight: 600;
|
||
font-size: 15px;
|
||
padding: 9px 18px;
|
||
border-radius: 8px;
|
||
white-space: nowrap;
|
||
transition: background .2s;
|
||
}
|
||
.nav-phone:hover { background: var(--red-dk); }
|
||
|
||
/* Hamburger */
|
||
.hamburger {
|
||
display: none;
|
||
flex-direction: column;
|
||
gap: 5px;
|
||
cursor: pointer;
|
||
background: none;
|
||
border: none;
|
||
padding: 4px;
|
||
}
|
||
.hamburger span {
|
||
display: block;
|
||
width: 26px;
|
||
height: 2px;
|
||
background: #333;
|
||
border-radius: 2px;
|
||
transition: all .3s;
|
||
}
|
||
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
|
||
.hamburger.open span:nth-child(2) { opacity: 0; }
|
||
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
|
||
|
||
.mobile-menu {
|
||
display: none;
|
||
flex-direction: column;
|
||
background: #fff;
|
||
border-top: 1px solid #eee;
|
||
padding: 16px 24px 20px;
|
||
gap: 16px;
|
||
}
|
||
.mobile-menu.open { display: flex; }
|
||
.mobile-menu a {
|
||
font-size: 17px;
|
||
font-weight: 500;
|
||
color: #333;
|
||
padding: 6px 0;
|
||
border-bottom: 1px solid #f0f0f0;
|
||
}
|
||
.mobile-menu a:last-child { border-bottom: none; }
|
||
.mobile-menu .nav-phone {
|
||
margin-top: 4px;
|
||
justify-content: center;
|
||
}
|
||
|
||
/* ─── Section Helpers ───────────────────────────────────── */
|
||
section { padding: 72px 24px; }
|
||
section.alt { background: var(--bg-alt); }
|
||
.section-inner {
|
||
max-width: 1100px;
|
||
margin: 0 auto;
|
||
}
|
||
.section-title {
|
||
font-family: 'Cormorant Garamond', serif;
|
||
font-size: clamp(2rem, 4vw, 2.8rem);
|
||
font-weight: 700;
|
||
color: var(--red);
|
||
margin-bottom: 10px;
|
||
}
|
||
.section-sub {
|
||
font-size: 16px;
|
||
color: #666;
|
||
margin-bottom: 40px;
|
||
}
|
||
|
||
/* ─── Hero ──────────────────────────────────────────────── */
|
||
#hero {
|
||
padding: 80px 24px 60px;
|
||
position: relative;
|
||
overflow: hidden;
|
||
min-height: 520px;
|
||
}
|
||
.hero-watermark {
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 50%;
|
||
transform: translate(-50%, -50%);
|
||
width: 480px;
|
||
opacity: .04;
|
||
pointer-events: none;
|
||
user-select: none;
|
||
}
|
||
.hero-inner {
|
||
max-width: 1100px;
|
||
margin: 0 auto;
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 48px;
|
||
position: relative;
|
||
}
|
||
.hero-text {
|
||
flex: 1;
|
||
animation: fadeUp .7s ease both;
|
||
}
|
||
.hero-text h1 {
|
||
font-family: 'Cormorant Garamond', serif;
|
||
font-size: clamp(2.4rem, 5vw, 3.6rem);
|
||
font-weight: 700;
|
||
line-height: 1.15;
|
||
color: #111;
|
||
margin-bottom: 12px;
|
||
}
|
||
.hero-text h1 span { color: var(--red); }
|
||
.hero-text p {
|
||
font-size: 18px;
|
||
color: #555;
|
||
margin-bottom: 32px;
|
||
max-width: 480px;
|
||
}
|
||
.hero-cta {
|
||
display: flex;
|
||
gap: 14px;
|
||
flex-wrap: wrap;
|
||
}
|
||
.btn {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 13px 26px;
|
||
border-radius: 9px;
|
||
font-size: 16px;
|
||
font-weight: 600;
|
||
transition: all .2s;
|
||
cursor: pointer;
|
||
border: none;
|
||
}
|
||
.btn-primary { background: var(--red); color: #fff; }
|
||
.btn-primary:hover { background: var(--red-dk); transform: translateY(-2px); }
|
||
.btn-outline { background: transparent; color: var(--red); border: 2px solid var(--red); }
|
||
.btn-outline:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
|
||
|
||
.hero-logo-wrap {
|
||
flex-shrink: 0;
|
||
animation: fadeUp .7s .2s ease both;
|
||
}
|
||
.hero-logo-wrap img {
|
||
width: 280px;
|
||
animation: floatLogo 4s ease-in-out infinite;
|
||
}
|
||
|
||
.hero-cards {
|
||
max-width: 1100px;
|
||
margin: 48px auto 0;
|
||
display: grid;
|
||
grid-template-columns: repeat(4, 1fr);
|
||
gap: 16px;
|
||
animation: fadeUp .7s .35s ease both;
|
||
}
|
||
.hero-card {
|
||
background: var(--bg-alt);
|
||
border-radius: var(--radius);
|
||
padding: 20px 18px;
|
||
display: flex;
|
||
align-items: flex-start;
|
||
gap: 14px;
|
||
}
|
||
.hero-card-icon { font-size: 26px; line-height: 1; flex-shrink: 0; }
|
||
.hero-card-label {
|
||
font-size: 13px;
|
||
color: #888;
|
||
font-weight: 500;
|
||
text-transform: uppercase;
|
||
letter-spacing: .04em;
|
||
}
|
||
.hero-card-value {
|
||
font-size: 15px;
|
||
font-weight: 600;
|
||
color: #222;
|
||
margin-top: 2px;
|
||
}
|
||
|
||
/* ─── Öffnungszeiten ────────────────────────────────────── */
|
||
.hours-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(2, 1fr);
|
||
gap: 16px;
|
||
max-width: 600px;
|
||
}
|
||
.hour-card {
|
||
background: #fff;
|
||
border-radius: var(--radius);
|
||
box-shadow: var(--shadow);
|
||
border-left: 4px solid var(--red);
|
||
padding: 18px 22px;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
transition: transform .2s, box-shadow .2s;
|
||
}
|
||
.hour-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,.17); }
|
||
.hour-day { font-weight: 600; color: #333; }
|
||
.hour-time { color: var(--red); font-weight: 600; font-size: 15px; }
|
||
.hour-closed { color: #aaa; font-style: italic; }
|
||
|
||
/* ─── Schließzeiten ─────────────────────────────────────── */
|
||
#schliesszeiten .no-closures {
|
||
background: #fff;
|
||
border-radius: var(--radius);
|
||
padding: 28px 28px;
|
||
border: 2px dashed #ddd;
|
||
color: #888;
|
||
font-style: italic;
|
||
max-width: 480px;
|
||
}
|
||
.closure-cards {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
||
gap: 20px;
|
||
}
|
||
.closure-card {
|
||
background: #fff;
|
||
border-radius: var(--radius);
|
||
box-shadow: var(--shadow);
|
||
border-top: 4px solid var(--red);
|
||
padding: 22px 24px;
|
||
}
|
||
.closure-dates {
|
||
font-family: 'Cormorant Garamond', serif;
|
||
font-size: 1.4rem;
|
||
font-weight: 700;
|
||
color: var(--red);
|
||
margin-bottom: 4px;
|
||
}
|
||
.closure-reason {
|
||
font-weight: 600;
|
||
color: #333;
|
||
margin-bottom: 12px;
|
||
}
|
||
.closure-deputy-label {
|
||
font-size: 13px;
|
||
text-transform: uppercase;
|
||
letter-spacing: .04em;
|
||
color: #999;
|
||
margin-bottom: 6px;
|
||
}
|
||
.closure-deputy-name { font-weight: 600; color: #222; margin-bottom: 2px; }
|
||
.closure-deputy-detail { font-size: 15px; color: #555; line-height: 1.5; }
|
||
|
||
/* ─── Leistungen ────────────────────────────────────────── */
|
||
.leistungen-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(3, 1fr);
|
||
gap: 20px;
|
||
}
|
||
.leistung-card {
|
||
background: #fff;
|
||
border-radius: var(--radius);
|
||
box-shadow: 0 3px 18px rgba(0,0,0,.08);
|
||
padding: 28px 24px;
|
||
transition: transform .2s, box-shadow .2s;
|
||
}
|
||
.leistung-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.13); }
|
||
.leistung-icon { font-size: 2.2rem; margin-bottom: 14px; }
|
||
.leistung-title { font-weight: 700; font-size: 17px; margin-bottom: 8px; color: #222; }
|
||
.leistung-desc { font-size: 15px; color: #666; line-height: 1.55; }
|
||
|
||
/* ─── Aktuelles ─────────────────────────────────────────── */
|
||
.aktuelles-list {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 16px;
|
||
max-width: 780px;
|
||
}
|
||
.aktuell-item {
|
||
background: #fff;
|
||
border-radius: var(--radius);
|
||
box-shadow: 0 3px 18px rgba(0,0,0,.08);
|
||
padding: 22px 26px;
|
||
border-left: 4px solid var(--red);
|
||
}
|
||
.aktuell-title { font-weight: 700; color: #222; margin-bottom: 6px; font-size: 17px; }
|
||
.aktuell-body { font-size: 15px; color: #555; line-height: 1.6; }
|
||
|
||
/* ─── Kontakt ────────────────────────────────────────────── */
|
||
.kontakt-inner {
|
||
display: grid;
|
||
grid-template-columns: 1fr 1fr;
|
||
gap: 48px;
|
||
align-items: start;
|
||
}
|
||
.kontakt-rows { display: flex; flex-direction: column; gap: 18px; }
|
||
.kontakt-row {
|
||
display: flex;
|
||
align-items: flex-start;
|
||
gap: 16px;
|
||
}
|
||
.kontakt-icon {
|
||
font-size: 22px;
|
||
flex-shrink: 0;
|
||
margin-top: 2px;
|
||
}
|
||
.kontakt-label { font-size: 13px; color: #999; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 2px; }
|
||
.kontakt-value { font-size: 17px; font-weight: 500; color: #222; }
|
||
.kontakt-value a:hover { color: var(--red); }
|
||
.map-wrap {
|
||
border-radius: var(--radius);
|
||
overflow: hidden;
|
||
box-shadow: var(--shadow);
|
||
}
|
||
.map-wrap iframe {
|
||
width: 100%;
|
||
height: 360px;
|
||
border: 0;
|
||
display: block;
|
||
}
|
||
|
||
/* ─── Footer ────────────────────────────────────────────── */
|
||
footer {
|
||
background: #1a1a1a;
|
||
color: #aaa;
|
||
padding: 36px 24px;
|
||
text-align: center;
|
||
}
|
||
.footer-inner {
|
||
max-width: 1100px;
|
||
margin: 0 auto;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
gap: 16px;
|
||
}
|
||
footer img { height: 38px; filter: brightness(0) invert(1); opacity: .7; }
|
||
footer p { font-size: 14px; }
|
||
footer a { color: #ccc; }
|
||
footer a:hover { color: #fff; }
|
||
|
||
/* ─── Impressum / Datenschutz ──────────────────────────── */
|
||
.legal-section h3 {
|
||
font-family: 'Cormorant Garamond', serif;
|
||
font-size: 1.4rem;
|
||
font-weight: 700;
|
||
color: var(--red);
|
||
margin: 32px 0 10px;
|
||
}
|
||
.legal-section h3:first-of-type { margin-top: 0; }
|
||
.legal-section p, .legal-section li {
|
||
font-size: 16px;
|
||
color: #444;
|
||
line-height: 1.7;
|
||
margin-bottom: 8px;
|
||
}
|
||
.legal-section ul {
|
||
padding-left: 20px;
|
||
margin-bottom: 12px;
|
||
}
|
||
.legal-section a { color: var(--red); text-decoration: underline; }
|
||
.legal-section .legal-box {
|
||
background: #fff;
|
||
border-radius: var(--radius);
|
||
border-left: 4px solid var(--red);
|
||
padding: 20px 24px;
|
||
margin-top: 8px;
|
||
}
|
||
body.large-font .legal-section p,
|
||
body.large-font .legal-section li { font-size: 18px; }
|
||
|
||
/* ─── Font Size Toggle ──────────────────────────────────── */
|
||
.font-toggle-wrap {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 4px;
|
||
flex-shrink: 0;
|
||
}
|
||
.font-toggle-wrap button {
|
||
background: none;
|
||
border: 2px solid #ddd;
|
||
border-radius: 7px;
|
||
cursor: pointer;
|
||
font-family: 'DM Sans', sans-serif;
|
||
font-weight: 700;
|
||
color: #666;
|
||
line-height: 1;
|
||
transition: all .2s;
|
||
padding: 5px 9px;
|
||
}
|
||
.font-toggle-wrap button.active {
|
||
border-color: var(--red);
|
||
color: var(--red);
|
||
background: #fff0f2;
|
||
}
|
||
.font-toggle-wrap button:first-child { font-size: 14px; }
|
||
.font-toggle-wrap button:last-child { font-size: 18px; }
|
||
|
||
/* Large font overrides */
|
||
body.large-font { font-size: 22px; }
|
||
body.large-font .nav-links a { font-size: 17px; }
|
||
body.large-font .nav-phone { font-size: 17px; }
|
||
body.large-font .section-title { font-size: clamp(2.2rem, 4vw, 3.2rem); }
|
||
body.large-font .hero-text h1 { font-size: clamp(2.8rem, 5vw, 4rem); }
|
||
body.large-font .hero-text p { font-size: 20px; }
|
||
body.large-font .leistung-title { font-size: 19px; }
|
||
body.large-font .leistung-desc { font-size: 17px; }
|
||
body.large-font .aktuell-title { font-size: 19px; }
|
||
body.large-font .aktuell-body { font-size: 17px; }
|
||
body.large-font .hour-day { font-size: 18px; }
|
||
body.large-font .hour-time { font-size: 17px; }
|
||
body.large-font .kontakt-value { font-size: 19px; }
|
||
body.large-font .hero-card-value { font-size: 17px; }
|
||
body.large-font .closure-deputy-detail { font-size: 17px; }
|
||
|
||
/* ─── Responsive ────────────────────────────────────────── */
|
||
@media (max-width: 900px) {
|
||
.leistungen-grid { grid-template-columns: repeat(2, 1fr); }
|
||
.hero-cards { grid-template-columns: repeat(2, 1fr); }
|
||
.kontakt-inner { grid-template-columns: 1fr; }
|
||
}
|
||
@media (max-width: 768px) {
|
||
.nav-links, .nav-phone { display: none; }
|
||
.hamburger { display: flex; }
|
||
.hero-inner { flex-direction: column-reverse; text-align: center; }
|
||
.hero-logo-wrap img { width: 180px; margin: 0 auto; }
|
||
.hero-cta { justify-content: center; }
|
||
.hero-text p { margin: 0 auto 32px; }
|
||
.hours-grid { grid-template-columns: 1fr; }
|
||
}
|
||
@media (max-width: 540px) {
|
||
.hero-cards { grid-template-columns: 1fr; }
|
||
.leistungen-grid { grid-template-columns: 1fr; }
|
||
section { padding: 52px 16px; }
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
|
||
<!-- ═══════════════════════════════════════════════════════════
|
||
SCHLIESSZEITEN — edit only this array to manage holidays
|
||
═══════════════════════════════════════════════════════════ -->
|
||
<script>
|
||
const SCHLIESSZEITEN = [
|
||
{
|
||
dates: "30.3. – 3.4.",
|
||
reason: "Karwoche",
|
||
deputy: "Dr. Irene Lachawitz",
|
||
deputyAddr: "1160 Wien, Neulerchenfelderstraße 14/6",
|
||
deputyPhone: "01 / 406 31 04",
|
||
deputyHours: "Mo & Mi 8–12 Uhr · Di & Do 14–18 Uhr · Fr 12–16 Uhr"
|
||
},
|
||
// Add more closures here:
|
||
// {
|
||
// dates: "DD.MM. – DD.MM.",
|
||
// reason: "Urlaub",
|
||
// deputy: "Dr. Vorname Nachname",
|
||
// deputyAddr: "1160 Wien, Musterstraße 1",
|
||
// deputyPhone: "01 / 000 00 00",
|
||
// deputyHours: "Mo–Fr 8–12 Uhr"
|
||
// },
|
||
];
|
||
</script>
|
||
|
||
<!-- ─── Header ───────────────────────────────────────────── -->
|
||
<header>
|
||
<nav>
|
||
<a class="nav-logo" href="#hero">
|
||
<img src="/logo.png" alt="meineOrdi Logo" />
|
||
</a>
|
||
<ul class="nav-links">
|
||
<li><a href="#oeffnungszeiten">Öffnungszeiten</a></li>
|
||
<li><a href="#leistungen">Leistungen</a></li>
|
||
<li><a href="#aktuelles">Aktuelles</a></li>
|
||
<li><a href="#kontakt">Kontakt</a></li>
|
||
</ul>
|
||
<div class="font-toggle-wrap" aria-label="Schriftgröße">
|
||
<button id="font-normal" title="Normale Schriftgröße">A</button>
|
||
<button id="font-large" title="Große Schriftgröße">A+</button>
|
||
</div>
|
||
<a class="nav-phone" href="tel:+4314931773">
|
||
📞 +43 1 493 17 73
|
||
</a>
|
||
<button class="hamburger" id="hamburger" aria-label="Menü öffnen">
|
||
<span></span><span></span><span></span>
|
||
</button>
|
||
</nav>
|
||
<div class="mobile-menu" id="mobile-menu">
|
||
<a href="#oeffnungszeiten">Öffnungszeiten</a>
|
||
<a href="#leistungen">Leistungen</a>
|
||
<a href="#aktuelles">Aktuelles</a>
|
||
<a href="#kontakt">Kontakt</a>
|
||
<a class="nav-phone" href="tel:+4314931773">📞 +43 1 493 17 73</a>
|
||
<div class="font-toggle-wrap" style="justify-content:center;">
|
||
<button id="font-normal-mobile" title="Normale Schriftgröße">A</button>
|
||
<button id="font-large-mobile" title="Große Schriftgröße">A+</button>
|
||
</div>
|
||
</div>
|
||
</header>
|
||
|
||
<!-- ─── Hero ─────────────────────────────────────────────── -->
|
||
<section id="hero">
|
||
<img class="hero-watermark"
|
||
src="/logo.png"
|
||
alt="" aria-hidden="true" />
|
||
<div class="hero-inner">
|
||
<div class="hero-text">
|
||
<h1>Ihre Ärztin für<br><span>Allgemeinmedizin</span><br>in Wien</h1>
|
||
<p>Dr. med. Carina Kautsch – persönliche, umfassende medizinische Betreuung in 1160 Wien.</p>
|
||
<div class="hero-cta">
|
||
<a class="btn btn-primary" href="tel:+4314931773">📞 Jetzt anrufen</a>
|
||
<a class="btn btn-outline" href="#oeffnungszeiten">Öffnungszeiten</a>
|
||
</div>
|
||
</div>
|
||
<div class="hero-logo-wrap">
|
||
<img src="/logo.png" alt="meineOrdi" />
|
||
</div>
|
||
</div>
|
||
|
||
<div class="hero-cards">
|
||
<div class="hero-card">
|
||
<div class="hero-card-icon">📍</div>
|
||
<div>
|
||
<div class="hero-card-label">Adresse</div>
|
||
<div class="hero-card-value">Pfenninggeldgasse 1B/3<br>A-1160 Wien</div>
|
||
</div>
|
||
</div>
|
||
<div class="hero-card">
|
||
<div class="hero-card-icon">📞</div>
|
||
<div>
|
||
<div class="hero-card-label">Telefon</div>
|
||
<div class="hero-card-value">+43 / 1 / 493 17 73</div>
|
||
</div>
|
||
</div>
|
||
<div class="hero-card">
|
||
<div class="hero-card-icon">✉️</div>
|
||
<div>
|
||
<div class="hero-card-label">E-Mail</div>
|
||
<div class="hero-card-value">info@meineordi.at</div>
|
||
</div>
|
||
</div>
|
||
<div class="hero-card">
|
||
<div class="hero-card-icon">🕐</div>
|
||
<div>
|
||
<div class="hero-card-label">Heute</div>
|
||
<div class="hero-card-value" id="todays-hours">–</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- ─── Öffnungszeiten ────────────────────────────────────── -->
|
||
<section id="oeffnungszeiten" class="alt">
|
||
<div class="section-inner">
|
||
<h2 class="section-title">Öffnungszeiten</h2>
|
||
<p class="section-sub">Bitte vereinbaren Sie telefonisch einen Termin.</p>
|
||
<div class="hours-grid">
|
||
<div class="hour-card">
|
||
<span class="hour-day">Montag</span>
|
||
<span class="hour-time">14:00 – 19:00</span>
|
||
</div>
|
||
<div class="hour-card">
|
||
<span class="hour-day">Dienstag</span>
|
||
<span class="hour-time">14:00 – 18:00</span>
|
||
</div>
|
||
<div class="hour-card">
|
||
<span class="hour-day">Mittwoch</span>
|
||
<span class="hour-time">07:30 – 11:30</span>
|
||
</div>
|
||
<div class="hour-card">
|
||
<span class="hour-day">Donnerstag</span>
|
||
<span class="hour-time">13:00 – 17:00</span>
|
||
</div>
|
||
<div class="hour-card">
|
||
<span class="hour-day">Freitag</span>
|
||
<span class="hour-time">09:00 – 12:00</span>
|
||
</div>
|
||
<div class="hour-card">
|
||
<span class="hour-day">Sa / So</span>
|
||
<span class="hour-closed">geschlossen</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- ─── Schließzeiten ─────────────────────────────────────── -->
|
||
<section id="schliesszeiten">
|
||
<div class="section-inner">
|
||
<h2 class="section-title">Schließzeiten</h2>
|
||
<p class="section-sub">Vertretung während der Abwesenheit</p>
|
||
<div id="closure-container"></div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- ─── Leistungen ────────────────────────────────────────── -->
|
||
<section id="leistungen" class="alt">
|
||
<div class="section-inner">
|
||
<h2 class="section-title">Leistungen</h2>
|
||
<p class="section-sub">Umfassende allgemeinmedizinische Versorgung für die ganze Familie.</p>
|
||
<div class="leistungen-grid">
|
||
<div class="leistung-card">
|
||
<div class="leistung-icon">🩺</div>
|
||
<div class="leistung-title">Allgemeine Untersuchung</div>
|
||
<div class="leistung-desc">Vorsorgeuntersuchungen, Gesundencheck und allgemeine Diagnostik.</div>
|
||
</div>
|
||
<div class="leistung-card">
|
||
<div class="leistung-icon">💊</div>
|
||
<div class="leistung-title">Rezepte & Überweisungen</div>
|
||
<div class="leistung-desc">Ausstellung von Rezepten, Überweisungen und ärztlichen Attesten.</div>
|
||
</div>
|
||
<div class="leistung-card">
|
||
<div class="leistung-icon">🩸</div>
|
||
<div class="leistung-title">Laboruntersuchungen</div>
|
||
<div class="leistung-desc">Blutabnahme und Auswertung gängiger Laborparameter direkt in der Ordination.</div>
|
||
</div>
|
||
<div class="leistung-card">
|
||
<div class="leistung-icon">❤️</div>
|
||
<div class="leistung-title">Chronische Erkrankungen</div>
|
||
<div class="leistung-desc">Langzeitbetreuung bei Diabetes, Bluthochdruck, Schilddrüsenerkrankungen u. v. m.</div>
|
||
</div>
|
||
<div class="leistung-card">
|
||
<div class="leistung-icon">🌡️</div>
|
||
<div class="leistung-title">Akutbehandlung</div>
|
||
<div class="leistung-desc">Behandlung akuter Erkrankungen und Verletzungen, Krankmeldungen.</div>
|
||
</div>
|
||
<div class="leistung-card">
|
||
<div class="leistung-icon">💉</div>
|
||
<div class="leistung-title">Impfungen</div>
|
||
<div class="leistung-desc">Reise- und Standardimpfungen nach aktuellem Impfplan.</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- ─── Aktuelles ─────────────────────────────────────────── -->
|
||
<section id="aktuelles">
|
||
<div class="section-inner">
|
||
<h2 class="section-title">Aktuelles</h2>
|
||
<p class="section-sub">Wichtige Hinweise aus der Ordination</p>
|
||
<div class="aktuelles-list">
|
||
<div class="aktuell-item">
|
||
<div class="aktuell-title">Rezeptbestellung</div>
|
||
<div class="aktuell-body">
|
||
Rezepte für Dauermedikamente können telefonisch oder per E-Mail bestellt werden.
|
||
Bitte geben Sie Name, Geburtsdatum und die gewünschten Medikamente an.
|
||
Die Abholung ist nach Vereinbarung möglich.
|
||
</div>
|
||
</div>
|
||
<div class="aktuell-item">
|
||
<div class="aktuell-title">Diabetiker-Bedarf</div>
|
||
<div class="aktuell-body">
|
||
Für die Verordnung von Diabetes-Hilfsmitteln (Teststreifen, Insulinnadeln etc.)
|
||
ist ein aktuelles Laborbefund erforderlich. Bitte rechtzeitig einen Termin vereinbaren.
|
||
</div>
|
||
</div>
|
||
<div class="aktuell-item">
|
||
<div class="aktuell-title">Krankmeldungen</div>
|
||
<div class="aktuell-body">
|
||
Krankmeldungen werden nur nach persönlicher Untersuchung ausgestellt.
|
||
Telefonische Krankschreibungen sind leider nicht möglich.
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- ─── Kontakt & Standort ────────────────────────────────── -->
|
||
<section id="kontakt" class="alt">
|
||
<div class="section-inner">
|
||
<h2 class="section-title">Kontakt & Standort</h2>
|
||
<p class="section-sub">Wir freuen uns auf Ihren Besuch.</p>
|
||
<div class="kontakt-inner">
|
||
<div class="kontakt-rows">
|
||
<div class="kontakt-row">
|
||
<div class="kontakt-icon">📍</div>
|
||
<div>
|
||
<div class="kontakt-label">Adresse</div>
|
||
<div class="kontakt-value">Pfenninggeldgasse 1B/3<br>A-1160 Wien</div>
|
||
</div>
|
||
</div>
|
||
<div class="kontakt-row">
|
||
<div class="kontakt-icon">📞</div>
|
||
<div>
|
||
<div class="kontakt-label">Telefon</div>
|
||
<div class="kontakt-value"><a href="tel:+4314931773">+43 / 1 / 493 17 73</a></div>
|
||
</div>
|
||
</div>
|
||
<div class="kontakt-row">
|
||
<div class="kontakt-icon">✉️</div>
|
||
<div>
|
||
<div class="kontakt-label">E-Mail</div>
|
||
<div class="kontakt-value"><a href="mailto:info@meineordi.at">info@meineordi.at</a></div>
|
||
</div>
|
||
</div>
|
||
<div class="kontakt-row">
|
||
<div class="kontakt-icon">👩⚕️</div>
|
||
<div>
|
||
<div class="kontakt-label">Ärztin</div>
|
||
<div class="kontakt-value">Dr. med. Carina Kautsch<br>Ärztin für Allgemeinmedizin</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="map-wrap">
|
||
<iframe
|
||
src="https://maps.google.com/maps?q=Pfenninggeldgasse+1B%2F3,+1160+Wien,+Austria&t=&z=16&ie=UTF8&iwloc=&output=embed"
|
||
title="Standort der Ordination"
|
||
loading="lazy"
|
||
allowfullscreen
|
||
referrerpolicy="no-referrer-when-downgrade">
|
||
</iframe>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- ─── Impressum ────────────────────────────────────────── -->
|
||
<section id="impressum">
|
||
<div class="section-inner legal-section">
|
||
<h2 class="section-title">Impressum</h2>
|
||
<p class="section-sub">Angaben gemäß §5 ECG und §25 MedienG</p>
|
||
|
||
<h3>Diensteanbieter</h3>
|
||
<div class="legal-box">
|
||
<p>
|
||
<strong>Dr. med. Carina Kautsch</strong><br>
|
||
Ärztin für Allgemeinmedizin<br>
|
||
Pfenninggeldgasse 1B/3<br>
|
||
A-1160 Wien<br>
|
||
Österreich
|
||
</p>
|
||
<p>
|
||
Telefon: <a href="tel:+4314931773">+43 / 1 / 493 17 73</a><br>
|
||
E-Mail: <a href="mailto:info@meineordi.at">info@meineordi.at</a>
|
||
</p>
|
||
</div>
|
||
|
||
<h3>Berufsbezeichnung und Berufsrecht</h3>
|
||
<p>
|
||
Berufsbezeichnung: <strong>Ärztin für Allgemeinmedizin</strong><br>
|
||
Verliehen in: Österreich<br>
|
||
Berufsrecht: Ärztegesetz 1998 (ÄrzteG 1998) –
|
||
<a href="https://www.ris.bka.gv.at" target="_blank" rel="noopener">www.ris.bka.gv.at</a>
|
||
</p>
|
||
|
||
<h3>Aufsichtsbehörde / Kammer</h3>
|
||
<p>
|
||
Ärztekammer Wien<br>
|
||
Weihburggasse 10–12, 1010 Wien<br>
|
||
<a href="https://www.aekwien.at" target="_blank" rel="noopener">www.aekwien.at</a>
|
||
</p>
|
||
|
||
<h3>Haftungsausschluss</h3>
|
||
<p>
|
||
Die Inhalte dieser Website wurden mit größtmöglicher Sorgfalt erstellt. Für die Richtigkeit,
|
||
Vollständigkeit und Aktualität der Inhalte wird jedoch keine Gewähr übernommen.
|
||
Diese Website enthält keine medizinischen Diagnosen oder Therapieempfehlungen.
|
||
Im Krankheitsfall wenden Sie sich bitte an eine Ärztin oder einen Arzt.
|
||
</p>
|
||
|
||
<h3>Urheberrecht</h3>
|
||
<p>
|
||
Die durch den Seitenbetreiber erstellten Inhalte und Werke auf dieser Website unterliegen
|
||
dem österreichischen Urheberrecht. Die Vervielfältigung, Bearbeitung, Verbreitung und
|
||
jede Art der Verwertung außerhalb der Grenzen des Urheberrechts bedürfen der schriftlichen
|
||
Zustimmung des jeweiligen Autors bzw. Erstellers.
|
||
</p>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- ─── Datenschutz ───────────────────────────────────────── -->
|
||
<section id="datenschutz" class="alt">
|
||
<div class="section-inner legal-section">
|
||
<h2 class="section-title">Datenschutzerklärung</h2>
|
||
<p class="section-sub">Gemäß DSGVO (EU 2016/679) und DSG 2018</p>
|
||
|
||
<h3>Verantwortlicher</h3>
|
||
<div class="legal-box">
|
||
<p>
|
||
<strong>Dr. med. Carina Kautsch</strong><br>
|
||
Pfenninggeldgasse 1B/3, A-1160 Wien<br>
|
||
E-Mail: <a href="mailto:info@meineordi.at">info@meineordi.at</a><br>
|
||
Telefon: <a href="tel:+4314931773">+43 / 1 / 493 17 73</a>
|
||
</p>
|
||
</div>
|
||
|
||
<h3>Allgemeines zur Datenverarbeitung</h3>
|
||
<p>
|
||
Wir nehmen den Schutz Ihrer persönlichen Daten sehr ernst. Diese Website erhebt und
|
||
verarbeitet personenbezogene Daten nur im technisch notwendigen Umfang und ausschließlich
|
||
auf Basis der geltenden Rechtsvorschriften (DSGVO, DSG 2018).
|
||
</p>
|
||
|
||
<h3>Server-Logfiles</h3>
|
||
<p>
|
||
Beim Aufruf dieser Website werden durch den Webserver automatisch folgende Daten
|
||
in sogenannten Server-Logfiles gespeichert:
|
||
</p>
|
||
<ul>
|
||
<li>IP-Adresse des anfragenden Geräts</li>
|
||
<li>Datum und Uhrzeit des Zugriffs</li>
|
||
<li>Name und URL der abgerufenen Datei</li>
|
||
<li>Browsertyp und -version, Betriebssystem</li>
|
||
<li>Referrer-URL (zuvor besuchte Seite)</li>
|
||
</ul>
|
||
<p>
|
||
<strong>Rechtsgrundlage:</strong> Art. 6 Abs. 1 lit. f DSGVO (berechtigtes Interesse
|
||
an der Sicherheit und dem ordnungsgemäßen Betrieb der Website).<br>
|
||
<strong>Speicherdauer:</strong> Die Logfiles werden nach spätestens 30 Tagen gelöscht.
|
||
</p>
|
||
|
||
<h3>Kontaktaufnahme</h3>
|
||
<p>
|
||
Wenn Sie uns per Telefon oder E-Mail kontaktieren, werden Ihre übermittelten Daten
|
||
(Name, E-Mail-Adresse, Inhalt Ihrer Anfrage) zum Zweck der Bearbeitung Ihrer Anfrage
|
||
und für den Fall von Anschlussfragen gespeichert.<br>
|
||
<strong>Rechtsgrundlage:</strong> Art. 6 Abs. 1 lit. b DSGVO (Vertragsanbahnung bzw.
|
||
berechtigtes Interesse). Die Daten werden nach abschließender Bearbeitung gelöscht,
|
||
sofern keine gesetzliche Aufbewahrungspflicht besteht.
|
||
</p>
|
||
|
||
<h3>Google Maps</h3>
|
||
<p>
|
||
Diese Website verwendet Google Maps zur Darstellung einer interaktiven Karte.
|
||
Anbieter ist Google Ireland Limited, Gordon House, Barrow Street, Dublin 4, Irland.<br>
|
||
Bei Nutzung von Google Maps werden Daten (insbesondere Ihre IP-Adresse) an Google-Server
|
||
übertragen, die sich in den USA befinden können. Google ist unter dem EU-US Data Privacy
|
||
Framework zertifiziert.<br>
|
||
<strong>Rechtsgrundlage:</strong> Art. 6 Abs. 1 lit. f DSGVO (berechtigtes Interesse
|
||
an einer benutzerfreundlichen Standortdarstellung).<br>
|
||
Weitere Informationen finden Sie in der Datenschutzerklärung von Google:
|
||
<a href="https://policies.google.com/privacy" target="_blank" rel="noopener">policies.google.com/privacy</a>
|
||
</p>
|
||
|
||
<h3>Lokaler Speicher (localStorage)</h3>
|
||
<p>
|
||
Diese Website speichert Ihre Schriftgrößen-Einstellung (normal/groß) im lokalen Speicher
|
||
(localStorage) Ihres Browsers. Dabei werden keine personenbezogenen Daten erfasst oder
|
||
an Server übertragen. Der Eintrag kann jederzeit über die Browser-Einstellungen gelöscht
|
||
werden. Es werden keine Cookies gesetzt.
|
||
</p>
|
||
|
||
<h3>Ihre Rechte</h3>
|
||
<p>Sie haben gemäß DSGVO folgende Rechte:</p>
|
||
<ul>
|
||
<li><strong>Auskunft</strong> (Art. 15 DSGVO) — Recht auf Auskunft über Ihre gespeicherten Daten</li>
|
||
<li><strong>Berichtigung</strong> (Art. 16 DSGVO) — Recht auf Korrektur unrichtiger Daten</li>
|
||
<li><strong>Löschung</strong> (Art. 17 DSGVO) — Recht auf Löschung Ihrer Daten</li>
|
||
<li><strong>Einschränkung</strong> (Art. 18 DSGVO) — Recht auf Einschränkung der Verarbeitung</li>
|
||
<li><strong>Widerspruch</strong> (Art. 21 DSGVO) — Recht auf Widerspruch gegen die Verarbeitung</li>
|
||
<li><strong>Datenübertragbarkeit</strong> (Art. 20 DSGVO) — Recht auf Erhalt Ihrer Daten in maschinenlesbarem Format</li>
|
||
</ul>
|
||
<p>
|
||
Zur Ausübung Ihrer Rechte wenden Sie sich bitte an:
|
||
<a href="mailto:info@meineordi.at">info@meineordi.at</a>
|
||
</p>
|
||
|
||
<h3>Beschwerderecht bei der Aufsichtsbehörde</h3>
|
||
<p>
|
||
Sie haben das Recht, eine Beschwerde bei der österreichischen Datenschutzbehörde einzureichen:<br>
|
||
<strong>Datenschutzbehörde</strong><br>
|
||
Barichgasse 40–42, 1030 Wien<br>
|
||
Telefon: +43 1 52 152-0<br>
|
||
E-Mail: <a href="mailto:dsb@dsb.gv.at">dsb@dsb.gv.at</a><br>
|
||
<a href="https://www.dsb.gv.at" target="_blank" rel="noopener">www.dsb.gv.at</a>
|
||
</p>
|
||
|
||
<h3>Aktualität dieser Datenschutzerklärung</h3>
|
||
<p>
|
||
Diese Datenschutzerklärung ist aktuell gültig und hat den Stand März 2025.
|
||
Durch die Weiterentwicklung unserer Website kann eine Anpassung notwendig werden.
|
||
</p>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- ─── Footer ────────────────────────────────────────────── -->
|
||
<footer>
|
||
<div class="footer-inner">
|
||
<img src="/logo.png" alt="meineOrdi" />
|
||
<p>
|
||
© <span id="footer-year"></span> Dr. med. Carina Kautsch ·
|
||
Ärztin für Allgemeinmedizin · 1160 Wien
|
||
</p>
|
||
<p style="font-size:13px;">
|
||
<a href="#impressum">Impressum</a> · <a href="#datenschutz">Datenschutz</a>
|
||
</p>
|
||
</div>
|
||
</footer>
|
||
|
||
<!-- ─── Scripts ───────────────────────────────────────────── -->
|
||
<script>
|
||
// Hamburger menu
|
||
const hamburger = document.getElementById('hamburger');
|
||
const mobileMenu = document.getElementById('mobile-menu');
|
||
hamburger.addEventListener('click', () => {
|
||
hamburger.classList.toggle('open');
|
||
mobileMenu.classList.toggle('open');
|
||
});
|
||
mobileMenu.querySelectorAll('a').forEach(a => {
|
||
a.addEventListener('click', () => {
|
||
hamburger.classList.remove('open');
|
||
mobileMenu.classList.remove('open');
|
||
});
|
||
});
|
||
|
||
// Footer year
|
||
document.getElementById('footer-year').textContent = new Date().getFullYear();
|
||
|
||
// Today's hours in hero card
|
||
(function() {
|
||
const hours = {
|
||
1: '14:00 – 19:00',
|
||
2: '14:00 – 18:00',
|
||
3: '07:30 – 11:30',
|
||
4: '13:00 – 17:00',
|
||
5: '09:00 – 12:00',
|
||
};
|
||
const day = new Date().getDay(); // 0=Sun, 1=Mon, …
|
||
const el = document.getElementById('todays-hours');
|
||
el.textContent = hours[day] || 'Geschlossen';
|
||
})();
|
||
|
||
// Render closure cards
|
||
function renderClosures() {
|
||
const container = document.getElementById('closure-container');
|
||
if (!SCHLIESSZEITEN || SCHLIESSZEITEN.length === 0) {
|
||
container.innerHTML = '<p class="no-closures">Derzeit keine Schließzeiten geplant.</p>';
|
||
return;
|
||
}
|
||
const cards = SCHLIESSZEITEN.map(c => `
|
||
<div class="closure-card">
|
||
<div class="closure-dates">${c.dates}</div>
|
||
<div class="closure-reason">${c.reason}</div>
|
||
<div class="closure-deputy-label">Vertretung</div>
|
||
<div class="closure-deputy-name">${c.deputy}</div>
|
||
<div class="closure-deputy-detail">
|
||
${c.deputyAddr}<br>
|
||
Tel: ${c.deputyPhone}<br>
|
||
${c.deputyHours}
|
||
</div>
|
||
</div>
|
||
`).join('');
|
||
container.innerHTML = `<div class="closure-cards">${cards}</div>`;
|
||
}
|
||
renderClosures();
|
||
|
||
// Font size toggle
|
||
(function() {
|
||
const body = document.body;
|
||
const btnNorm = document.getElementById('font-normal');
|
||
const btnLrg = document.getElementById('font-large');
|
||
const btnNormM = document.getElementById('font-normal-mobile');
|
||
const btnLrgM = document.getElementById('font-large-mobile');
|
||
|
||
function setSize(large) {
|
||
body.classList.toggle('large-font', large);
|
||
btnNorm.classList.toggle('active', !large);
|
||
btnLrg.classList.toggle('active', large);
|
||
btnNormM.classList.toggle('active', !large);
|
||
btnLrgM.classList.toggle('active', large);
|
||
localStorage.setItem('fontSize', large ? 'large' : 'normal');
|
||
}
|
||
|
||
// Apply saved preference
|
||
setSize(localStorage.getItem('fontSize') === 'large');
|
||
|
||
btnNorm.addEventListener('click', () => setSize(false));
|
||
btnLrg.addEventListener('click', () => setSize(true));
|
||
btnNormM.addEventListener('click', () => setSize(false));
|
||
btnLrgM.addEventListener('click', () => setSize(true));
|
||
})();
|
||
</script>
|
||
|
||
</body>
|
||
</html>
|