/* ----------------------------------------------    Allgemeine Stile ---------------------------------------------- */
body {
    font-family: 'Candara', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #22282e;
    color: #989898;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(38, 43, 49, 0.8);
    color: #f7f7f7;
    text-align: center;
    padding: 35px;
    font-size: 24px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
}

.container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 0;
    box-sizing: border-box;
    margin-top: 0;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        margin: 0;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .container {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1920px) {
    .container {
        grid-template-columns: repeat(4, 1fr);
    }
}




/* Zentriertes Container-Layout */
.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Inhalt */
.content {
    padding: 7px;
    background: linear-gradient(to bottom, rgba(10, 13, 15, 0.0), rgba(10, 13, 15, 0.2));
    border-radius: 14px;
    margin-top: 5%;
    place-items: center;
}

.content img {
    border-radius: 5px;
}

/* Tabellen */
td {
    border: 0;
    background: transparent;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    border-spacing: 10px;
}





/* 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 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);
    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;
}

.menu-toggle.active div:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
}

.menu-toggle:hover div {
    background-color: #f5f5f5;
}

/* Navigation */
@media (min-width: 0px) {
    .menu-toggle {
        display: flex;
    }
    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(to bottom, rgba(38, 43, 49, 1.0), rgba(38, 43, 49, 0.7));
        position: fixed;
        top: 0;
        left: -100%; /* Start auÃƒÅ¸erhalb des Bildschirms */
        width: 370px;
        height: calc(100% - 50px);
        z-index: 1000;
        padding-top: 91px;
        padding-bottom: 49px;
        transition: left 0.5s ease; /* Animation fÃƒÂ¼r das Einfahren */
    }
    nav.active {
        left: 0; /* Bei Aktivierung sichtbar */
    }
    nav a {
        font-size: 24px;
        margin: 10px 0;
        color: #d9d9d9;
        text-shadow: 1px 1px 1px #000000;
    }
}

/* Kopfspalte */
.kopfspalte {
    width: 100%;
    margin: -2px auto;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7); 
}

.kopfspalte img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 77px;
}

.kopfspalte h2 {
    margin: 14px 0;
    font-size: 24px;
    color: rgba(217, 217, 217, 0.8);
    font-family: var(--font-primary);
    text-shadow: 2px 2px 2px #000;
}


.kopfspaltmini {
    width: 100%;
    margin: 0px auto;
    margin-top: -6%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
}

.kopfspaltmini img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 0px;
}

.kopfspaltmini h2 {
    margin: 0px 0;
    font-size: 24px;
    color: rgba(217, 217, 217, 0.8);
    font-family: var(--font-primary);
    text-shadow: 2px 2px 2px #000;
}



/* Spalten */
.column {
    background-color: transparent;
    padding: 10px;
    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;
    color: rgba(217, 217, 217, 1.0);
    text-shadow: 2px 2px 2px #000;
    font-size: 16px;
}

.column img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.column h3 {
    margin: 20px 0;
    font-size: 24px;
    font-family: 'Ebrima', sans-serif;
    font-style: normal;
    color: rgba(217, 217, 217, 0.8);
    text-align: center;
}

/* Bildbeschreibung */
.image {
    margin: 20px 0;
}

.image-caption {
    font-size: 15px;
    color: #c7c7c7;
    background-color: transparent;
    text-align: right;
    margin: -28px 7px -21px 0;
    font-family: 'Ebrima', sans-serif;
    font-style: oblique;
}

.image-desc {
    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));
    border-radius: 5px;
    padding: 12px;
}

/* Footer */
footer {
    background: linear-gradient(to bottom, rgba(71, 80, 95, 0.0), rgba(38, 43, 49, 0.7));
    color: #f5f5f5;
    text-align: center;
    padding: 28px 0;
    font-family: 'Candara', sans-serif;
}

/* 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 -12px;
    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 {
    padding: 10px 15px;
    font-size: 18px;
    background-color: #212121;
    color: #989898;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    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;
    margin: 0 auto;
    background-color: rgba(149, 149, 149, 0.7);
    padding: 1px;
    border-radius: 0;
    width: 310px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.searchField {
    flex: 1;
    background-color: rgba(77, 77, 77, 0.7);
    border: none;
    color: #000;
    font-size: 16px;
    padding: 10px;
    border-radius: 0;
    outline: none;
    font-family: Verdana, sans-serif;
}

.searchField::placeholder {
    color: #090909;
    font-family: Verdana, sans-serif;
    font-size: 21px;
}

.searchField:focus {
    background-color: rgba(177, 177, 177, 1.0);
    color: #666;
}

.searchButton {
    background-color: rgba(77, 77, 77, 0.4);
    border: none;
    color: #0F0F0F;
    padding: 7px;
    width: 35px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.searchButton:hover {
    background-color: #666;
}

.searchButton:active {
    background-color: rgba(177, 177, 177, 0.4);
}

/* Logo-Box */
div.transbox {
    z-index: 600;
    position: fixed;
    background: rgba(71, 80, 95, 0.0);
    top: 0.91%;
    left: 2.8%;
    width: auto;
    height: auto;
    opacity: 0.9;
    border-radius: 6px;
    z-index: 2500;
}

div.transbox .size {
    display: block;
    margin-left: 0;
    font-size: 42px;
    font-family: 'DejaVu Sans Mono', sans-serif;
    font-weight: 300;
    color: rgba(217, 217, 217, 0.9);
    text-shadow: 3px 3px 3px black;
    opacity: 0.9;
}

@media (max-width: 700px) {
    div.transbox .size {
        font-size: 39px;
        padding: 5%;
        margin-left: 0;
    }
}

/* Spezial Medienabfrage fÃƒÂ¼r 320-360 +15% */
@media (max-width: 440px) {
    .kopfspalte {
        display: none;
    }
}




@media (max-width: 440px) {
    .content {
        margin-top: 21%;
    }
}

/* Spezial Medienabfrage f&Atilde;ƒ&Acirc;&frac14;r 320-360 +15% */
@media (min-width: 440px) {
    .kopfspaltmini {
        display: none;
    }
}


    /* Link farbe*/
a:hover {
    text-decoration: underline rgba(240, 200, 140, 0.9) 2px;
    color: rgba(240, 200, 140, 0.9);
}

a {
    color:  rgba(230, 210, 180, 0.9);
    font-style: #;
    font-family: 'Carlito', sans-serif;
}



