/* Start: General Konfig Desktop */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth !important;
    font-family: 'Inter';
    /* font-family: 'Cartesian', sans-serif;*/
}

html {
    width: 100%;
    scroll-behavior: smooth !important;
}

body {
    width: 100%;
    font-family: "Roboto", sans-serif;
    background-color: #FAF9F6;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1 {
    text-align: center;
    color: #000;
}

.whitetitle {
    color: #fff;
}


/* Go to Top Button */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 999;
    font-size: 24px;
    border: none;
    outline: none;
    background: #EA00D9;
    color: white;
    cursor: pointer;
    padding: 5px 15px 5px 15px;
    border-radius: 50%;
}

#myBtn:hover {
    background-color: #181716;
}

/* End: General Config Desktop */

/* Start: General Config Mobile */
@media screen and (max-width: 800px) {

    html,
    body {
        overflow-x: hidden;
        margin: 0;
        padding: 0;
        width: 100%;
    }

}

/* End: General Config Mobile */

/* ----------------------------------------------------------------------------------------------------------------- */

/* Start: Navigation Bar Desktop */

.nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    background: #ebebeb;
    opacity: 1;
    position: fixed;
    z-index: 999;
    padding: 10px;
}

/* Navigationsbar Desktop deaktivieren für Mobile da Hamburger Menü integriert wurde. */
@media screen and (max-width: 800px) {
    .nav {
        display: none;
    }
}

/* Bild in Navbar */
.logo {
    padding-left: 5%;
    width: 20%;
    height: 100%;
    display: flex;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Links zu den Sections */
.links {
    display: flex;
    width: 70%;
    padding-right: 5%;
    height: 100%;
    justify-content: flex-end;
}

.links a {
    box-shadow: inset 0 0 0 0 #fff;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
    color: #000;
    text-decoration: none;
    align-items: center;
    float: left;
    display: block;
    padding: 0px 16px;
    font-size: 17px;
}

.links a.active {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    opacity: 1;
    color: #181716;
}

.links a:hover {
    box-shadow: inset 100px 0 0 0 #EA00D9;
    color: #ebebeb;
}

/* Ende: Navigation Bar Desktop */


/* Start: Navigation Bar Mobile */

/* Burger deaktivieren für Mobile */
#burger_background {
    display: none;
}

.menu-wrap {
    display: none;
}

/* Mobile Navbar Burger */
@media screen and (max-width: 800px) {

    /* Ganzer Container */
    #burger_background {
        display: block;
        background: #ebebeb;
        width: 100%;
        height: 60px;
        position: fixed;
        /* Sticky */
        top: 0;
        left: 0;
        z-index: 99997;
        /* Sticky */
        border-bottom: 1px solid #ffffff;
    }

    .menu-wrap {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99997;
        width: 0%;
        height: 100%;
    }

    /* Hamburger Div */
    .hamburger {
        cursor: pointer;
        position: fixed;
        top: 10px;
        left: 15px;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 99998;
        /* Hamburger vor dem Background */
    }

    /* Hamburger Symbol selbst (three Stripes) */
    .hamburger div,
    .hamburger div::before,
    .hamburger div::after {
        content: '';
        display: block;
        background: #000;
        height: 2px;
        width: 100%;
        border-radius: 10px;
        transition: all 0.3s linear;
    }

    .hamburger div::before {
        transform: translateY(-8px);
    }

    .hamburger div::after {
        transform: translateY(8px);
    }

    /* Hitbox des Hamburgers */
    .toggler {
        position: absolute;
        top: 0;
        left: 10px;
        z-index: 99999;
        cursor: pointer;
        width: 50px;
        height: 50px;
        opacity: 0;
    }

    .toggler:checked + .hamburger > div {
        transform: rotate(135deg);
    }

    .toggler:checked + .hamburger > div::before {
        transform: rotate(90deg);
        opacity: 0;
    }

    .toggler:checked + .hamburger > div::after {
        transform: rotate(90deg);
    }

    /* Inhaltsspalte die bei Burgerklick geöffnet wird */
    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 40%;
        /* Breite der Spalte */
        height: 100%;
        background: #ebebeb;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .menu > div {
        padding: 50px 20px;
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }

    .menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .menu ul li {
        padding: 10px;
    }

    /* Links der Navbar */
    .menu ul li a {
        color: #000;
        font-size: 14pt;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .menu ul li a:hover {
        color: #555;
    }

    .toggler:checked ~ .menu {
        transform: translateX(0);
    }

    button.button-main {
        border: none;
        transition: box-shadow 0.3s ease-in-out;
    }

    button.button-main:hover {
        box-shadow: 0 0 8px 8px rgba(255, 255, 255, 0.6);
        transition: box-shadow 0.3s ease-in-out;
    }

    /* Logo in der Navbar */
    .logo-container-mobile {
        max-width: 80%;
        margin-left: 15%;
        margin-top: 2.5%;
    }

    .logo-container-mobile img {
        width: 80%;
        height: 80%;
    }
}

/* ----------------------------------------------------------------------------------------------------------------- */

#home {
    display: block;
    float: left;
    width: 100%;
}



.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("img/home.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-bottom: solid #ebebeb;
    min-height: 60vh;
    /* etwas mehr Platz */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-text {
    color: white;
    max-width: 800px;
    /* begrenzt die Breite */
    width: 90%;
}

.hero-text img {
    max-width: 500px;
    height: auto;
    width: 50%;
}

.hero-text h1 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    /* skaliert dynamisch */
}

.hero-text h2 {
    font-size: clamp(1rem, 2vw, 1.5rem);
}

.hero-text button {
    background-color: #EA00D9;
    border: 1px solid #EA00D9;
    color: #fff;
    padding: 15px 32px;
    text-align: center;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hero-text button:hover {
    background-color: #fff;
    color: #181716;
}



.overview {
    padding: 1.25% 0 2.5% 0;
    margin: 0 5% 0 5%;
}

.overview_text {
    text-align: center;
    padding: 0 0 0 0;
}

.home_text {
    font-size: 14pt;
}

.threecolumn_home {
    display: flex;
    /* Flexbox aktivieren */
    gap: 30px;
    /* Abstand zwischen den Spalten */
    height: auto;
    width: 100%;
    padding: 1.25% 0 0 0;

}

.threecolumn_home img {
    display: block;
    /* jedes Element nimmt volle Breite ein */
    margin: 0 auto 10px;
    /* mittig + etwas Abstand */
    padding: 0 0 2.5% 0;
    max-height: 150px;
    max-width: 150px;
    object-fit: contain;
}

.column_home {
    flex: 1;
    background: #fff;
    border: solid 3px #f8b2f3;
    padding: 20px 20px 10px 20px;
    text-align: center;
    border-radius: 12px;

}

.overview_buttons {
    display: block;
    /* jedes Element nimmt volle Breite ein */
    margin: 0 auto 10px;
    /* mittig + etwas Abstand */
    background-color: #EA00D9;
    border: none;
    color: #fff;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border: solid 1px #EA00D9;
}


.overview_buttons:hover {
    background: #fff;
    color: #181716;
}


/* Laptop Breakpoint */
@media screen and (max-width: 1200px) {
    .hero-image {
        min-height: 70vh;
        padding: 3rem 1rem;
    }

    .hero-text img {
        width: 50%;
    }
}


/* Mobile  */
@media screen and (max-width: 800px) {

    .overview {
        padding: 5% 0 0 0;
    }

    .overview h1 {
        text-align: left;
    }



    .overview_text {
        text-align: left !important;
    }

    .hero-image {
        min-height: 80vh;
        padding: 2rem 1rem;
    }

    .hero-text {
        width: 100%;
    }

    .hero-text img {
        width: 70%;
    }



    .threecolumn_home {
        display: block;
        /* Flexbox aktivieren */
        /* Abstand zwischen den Spalten */
        height: auto;
        width: 100%;
        padding: 5% 0 0 0;
    }

    .threecolumn_home img {
        max-height: 100px;
        max-width: 100px;
    }

    .column_home {
        background: #fff;
        border: solid 3px #ebebeb;
        padding: 20px 20px 10px 20px;
        margin: 2.5% 0 2.5% 0;
        text-align: center;
        border-radius: 12px;

    }

}

/* ----------------------------------------------------------------------------------------------------------------- */

#fahrten {
    width: 100%;
    display: block;
    float: left;
    margin: 0 auto;
}

.fahrten_header {
    display: block;
    width: 100%;
    background-color: #ebebeb;
}


.angebot_column {
    display: flex;
    /* Flexbox aktivieren */
    background-color: #ebebeb;
    color: #000;
    padding: 0 5% 0 5%;
}

.column_angebot {
    flex: 1;
    /* beide gleich breit */
    padding: 20px;
}

.column_angebot a {
    color: #EA00D9;
}


.column_angebot ul {
    list-style-type: disc;
    /* äußerer Punkt (·) */
    margin-left: 10px;
    padding-left: 10px;
}

.column_angebot ul ul {
    list-style-type: circle;
    /* innerer Punkt (o) */
    margin-left: 25px;
    /* sorgt für sichtbare Einrückung */
    padding-left: 10px;
}

.column_angebot li {
    margin-bottom: 6px;
}

#container {
    display: flex;
    padding: 0 5% 0 5%;
    /* Flexbox aktivieren */
}

.column_fahrten {
    flex: 1;
    /* beide gleich breit */
    padding: 20px;
}


.threecolumn_bestellung {
    display: flex;
    gap: 20px;
    /* Abstand zwischen den Spalten */
    text-align: center;
}

.column_bestellung {
    flex: 1;
    /* Alle Spalten gleich breit */
    padding: 15px;
    background-color: #fff;
    border: 3px solid #f8b2f3;
    border-radius: 8px;
}


.column_bestellung img {
    height: 30%;
    width: 30%;
    object-fit: contain;
}



.button_bestellung {
    display: block;
    /* jedes Element nimmt volle Breite ein */
    margin: 0 auto 10px;
    /* mittig + etwas Abstand */
    background-color: #EA00D9;
    border: none;
    color: #fff;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border: solid 1px #ebebeb;
}

.button_bestellung:hover {
    background: #fff;
    color: #181716;
}

.preistabelle {
    padding: 2.5% 0 0 0;
}

table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    overflow: hidden;
    border: solid 3px #EA00D9;
}

th,
td {
    padding: 7px 10px;
    text-align: left;
}

th {
    background-color: #EA00D9;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #f8b2f3;
}

.note {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #555;
}




form {
    width: 100%;
}


input[type=text],
input[type=datetime-local],
input[type=number],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #181716;
    box-sizing: border-box;
    margin-bottom: 10px;
    resize: vertical;
    background-color: #fff;
    color: #000;
    font-size: 12pt;

}

::placeholder {
    color: #000;
}

textarea {
    color: #000;
    font-size: 12pt;
}



input[type=submit] {
    display: block;
    /* jedes Element nimmt volle Breite ein */
    margin: 0 auto 10px;
    /* mittig + etwas Abstand */
    background-color: #EA00D9;
    border: none;
    color: #fff;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border: solid 1px #ebebeb;
}

input[type=submit]:hover {
    background: #fff;
    color: #181716;
}


/* Mobile  */
@media screen and (max-width: 800px) {

    #fahrten {
        padding: 5% 0 0 0;
    }

    .column_fahrten h2 {
        text-align: center;
    }

    .fahrten_header h1 {
        text-align: left;
        padding-left: 5%;
    }


    .angebot_column {
        display: block;
        padding: 0 5% 5% 5%;
    }

    .column_angebot {
        padding: 20px 0 10px 0;
    }


    #container {
        display: block;
        padding: 0;
    }

    .column_fahrten {
        flex: 1;
        /* beide gleich breit */
        padding: 20px;
    }

    .threecolumn_bestellung {
        display: block;
    }

    .column_bestellung {
        margin: 5% 0 5% 0;
    }

    input[type=submit] {
        width: 100%;
    }


}


/* ----------------------------------------------------------------------------------------------------------------- */

#about {
    width: 100%;
    display: block;
    float: left
}

.about_header {
    display: block;
    width: 100%;
    background-color: #ebebeb;
}


.twocolumn_about {
    display: flex;
    /* Flexbox aktivieren */
    gap: 0;
    /* Abstand zwischen den Spalten */
    width: 100%;
    /* Container etwas schmaler als 100% */
    margin: 0 auto;
    /* Container mittig ausrichten */
}

.column_about {
    flex: 1;
    /* beide Spalten gleich breit */
    text-align: left;
}

.column_about p {
    padding-bottom: 5%;
}


.column_about img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.color {
    background-color: #ebebeb;
    /* Demo-Hintergrund */
    color: #000;
    padding: 2.5% 5% 0 5%;
}


/* Mobile  */
@media screen and (max-width: 800px) {

    .color {
        padding: 5% 5% 5% 5%;
    }


    .twocolumn_about {
        display: block;
    }



}




/* ----------------------------------------------------------------------------------------------------------------- */

#faq {
    width: 100%;
    display: block;
    float: left;
    margin: 0 auto;
    font-family: sans-serif;
    padding: 2.5% 0 2.5% 0;
    text-align: center;
}

/* Frage-Balken */
.faq-question {
    width: 90%;
    margin: 0 5% 0px 5%;
    padding: 15px;
    text-align: center;
    border: 2px solid #f8b2f3;
    outline: none;
    cursor: pointer;
    background: #ebebeb;
    color: #000;
    font-size: 16px;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
}

.faq-question:hover {
    background: #f8b2f3;
    color: #000;
}

/* Antwort */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    width: 90%;
    margin: 0 5% 10px 5%;
    background: #ebebeb;
    color: #EA00D9;
    padding: 0 15px;
    border-left: 3px solid #f8b2f3;
    border-right: 3px solid #f8b2f3;
    border-radius: 0 0 8px 8px;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 10px 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px;
}



/* Mobile  */
@media screen and (max-width: 800px) {

    #faq {
        padding: 5% 0 5% 0;
    }



}


/* ----------------------------------------------------------------------------------------------------------------- */

#kontakt {
    width: 100%;
    display: block;
    float: left;
    margin: 0 auto;
    font-family: sans-serif;
    padding: 0 0 0 0;
    text-align: center;
    background-color: #ebebeb;
}



.twocolumn_kontakt {
    display: flex;
    /* Flexbox aktivieren */
    /* Abstand zwischen den Spalten */
    width: 100%;
    /* Container etwas schmaler als 100% */
    margin: 0 auto;
    /* Container mittig ausrichten */
}

.column_kontakt {
    flex: 1;
    /* beide Spalten gleich breit */
    text-align: left;
}

.column_kontakt img {
    height: 10%;
    width: 10%;
    object-fit: contain;
    padding: 0;
}


.color_right {
    background-color: #ebebeb;
    /* Demo-Hintergrund */
    color: #000;
    padding: 10px 0 0 20px;
}



iframe {
    width: 100%;
    object-fit: cover;
}


/* Mobile  */
@media screen and (max-width: 800px) {

    #kontakt h1 {
        padding: 0% 5% 0 5%;
    }

    .twocolumn_kontakt {
        display: block;
        /* Flexbox aktivieren */
        /* Abstand zwischen den Spalten */
        width: 100%;
        /* Container etwas schmaler als 100% */
        margin: 0 auto;
        /* Container mittig ausrichten */
    }

    .color_right {
        padding: 5% 5% 5% 5%;
    }



}




/* ----------------------------------------------------------------------------------------------------------------- */

#footer {
    width: 100%;
    display: block;
    float: left;
    padding: 10px 0 10px 0;
    text-align: center;
    border-bottom: 2px solid #ebebeb;
    border-right: 2px solid #ebebeb;
    border-left: 2px solid #ebebeb;
    background-color: #ebebeb;
    color: #EA00D9;
}

#footer a {
    color: #000;
}


.border {
    border: 2px solid #ebebeb;
}



/* ----------------------------------------------------------------------------------------------------------------- */
#impressum {
    padding: 5% 0 0 5%;
    display: block;
    max-width: 80%;
}
