﻿/* presse.css - Angepasst für die Presse-Seite */

body {
    font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
    background: #42413C;
    margin: 0;
    padding: 0;
    color: #000;
}

.container {
    width: 960px;
    background: #ac9772;
    margin: 0 auto;
}

.content {
    padding: 10px 0;
}

/* Header-Bereich */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #AC9772;
    padding: 20px;
}

.logo {
    float: left;
    height: 165px;
    width: 613px;
}

.meinung {
    height: 165px;
    width: 250px;
}

/* Hauptinhalt der Presse-Seite */
.presse-content {
    background-image: url('data/presse.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    padding: 20px;
    text-align: left;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.presse-text-container {
    margin-top: 20px;
    margin-left: 20px;
}

.presse-title {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
}

.presse-siegel {
    float: right;
    margin-top: 20px;
    margin-right: 20px;
}

.presse-siegel img {
    border: 0;
    max-width: 150px;
    height: auto;
}

/* Footer-Bereich */
.footer {
    text-align: center;
    background-color: #c65c22;
    padding: 10px;
}

.yps-bild {
    width: 880px;
    height: 100px;
}

/* Responsive Design (könnte angepasst werden, falls notwendig) */
@media (max-width: 768px) {
    .container {
        width: 100%;
    }

    .header {
        flex-direction: column;
        align-items: center;
    }

    .logo, .meinung {
        width: 100%;
        height: auto;
        float: none;
        margin-bottom: 10px;
    }

    .presse-content {
        background-size: cover;
        background-position: top center;
        padding: 15px;
        text-align: center;
        align-items: center;
    }

    .presse-text-container {
        margin: 15px;
        text-align: center;
    }

    .presse-title {
        font-size: 1.5em;
    }

    .presse-siegel {
        float: none;
        margin: 15px auto;
        text-align: center;
    }
}