@charset "UTF-8";
/* CSS Document - Weinwerk Potsdam Styles mit Rubik Bold/Light */

@font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 300; /* Light */
    font-display: swap;
    src: url('fonts/rubik-light.ttf') format('truetype');
}

@font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 700; /* Bold */
    font-display: swap;
    src: url('fonts/rubik-bold.ttf') format('truetype');
}

html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: auto;
}

body {
    font-family: 'Rubik', Arial, sans-serif;
    background-color: #F08A09;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-weight: 300; /* Light als Standard */
}

.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.grafik {
    width: 100%;
    height: 100vh;
    max-width: 1790px;
    max-height: 1282px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grafik img {
    max-width: 1790px;
    max-height: 1282px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.legal-footer {
    text-align: center;
    padding: 15px;
    font-size: 14px;
    font-weight: 300;
}

.legal-footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 700; /* Bold für Links */
}

.legal-footer a:hover {
    text-decoration: none;
	color: #8B4513;
}

.impressum-header {
    width: 100%;
    max-width: 1790px;
    margin: 0 auto;
    text-align: center;
    padding: 0 0 0 0;
}

.impressum-header img {
    width: 100%;
    max-width: 1790px;
    max-height: 596px;
    height: auto;
    object-fit: contain;
}

.impressum-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: transparent;
    color: #333;
    line-height: 1.6;
    font-weight: 300;
}

.impressum-text strong {
    font-weight: 700;
}

.impressum-text h1, 
.impressum-text h2 {
    color: #fff;
    padding-top: 30px;
    margin-top: 0;
    font-weight: 700;
}

.impressum-text h1 {
    font-size: 3.1em;
	text-align: center;
}

.impressum-text h2 {
    font-size: 1.7em;
}

.impressum-text p {
    margin-bottom: 15px;
}

.impressum-text a {
    color: #8B4513;
    text-decoration: none;
    font-weight: 700;
}

.impressum-text a:hover {
    text-decoration: none;
	color: #fff;
}

@media (max-width: 768px) {
    .impressum-text {
        margin: 20px;
        padding: 20px;
        font-size: 16px;
    }
}