
:root {
    --primary: #1e293b;   
    --text-main: #333333; 
    --text-light: #666666;
    --bg-body: #ffffff;
    --max-width: 1000px;  
}

body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
}

/* Container für zentrierten Inhalt */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: "Georgia", serif; 
    font-weight: normal;
    margin-top: 0;
}

a { text-decoration: none; color: inherit; }

header {
    background-color: var(--primary);
    color: #ffffff;
    padding: 60px 0; /* Großzügiger Platz */
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

header p.subtitle {
    font-size: 1.2rem;
    color: #cbd5e1; /* Helles Blaugrau statt Gold */
    margin-top: 0;
    margin-bottom: 30px;
}

.header-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 1.1rem;
    border-top: 1px solid rgba(255,255,255,0.4); /* Sehr dezente Trennlinie */
    padding-top: 30px;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Container für die extra Zeile unter den Kontakten */
.header-location-row {
    text-align: center;
    margin-top: 15px; /* Abstand nach oben zu Telefon/Email */
    font-size: 1.1rem;
    color: #cbd5e1; /* Helles Blaugrau passend zur Subtitle */
}

/* Stil für den Link */
.header-location-row a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255,255,255,0.5);
    transition: all 0.3s;
}

.header-location-row a:hover {
    border-bottom: 1px solid #fff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-link {
    font-weight: bold;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 2px;
    transition: opacity 0.3s;
}
.phone-link:hover { opacity: 0.8; }

.main-content {
    padding: 60px 0;
}

.grid-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px; /* Großer Abstand zwischen den Spalten statt Linien/Boxen */
    padding-left: 20px;
    padding-right:20px;
}

@media (min-width: 768px) {
    .grid-columns {
        grid-template-columns: 1fr 1fr; /* Zweispaltig ab Tablet */
    }
}

h2 {
    color: var(--primary);
    border-bottom: 2px solid #eee; /* Ganz dezente Linie unter Überschrift */
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

ul.services-list {
    list-style: none; 
    padding: 0;
    margin: 0;
}

ul.services-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #f5f5f5; /* Hauchdünne Linie zur Führung */
}
ul.services-list li:last-child { border-bottom: none; }

/* Rechte Spalte: Tabelle ohne Box */
table.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.05rem;
}

table.hours-table td {
    padding: 8px 0;
    vertical-align: top;
}

table.hours-table td:first-child {
    width: 120px;
    font-weight: bold;
    color: var(--primary);
}

/* Adresse Block unten rechts */
.address-block {
    margin-top: 40px;
    font-style: normal;
    color: var(--text-light);
}
.address-block strong { color: var(--text-main); }

.map-link {
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px dotted #999; 
    transition: color 0.3s, border-bottom 0.3s;
}
.map-link:hover {
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
}

footer {
    background-color: #f4f4f4; /* Ganz helles Grau zur Abgrenzung */
    color: #888;
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    margin-top: 40px;
}
footer a { color: #666; text-decoration: underline; }
