* {
    box-sizing: border-box;
}

/* Grundlayout */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a); /* sanfter Gradient */
    color: #ffffff;
}


/* ================= HEADER ================= */
header {
    position: relative;
    background-image: url("../images/back_heading.jpg");
    background-size: cover;
    background-position: center;
    padding: 70px 20px;
    text-align: center;
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(
        to bottom,
        rgba(44, 44, 44, 0) 0%,
        rgba(44, 44, 44, 0.6) 55%,
        rgba(44, 44, 44, 1) 100%
    );
    pointer-events: none;
}

header h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #3ef596;
    font-family: 'Uncial Antiqua', serif;
    letter-spacing: 3px;
    font-size: 3rem;
    text-shadow:
        2px 2px 0px #000,
        4px 4px 12px rgba(0, 0, 0, 0.8);
}

h2 {
    text-align: center;
}

header p {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    font-size: 1.25rem;
    color: #75f53e;
    letter-spacing: 2px;
    font-family: 'Uncial Antiqua', serif;
}

/* ================= STATUS NAVBAR ================= */
.status-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a1a1a;
    padding: 10px 20px;
    border-top: 2px solid #3ef596;
    border-bottom: 2px solid #3ef596;
    gap: 50px;
    font-family: 'Uncial Antiqua', serif;
    letter-spacing: 1px;
}

.status-item h3 {
    display: inline-block;
    margin: 0 5px 0 0;
    color: #b7ce24;
    font-size: 1rem;
}

.status-item span {
    color: #ffffff;
    font-weight: 600;
}

/* ================= INFO BEREICH ================= */
.info {
    background-color: #1e1e1e;
    margin: 20px;
    padding: 25px;
    border-radius: 12px;
}

.info-text {
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 2px;
    color: #ffffff;
    font-family: 'Uncial Antiqua', serif;
}

/* ================= TEXTBOXEN ================= */
.text-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.text-box {
    background: #171717;
    border: 2px solid #3ef596;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    font-family: 'Uncial Antiqua', serif;
    color: #ffffff;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease, border 0.5s ease;
}

.text-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(62, 245, 150, 0.6);
    border: 2px solid #75f53e;
}

.text-box a {
    color: #3ef596;
    text-decoration: none;
    transition: color 0.3s ease;
}

.text-box a:hover {
    color: #75f53e;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    opacity: 0.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    .status-box {
        flex-direction: column;
        gap: 15px;
    }

    .text-gallery {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .status-box {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .text-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
