/* Base styles */
body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Main content box */


/* Container with 16:9-like format, responsive */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90vw;
    max-width: 960px;
    margin-top: 4vh;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    box-sizing: border-box;
    overflow: hidden;
    gap: 1.5rem;
  }



.impressum-container {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.5rem;
    color: #777;
}

/* Logo image */
.logo {
    max-width: 100%;
    height: auto;
    display: block;

}

/* Headings */
h1 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

h2 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Paragraphs */
p {
    margin: 0.5rem 0;
}

/* Buttons and links styled as buttons */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    background-color: #007acc;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    text-align: center;
  }

.button:hover {
    background-color: #005fa3;
}

/*footer */
.site-footer {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #777;
    background-color: #f0f0f0;
    border-top: 1px solid #ddd;
    position: relative;
    bottom: 0;
}

.site-footer a {
    color: #555;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.align-left {
    text-align: left;
}

.text-left {
    text-align: left;
}

/*welcome picture*/

/* Inside .container */
.hero-image {
    width: 100%;
    height: 50vh;
    overflow: hidden;
    border-radius: 8px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .container {
        width: 95vw;
        padding: 1.5rem;
    }

    .logo {
        max-width: 130px;
    }

    .hero-image {
        height: 10vh;
    }

    .button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
        margin-top: 2vh;
    }

    .logo {
        max-width: 100px;
    }

    .hero-image {
        height: 35vh;
    }

    .button {
        font-size: 0.95rem;
    }
}