
:root {
    --dark-gray: #676767;
    --green: #679A2F;
    --light-gray: #F0F0F0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--light-gray);
    color: var(--dark-gray);
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Hintergrundtext */
.background-text {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(1rem, 3vw, 4rem);
    font-weight: 700;
    text-align: center;
    color: rgba(102, 154, 47, 0.349);
    width: 90%;
    line-height: 1.1;
    z-index: 0;
    user-select: none;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(103, 103, 103, 0.15);
    max-width: 550px;
    width: 90%;
}

.logo img {
    max-width: 450px;
    height: auto;
    margin-bottom: 30px;
}

h2 {
    color: var(--green);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.contact,
.hours {
    margin-top: 25px;
}

.contact p,
.hours p {
    margin: 5px 0;
    line-height: 1.6;
}

.hours {
    border-top: 2px solid var(--green);
    padding-top: 20px;
}

.logo p {
    line-height: 1.4;
}

