/* Grundeinstellungen */
:root {
    --primary: #2c3e50;
    --accent: #b87333; /* Kupfer */
    --silver: #bdc3c7; /* Aluminium/Silber */
    --bg-light: #f9f9f9;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    color: var(--primary);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Header & Nav */
nav {
    display: flex;
    justify-content: space-between;
    padding: 25px 5%;
    background: #fff;
    align-items: center;
}

.logo {
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 1.4rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    margin-left: 25px;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 300;
}

/* KONTAKT-BLOCK ZENTRIEREN */
.contact-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center; /* Horizontale Zentrierung */
    align-items: center;    /* Vertikale Zentrierung */
}

.contact-card {
    background: #fff;
    padding: 50px;
    border-radius: 2px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    text-align: center; /* Text innerhalb der Karte zentrieren */
    max-width: 500px;
    width: 100%;
    border-top: 5px solid var(--accent); /* Kupfer-Akzent oben */
}

.contact-card h2 {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 30px;
    font-weight: 700;
}

.name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.title {
    color: var(--silver);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.address, .comms {
    margin-bottom: 20px;
}

.contact-card p {
    margin: 5px 0;
    font-size: 1.1rem;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

/* Legal Section */
.legal-section {
    padding: 60px 5%;
    background: #fff;
    border-top: 1px solid #eee;
}

.legal-container {
    display: flex;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.8rem;
}

.legal-box h3 {
    font-size: 1rem;
    text-transform: uppercase;
}

footer {
    text-align: center;
    padding: 40px;
    background: var(--primary);
    color: #fff;
    font-size: 0.8rem;
}