
    --:root {
    --header-height: 70px;
    --main-color: #2f5d50;
    --accent-color: #6fa8a8;
    --light-accent: #8fd6d6;
    --text-color: #2f3e3e;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Hintergrund – 2000er Style */
body {
    background: 
        linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.9)),
        url("../Bilder/berge.jpg") center/cover no-repeat fixed;
    color: var(--text-color);
    min-height: 100vh;
}

/* Wrapper */
.bg-wrapper {
    min-height: 100vh;
    background:
        linear-gradient(rgba(255,255,255,0.4), rgba(0,0,0,0.3)),
        url("../Bilder/berge.jpg") no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Container – 2000er Glas Effekt */
.container {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(120, 220, 220, 0.25);
    padding: 60px 80px;
    border-radius: 20px;
    text-align: center;

    /* 2000er Glow + Soft Shadow */
    box-shadow:
        0 10px 40px rgba(0,0,0,0.4),
        inset 0 0 25px rgba(255,255,255,0.25);

    max-width: 700px;
    width: 100%;
    position: relative;
    animation: fadeIn 1.2s ease;
}

/* Glanz-Effekt */
.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.05)
    );
    border-radius: 20px;
    pointer-events: none;
}

/* Hover */
.container:hover {
    transform: scale(1.02);
}

/* Titel */
h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: #2f5d50;
}

/* Inhalt */
.box {
    margin-bottom: 30px;
}

.box h2 {
    margin-top: 20px;
    margin-bottom: 5px;
    color: #2f5d50;
}

.box p {
    color: #000;
    line-height: 1.7;
}

/* Button */
.back {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, #2f5d50, #6fa8a8, #8fd6d6);
    color: white;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.back:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Scroll Button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2f5d50;
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.scroll-top:hover {
    background: #6fa8a8;
    transform: translateY(-3px);
}

html {
    scroll-behavior: smooth;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    color: #7a9a97;
    font-size: 0.88rem;
}

footer a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent-color);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Handy */
@media (max-width: 600px) {
    .container {
        padding: 40px 25px;
    }
}
