@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-display: swap;
    font-family: 'ATTROX';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/attrox.woff') format('woff');
}




.back-button {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(to bottom, #f5f5f5, #fff);
    color: #333;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.back-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.back-button:hover {
    background: linear-gradient(to bottom, #ebebeb, #fff);
    color: #007bff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.back-button:hover:before {
    transform: translateY(0);
}

/* Title */
.title {
    height: 80px;
    background: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
}

.title h2 {
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
    color: white;
    font-size: 2.3em;
    letter-spacing: 7px;
}

/* List */
.list {
    height: 30px;
    background: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Bebas Neue', sans-serif;
    transition: 0.2s;
}

.list ul {
    display: flex;
}

.list ul li {
    list-style: none;
    margin: 0 30px;
    padding-bottom: 10px;
}

.list ul li a {
    text-decoration: none;
    color: white;
}

/* Content */
.background {
    background: linear-gradient(#000000dd, #000000dd), url(/assets/images/background/2023-12-10_20.17.43.png);
    width: 100%;
    background-size: cover;
    transform: translateY(110px);
    margin-bottom: 110px;
    font-family: 'Caveat', sans-serif;
    background-position-x: center;
}

.welcome {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 110px);
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
}
.readmore
{
    text-align: center;
    margin-top: 30px;
}

h1 {
    color: white;
    padding: 20px;
    font-size: 5em;
    font-family: 'ATTROX';
    text-align: center;
}

/* Container */
.container {
    padding-bottom: 10px;
    font-family: 'Bebas Neue', sans-serif;
}

/* Klein */
.klein {
    height: 50px;
    background: #333333c5;
}

.klein ~ .list {
    background: #333333c5;
}

.impressum-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #333333;
    padding: 20px;
    border: 1px solid black;
    z-index: 1000;
    border-radius: 10px; /* Abgerundete Ecken */
    max-width: 80%; /* Maximale Breite der Box */
    max-height: 70%; /* Maximale Höhe der Box */
    overflow-y: auto; /* Scrollbar anzeigen, wenn der Inhalt zu lang ist */
}

.impressum-box button {
    background-color: #007bff; /* Blaue Hintergrundfarbe */
    color: white; /* Weiße Schriftfarbe */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px; /* Abgerundete Ecken */
    transition: background-color 0.3s ease; /* Smooth Hover-Effekt */
}

.impressum-box button:hover {
    background-color: #0056b3; /* Dunklere Farbe beim Hover */
}


.datenschutz-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #333333;
    padding: 20px;
    border: 1px solid black;
    z-index: 1000;
    border-radius: 10px; /* Abgerundete Ecken */
    max-width: 80%; /* Maximale Breite der Box */
    max-height: 70%; /* Maximale Höhe der Box */
    overflow-y: auto; /* Scrollbar anzeigen, wenn der Inhalt zu lang ist */
}

.datenschutz-box button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px; /* Abgerundete Ecken */
    transition: background-color 0.3s ease;
}

.datenschutz-box button:hover {
    background-color: #0056b3;
}

.datenschutz-content {
    /* Stil für den Inhalt der Datenschutzerklärung */
    margin-bottom: 10px; /* Abstand unten für den Button */
}




/* Mobile Styles */
@media only screen and (max-width: 1000px) {
    header {
        position: fixed;
        width: 100%;
        z-index: 10000;
    }

    #header {
        display: none;
    }

    #header-mobile {
        display: flex;
    }

    .title {
        padding-top: 80px;
        height: 150px !important;
        background: #333333;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.2s;
        font-size: 1.8em;
    }

    .title h2 {
        text-transform: uppercase;
        color: white;
        font-size: 5em;
        letter-spacing: 7px;
        font-family: 'Permanent Marker' !important;
    }

    .list {
        height: 150px !important;
        background: #333333;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Bebas Neue', sans-serif;
        transition: 0.2s;
        font-size: 2.9em;
    }

    .list ul {
        display: flex;
    }

    .list ul li {
        list-style: none;
        margin: 0 15px;
        padding-bottom: 10px;
    }

    .list ul li a {
        text-decoration: none;
        color: white;
    }

    .background {
        background: linear-gradient(#000000bb,#000000bb), url(/assets/images/background/2023-12-10_20.17.43.png);
        width: 100%;
        background-size: cover;
        transform: translateY(80px);
        margin-bottom: 80px;
        font-family: 'Caveat', sans-serif;
	background-position-x: center;
    }

    .welcome {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: calc(100vh - 80px);
        font-family: 'Montserrat', sans-serif;
    	font-size: 34px !important;
    }
    .welcome center{
	margin-top: 90px;
    }

    h1 {
        color: white;
        padding: 10px !important;
        font-size: 5em !important;
        font-family: 'ATTROX';
    }

    .container {
        padding-bottom: 500px;
        font-family: 'Bebas Neue', sans-serif;
    }

    .klein {
        height: 30px;
        background: #333333c5;
    }

    .klein ~ .list {
        background: #333333c5;
    }
}
