/* --- GRUNDEINSTELLUNGEN --- */
:root {
    --primary-color: #2c2c2c; /* Dunkles Grau für Text */
    --accent-color: #8f7056;  /* Bronze/Goldton aus dem Logo */
    --bg-color: #ffffff;
    --font-serif: 'Playfair Display', serif; /* Für Logo und Überschriften */
    --font-sans: 'Lato', sans-serif; /* Für Fließtext */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--primary-color);
    font-family: var(--font-serif); /* Standard Serif für Eleganz */
    text-align: center;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-color);
}

/* --- HAUPTCONTAINER --- */
.card-container {
    padding: 60px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

/* --- LOGO BEREICH --- */
.logo-section {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-box {
    width: 60px;
    height: 60px;
    border: 2px solid #5a4a42; /* Dunklerer Braunton */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    font-family: var(--font-serif);
    color: var(--primary-color);
    margin-bottom: 10px;
}

.company-name {
    font-size: 42px;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.company-subline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 350px; /* Breite der Linien begrenzen */
    margin-top: 5px;
}

.company-subline .text {
    color: var(--accent-color);
    font-size: 20px;
    text-transform: uppercase;
    padding: 0 15px;
    letter-spacing: 1px;
}

.company-subline .line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--accent-color);
}

/* --- KONTAKT BEREICH --- */
.contact-info {
    font-family: var(--font-serif);
    color: #444;
}

.info-block {
    margin-bottom: 25px;
}

.info-block strong {
    display: block;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
}

/* --- KARTE --- */
.map-section {
    width: 100%;
    border-top: 1px solid var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    line-height: 0; /* Entfernt Lücken unter Iframe */
}

iframe {
    filter: grayscale(10%) contrast(95%); /* Leichtes Styling für die Karte */
}

/* --- FOOTER --- */
footer {
    padding: 20px;
    font-family: var(--font-sans);
    font-size: 12px;
    color: #333;
    margin-top: 10px;
}

.footer-links {
    margin-bottom: 8px;
    font-weight: 700;
}

.footer-links a {
    text-transform: uppercase;
    margin: 0 5px;
}

.separator {
    color: #ccc;
}

.copyright {
    color: #888;
    font-weight: 300;
}

.logo-section {
    text-align: center;
}

.logo-img {
    width: 450px;
    max-width: 100%;
    height: auto;
}

/* Mobile Version */
@media (max-width: 600px) {
    .logo-img {
        width: 100%;
        max-width: calc(100% - 40px); /* 20px links + 20px rechts Abstand */
    }
}


/* --- MOBILE ANPASSUNG --- */
@media (max-width: 600px) {
    .company-name {
        font-size: 32px;
    }
    .company-subline .text {
        font-size: 16px;
    }
    .map-section iframe {
        height: 300px; /* Kleinere Karte auf Handys */
    }
}