﻿:root {
    --primary-color: #d24c5b;
    --accent-color: darkturquoise;
    --hover-color: darkred;
    --text-color: #333;
    --main-background-color: #fffffc;
    --rechteck-background-color: #fefefa;
    --section-odd-bg-color: #fef5ee;
    --section-even-bg-color: #f9f5ef;
    --header-shadow-color: rgba(0, 0, 0, 0.16);
    --header-shadow-dark-color: rgba(0, 0, 0, 0.12);
    --max-width: 1000px;
}

/* Allgemeine Stile */
body {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 0px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    color: var(--text-color);
    background-color: var(--main-background-color);
}

section {
    scroll-margin-top: 60px;
  }

p {
    margin: 5px 0;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.blob {
    background: var(--rechteck-background-color);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px 0px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blob:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.blob a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    min-height: 53px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    background-color: var(--primary-color);
    color: white;
    position: fixed;
    max-width: var(--max-width);
    margin: 0 auto;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    padding-left: 10px;
    padding-top: 10px;
}

.logo img {
    height: 40px;
    margin-right: 15px;
}

.logo-text {
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
}

.logo-text span {
    display: flex;
}

.logo-text a,
.logo a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

.logo-text a:hover,
.logo a:hover {
    color: var(--accent-color);
}

/* Öffnungszeiten */
.öffnungszeiten {
    text-align: right;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.5;
    padding-right: 10px;
}

/* Bei Bildschirmgrößen unter 365px */
@media (max-width: 365px) {
    .öffnungszeiten {
        display: none; /* Versteckt die Öffnungszeiten */
    }
}


/* Notdienst Link */
.notdienst {
    display: inline-block;
    padding: 5px 10px;
    background-color: red;
    color: white;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 12px;
    margin: 0 10px;
}

.notdienst:hover {
    background-color: var(--hover-color);
}

h1 {
    font-size: 23pt;
}

.service-beschreibung {
    text-align: justify;
}