/* -----------------------------------------------------------
   GLOBAL
----------------------------------------------------------- */

body {
    margin: 0;
    font-family: Arial, sans-serif;

    background: linear-gradient(
        to bottom,
        #0094ff 1%,
        #000000 20%,
        #001a33 85%,
        #e6e6e6 100%
    );

    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

/* -----------------------------------------------------------
   HEADER + MENÜ
----------------------------------------------------------- */

header {
    color: #fff;
    padding: 15px 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2000;
    background: transparent;
}

.header-title {
    font-size: 20px;
    font-weight: bold;
    pointer-events: none;
}

.hamburger {
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 2100;
}

nav {
    display: none;
    flex-direction: column;
    background: #444;
    padding: 10px;

    position: fixed;
    top: 50px;
    right: 0;
    width: 200px;
    z-index: 2050;
}

nav.open {
    display: flex;
}

nav a {
    color: #fff;
    padding: 8px 0;
    text-decoration: none;
    text-align: right;
}

/* -----------------------------------------------------------
   CONTENT BLOCK (Container für Desktop + Mobile)
----------------------------------------------------------- */

.block {
    position: fixed;
    top: 10vh;
    width: 100vw;
    height: calc(100vh - 20vh);
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

/* -----------------------------------------------------------
   DESKTOP: 3 Spalten (Bilder – Texte – Bilder)
----------------------------------------------------------- */

.desktop {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
}

.col-left img,
.col-right img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 6px;
}

.col-center .desk-text {
    color: #fff;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* -----------------------------------------------------------
   MOBILE: 2 Bilder nebeneinander → Text darunter
----------------------------------------------------------- */

.mobile {
    display: none;
}

.mobile-block {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mobile-block img {
    width: 100%;
    border-radius: 6px;
}

.mobile-block .mob-text {
    grid-column: 1 / 3;
    margin-top: 10px;
    text-align: center;
    color: #fff;
    line-height: 1.5;
}

/* -----------------------------------------------------------
   MEDIA QUERIES
----------------------------------------------------------- */

@media (max-width: 899px) {

    .desktop { display: none; }
    .mobile  { display: block; }

    .block {
        display: block;
    }

    /* Mobile Grid bleibt aktiv */
    .mobile-block {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .mobile-block img {
        width: 100%;
    }

    .mobile-block .mob-text {
        grid-column: 1 / 3;
    }
	.mob-text {
    color: #fff;
    text-align: center;
    line-height: 1.5;
    margin: 10px 0;
}
}

@media (min-width: 900px) {

    .desktop { display: grid; }
    .mobile  { display: none; }

    .block {
        display: block;
    }
}
/* -----------------------------------------------------------
   FOOTER (fixiert, transparent, unten)
----------------------------------------------------------- */

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #000;
    font-size: 14px;


    z-index: 3000; /* über Content, unter Menü */
}
/* -----------------------------------------------------------
   LINKS: vollständig neutralisieren
----------------------------------------------------------- */

a,
a:link,
a:visited,
a:hover,
a:active {
    color: inherit;        /* übernimmt die Textfarbe der Umgebung */
    text-decoration: none; /* kein Underline */
    outline: none;         /* keine Fokus-Markierung */
    background: none;      /* keine Hintergründe */
}