/* ----------------------------------------------    Allgemeine Stile ---------------------------------------------- */
 /* -------------------------------------------------
   RESET / BASIS
------------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* -------------------------------------------------
   ALLGEMEINE STILE
------------------------------------------------- */

body {
    font-family: 'Candara', sans-serif;
    background-color: #475060;
    color: #989898;

    display: flex;
    flex-direction: column;

    min-height: 100dvh;
    overflow-x: hidden;
}

/* -------------------------------------------------
   HEADER
------------------------------------------------- */

header {
    display: flex;
    justify-content: center;
    align-items: center;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    padding: 35px;

    background-color: rgba(38, 43, 49, 0.8);
    color: #f7f7f7;

    text-align: center;
    font-size: 24px;

    z-index: 2000;
}

/* -------------------------------------------------
   CONTAINER GRID
------------------------------------------------- */

.container {
    display: grid;
    grid-template-columns: 1fr;

    gap: 1rem;
    margin: 0;
}

/* Tablet */
@media (min-width: 881px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */
@media (min-width: 1282px) {
    .container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop */
@media (min-width: 1920px) {
    .container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* -------------------------------------------------
   CENTER CONTAINER
------------------------------------------------- */

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100dvh;
}

/* -------------------------------------------------
   CONTENT
------------------------------------------------- */

.content {
    padding: 7px;

    background: linear-gradient(
        to bottom,
        rgba(10, 13, 15, 0),
        rgba(10, 13, 15, 0.2)
    );

    border-radius: 14px;

    margin-top: 49px;

    place-items: center;
}

.content img {
    border-radius: 5px;
}

/* -------------------------------------------------
   TABELLEN
------------------------------------------------- */

table {
    border-collapse: collapse;
    border-spacing: 10px;
}

td {
    border: 0;
    background: transparent;
    vertical-align: middle;
}

/* -------------------------------------------------
   TYPOGRAFIE
------------------------------------------------- */

.Text {
    font-family: 'Carlito', sans-serif;
    font-size: 14pt;
    line-height: 19pt;

    color: rgba(255, 255, 255, 0.9);

    text-shadow: 1px 1px 1px black;
}

.Headline {
    font-family: 'Carlito', sans-serif;
    font-size: 20pt;
    font-weight: bold;

    color: #aab1c2;

    text-shadow: 1px 1px 1px black;
}

.TableText {
    font-family: 'Carlito', sans-serif;
    font-size: 10pt;
    line-height: 7pt;

    color: rgba(177, 177, 177, 0.7);
}

.TextPicture {
    font-family: 'Carlito', sans-serif;
    font-size: 14pt;
    line-height: 19pt;

    color: #ffffff;

    text-shadow: 1px 1px 1px black;

    border-radius: 0 0 5px 5px;

    background: linear-gradient(
        to bottom,
        rgba(71, 80, 95, 0.1),
        rgba(38, 43, 49, 0.3)
    );

    padding: 2%;
}

/* -------------------------------------------------
   MOBILE MENU BUTTON
------------------------------------------------- */
/* Mobile Navigation */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: fixed;
    right: 20px;
    top: 30px;
    z-index: 1500;
}

.menu-toggle div {
    background-color: rgba(217, 217, 217, 1.0);
    height: 2px;
    width: 77%;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active div:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
}

.menu-toggle.active div:nth-child(2) {
    opacity: 0; /* Die mittlere Linie wird unsichtbar */
}

.menu-toggle.active div:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
}

.menu-toggle:hover div {
    background-color: #f5f5f5;
}

@media (min-width: 0px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        display: none;
    }

    nav.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(to bottom, rgba(38, 43, 49, 1.0), rgba(38, 43, 49, 0.0)); /* Farbverlauf */
        position: fixed;
        top: 0px;
        left: 0%;
        width: 100%;
        height: calc(100% - 50px);
        z-index: 1000;
        padding-top: 91px;
        padding-bottom: 49px;
    }

    nav a {
        font-size: 1.8em;
        font-weight: bold;
        margin: 10px 0;
        color: #d9d9d9;
        text-shadow: 1px 1px 1px #000000;
        top: 10;
    }
}














/* -------------------------------------------------
   KOPFSPALTE
------------------------------------------------- */

.kopfspalte {
    width: 100%;

    margin: 0 auto;

    text-align: center;

    background-color: rgba(0, 0, 0, 0.7);
}

.kopfspalte img {
    display: block;

    width: 100%;
    height: auto;

    margin-top: 77px;
}

.kopfspalte h2 {
    margin: 14px 0;

    font-size: 24px;

    color: rgba(217, 217, 217, 0.8);

    text-shadow: 2px 2px 2px #000;
}

/* -------------------------------------------------
   SPALTEN
------------------------------------------------- */

.column {
    padding: 10px;

    background-color: transparent;

    border: 1px solid transparent;
    border-radius: 5px;

    text-align: left;

    box-shadow: 5px 0 7px 7px rgba(33, 43, 49, 0.2);

    font-family: 'Ink Free', sans-serif;
    font-size: 16px;

    color: rgba(217, 217, 217, 1);

    text-shadow: 2px 2px 2px #000;
}

.column img {
    width: 100%;
    height: auto;

    border-radius: 5px;
}

.column h3 {
    margin: 20px 0;

    font-size: 24px;

    font-family: 'Ebrima', sans-serif;

    color: rgba(217, 217, 217, 0.8);

    text-align: center;
}

/* -------------------------------------------------
   BILDBESCHREIBUNG
------------------------------------------------- */

.image {
    margin: 20px 0;
}

.image-caption {
    margin: 5px 7px 0 0;

    font-size: 15px;

    color: #c7c7c7;

    text-align: right;

    font-family: 'Ebrima', sans-serif;
    font-style: oblique;
}

.image-desc {
    padding: 12px;

    border-radius: 5px;

    color: rgba(255, 255, 255, 1);

    font-family: 'Candara', sans-serif;
    font-size: 16px;

    text-align: left;

    background: linear-gradient(
        to bottom,
        rgba(71, 80, 95, 0.7),
        rgba(38, 43, 49, 0.7)
    );
}

/* -------------------------------------------------
   FOOTER
------------------------------------------------- */

footer {
    padding: 28px 0;

    text-align: center;

    color: #f5f5f5;

    font-family: 'Candara', sans-serif;

    background: linear-gradient(
        to bottom,
        rgba(71, 80, 95, 0),
        rgba(38, 43, 49, 0.7)
    );
}

/* -------------------------------------------------
   KONTAKTFORMULAR
------------------------------------------------- */

.contact-form {
    display: flex;
    flex-direction: column;

    max-width: 560px;

    margin: 0 auto;

    padding: 20px;

    background-color: rgba(38, 43, 49, 0.9);

    border-radius: 8px;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.contact-form label {
    margin-top: 10px;

    font-size: 16px;

    color: #f5f5f5;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 10px;

    margin: 5px 0 15px 0;

    font-size: 16px;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;

    background-color: rgba(38, 43, 49, 0.8);

    color: #f5f5f5;

    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #FFECC2;

    background-color: rgba(38, 43, 49, 1);
}

.contact-form button {
    width: 100%;

    padding: 10px 15px;

    font-size: 18px;

    border: none;
    border-radius: 6px;

    cursor: pointer;

    background-color: #212121;
    color: #989898;

    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #f5f5f5;
    color: #262b31;
}

.contact-form button:active {
    background-color: #dbd5c5;
}

/* -------------------------------------------------
   SUCHFORMULAR
------------------------------------------------- */

.searchForm {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 310px;

    margin: 0 auto;

    padding: 1px;

    background-color: rgba(149, 149, 149, 0.7);

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.searchField {
    flex: 1;

    padding: 10px;

    border: none;

    outline: none;

    font-size: 16px;

    color: #000;

    background-color: rgba(77, 77, 77, 0.7);

    font-family: Verdana, sans-serif;
}

.searchField::placeholder {
    font-size: 21px;

    color: #090909;

    font-family: Verdana, sans-serif;
}

.searchField:focus {
    background-color: rgba(177, 177, 177, 1);

    color: #666;
}

.searchButton {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 35px;

    padding: 7px;

    border: none;

    cursor: pointer;

    font-size: 18px;

    background-color: rgba(77, 77, 77, 0.4);

    color: #0F0F0F;
}

.searchButton:hover {
    background-color: #666;
}

.searchButton:active {
    background-color: rgba(177, 177, 177, 0.4);
}

/* -------------------------------------------------
   LOGO BOX
------------------------------------------------- */

div.transbox {
    position: fixed;

    top: 0.91%;
    left: 2.8%;

    width: auto;
    height: auto;

    border-radius: 6px;

    background: rgba(71, 80, 95, 0);

    opacity: 0.9;

    z-index: 2500;
}

div.transbox .size {
    display: block;

    margin-left: 0;

    font-size: 42px;
    font-weight: 300;

    font-family: 'DejaVu Sans Mono', sans-serif;

    color: rgba(217, 217, 217, 0.9);

    text-shadow: 3px 3px 3px black;
}

@media (max-width: 700px) {
    div.transbox .size {
        font-size: 39px;
        padding: 5%;
    }
}

/* -------------------------------------------------
   MOBILE CONTENT
------------------------------------------------- */

@media (max-width: 440px) {
    .content {
        margin-top: 140px;
    }
}

/* -------------------------------------------------
   LINKS
------------------------------------------------- */

a {
    color: rgba(230, 210, 180, 0.9);

    font-family: 'Carlito', sans-serif;

    font-style: normal;

    text-decoration: none;
}

a:hover {
    color: rgba(240, 200, 140, 0.9);

    text-decoration: underline rgba(240, 200, 140, 0.9) 2px;
}

/* -------------------------------------------------
   SPEZIAL MEDIA QUERIES
------------------------------------------------- */



 @media (min-width: 300px) and (max-width: 379px) {

    .kopfspalte {
        display: #;
        width: 118%;
        margin-left: 0%;
    }
}


 @media (min-width: 380px) and (max-width: 404px) {

    .kopfspalte {
        display: #;
        width: 110%;
        margin-left: 0%;
    }
}



 @media (min-width: 405px) and (max-width: 416px) {

    .kopfspalte {
        display: #;
        width: 107%;
        margin-left: 0%;
    }
}



 @media (min-width: 417px) and (max-width: 424px) {

    .kopfspalte {
        display: #;
        width: 105%;
        margin-left: 0%;
    }
}



 @media (min-width: 425px) and (max-width: 442px) {

    .kopfspalte {
        display: #;
        width: 101%;
        margin-left: 0%;
    }
}













