.main{
    margin: 0;
    display: flex;
    flex-direction: column;
}
body{
    margin: 0;
    padding: 0;
    height: 100%;
}
:root{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-style: italic;
    --main_background_color:#E6E0D7;
    --color_white: #ffffff;
    --color_black: #000000;
    --color_black_opacity: rgba(0, 0, 0, 0.5);
    --color_dark_grey: #666666;
    --color_kontakt_background1: #eeeeff;
    --color_kontakt_background2: #f3f3f3;
    --header_height: 80px;
    --service_logo_width: 10%;
    --gradient: #ffffff;
}
a{
    text-decoration: none;
}
/*.start extra for every html file ex.: index_start for index.html*/
.start_header{
    display: flex;
    justify-content: space-between; 
    width: 100%;
    height: var(--header_height);
    position: fixed;
    z-index: 999;
    background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(80,80,80,0.75) 60%, rgba(160,160,160,0.75) 100%);
}
.start_header_logo{
    margin: 0;
    padding-left: 10px;
    height: 100%;
    width: 13em;
}
.start_header_logo_image{
    margin: 1.25em auto;
    height: 2.5em;
    width: 12.8em;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/Logos/firmenlogo.png);
}
/*Telefonnummern*/
/*Telefonnummern Desktop*/
.start_header_contact{
    display: flex;
    width: auto;
    margin-right: auto;
    font-size: 2vh;
    text-align: center;
    font-weight: bold;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    > .start_header_contact_normal{
        align-content: center;
        margin-left: 1em;
        margin-right: 1em;
        > .start_header_contact_normal_number{
            text-shadow: 1px 1px 1px black;
            a{
                color: white;
            }
        }
    }
    > .start_header_contact_notdienst{
        align-content: center;
        margin-left: 0.5em;
        margin-right: 0.5em;
        > .start_header_contact_notdienst_number{
            text-shadow: 1px 1px 1px black;
            a{
                color: red;
            }
        }
    }
}
/*Telefonnummern Mobil*/
.contact_info_mobile{
    display: none;
    position: fixed;
    margin-top: 79px;
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    width: 100%;
    background-color: rgba(175, 180, 191, 0.95);
    z-index: 11;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 1); 
}
.contact_info_mobile_normal{
    margin: auto;
    text-align: center;
}
.contact_info_mobile_notdienst{
    margin: auto;
    text-align: center;
}
.contact_info_mobile_normal a{
    text-decoration: none;
    color: black;
}
.contact_info_mobile_notdienst a{
    text-decoration: none;
    color: red;
}
.contact_info_mobile_normal a:active{
    text-decoration: underline;
}
.contact_info_mobile_notdienst a:active{
    text-decoration: underline;
}

@media(max-width:768px) {
    .contact_info_mobile{
        display: flex;
    }
    .start_header_contact{
        display: none;
    }
}

/*Logos: VW, VW Nutzfahrzeuge, Audi, Euromobil, ABT*/
.start_header_logos{
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: auto;
}
.start_header_logo_vw{
    > .start_header_logo_vw_image{
        height: 4em;
        width: 4em;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(../img/Logos/vw_service.png);
    }
}
.start_header_logo_vw_nfz{
    > .start_header_logo_vw_nfz_image{
        height: 4em;
        width: 4em;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(../img/Logos/vw_service_nutzfahrzeuge.png);
    }
}
.start_header_logo_audi{
    > .start_header_logo_audi_image{
        height: 4em;
        width: 4em;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(../img/Logos/audi_service.png);
    }
}
.start_header_logo_euromobil{
    > .start_header_logo_euromobil_image{
        height: 4em;
        width: 4em;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(../img/Logos/euromobil.png);
    }
}
.start_header_logo_abt{
    > .start_header_logo_abt_image{
        height: 2em;
        width: 4em;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(../img/Logos/ABT.png);
    }
}
@media(max-width:768px) {
    .start_header_logos{
        display: none;
    }
}
/*Alle Stil-Entscheidungen für den Cookie Banner*/
/*===============================================================*/
.cookie_banner{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);

    color: #1f1f1f;

    padding: 20px 25px;
    border-style: solid;
    border-color: #666;
    border-width: thin;

    z-index: 999;

    font-family: Arial, Helvetica, sans-serif;
}
.cookie_banner p{
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.5;
    text-align: center;
    color: #333;
}
.cookie_buttons{
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.cookie_buttons button{
    flex: 1;
    padding: 10px 14px;
    border: none;
    cursor: pointer;
    border-style: solid;
    border-color: #1976d2;

    font-size: 14px;
    transition: all 0.2s ease;
    font-weight: bold;

    background: white;
    color: black;

    transition: 0.2s;
}
.cookie_buttons button:hover{
    background: #1976d2;
    color: white;
    opacity: 0.9;
}
.cookie_settings{
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    justify-content: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #444;
}
.cookie_settings button{
    margin-top: 15px;
    width: 100%;

    padding: 10px;
    border: none;
    border-style: solid;
    border-color: #1976d2;

    background: white;
    color: black;
    font-size: 14px;
    font-weight: bold;

    cursor: pointer;
    transition: 0.2s;
}
.cookie_settings button:hover{
    background: #1976d2;
    color: white;
    opacity: 0.9;
}
.cookie_option{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0px;
    position: relative;
    padding-right: 3%;
    font-size: 14px;
}
.cookie_option::after{
    content: "";
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 10%;
    height: 100%;
    width: 1px;
    background: #444;
}
.cookie_option span{
    font-weight: bold;
    font-size: 17px;
}
.cookie_switch{
    position: relative;
    width: 42px;
    height: 25px;
}
.cookie_switch input{ /*checkbox verstecken*/
    opacity: 0;
    width: 0;
    height: 0;
}
.cookie_slider{
    position: absolute;
    cursor: pointer;
    inset: 0;

    border-radius: 15px;
    background-color: #111;

    transition: 0.5s
}
.cookie_slider::before {
    content: "";
    position: absolute;
    height: 25px;
    width: 25px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 1px 3px;
}
input:checked + .cookie_slider {
    background-color: #1976d2;
}
input:checked + .cookie_slider::before{
    transform: translateX(18px);
}
.hidden {
    display: none;
}
.cookie_settings_button{
    align-items: center;
    justify-content: center;

    position: fixed;
    bottom: 20px;
    right: 20px;

    background: #222;
    color: white;

    border: none;
    border-radius: 50%;

    width: 50px;
    height: 50px;

    font-size: 20px;
    cursor: pointer;

    z-index: 998;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.2s;
}
.cookie_settings_button:hover{
    transform: scale(1.1);
    background: #555;
}
/*===============================================================================================*/
.start_header_links{
    align-content: center;
    position: relative;
    font-size: 1em;
}
.start_header_links_list{
    visibility: visible;
    margin-top: 0;
    margin-bottom: 0;
    align-content: center;
    font-weight: bold;
    height: 100%;
}
.start_header_links_list_element{
    text-shadow: 1px 1px 1px black;
    align-content: center;
    width: 7em;
    height: 100%;
    font-size: large;
    list-style: none;
    display: inline-block;
    text-decoration: none;
    margin-right: 1em;
    text-indent: 0.5em;
    box-sizing: border-box;
}
.start_header_links_list_element a{
    color: white;
}
.start_header_links_list_element:hover .start_header_links_list_element_container_content{
    background: rgba(240, 240, 240, 0.9);
    visibility: visible;
    opacity: 1;
    border-radius: 8px;
}
.start_header_links_list_element{
    > a:hover{
        text-decoration: underline;
        text-decoration-thickness: 3px;
    }
}
.start_header_links_list_element_container_content{
    top: 100%;
    padding-left: 0;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    height: 0;
    text-align: left;
    font-size: 0.8em;
    min-width: 18em;
}
.start_header_links_list_element_container_content_text{
    padding: 0.8em 1em;
    list-style: none;
    border-style: none;
}
.start_header_links_list_element_container_content_text a{
    color: black;
    text-shadow: 1px 1px 1px white;
}
.start_header_links_list_element_container_content_text:hover{
    background: radial-gradient(closest-corner, #6f6f6f, #3f3f3f);
    text-shadow: 1px 1px 1px black;
}
.start_header_links_list_element_container_content_text:hover a{
    color: white;
    text-shadow: 1px 1px 1px black;
}
.start_header_links_list_element_container_content_text a:hover{
    text-decoration: underline;
    text-decoration-thickness: 2px;
}
.dropdown{
    visibility: hidden;
    position: relative;
    overflow: visible;
    right: 0;
    height: 100%;
    width: var(--header_height);
    background: none;
}
.dropdown:hover{
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(80,80,80,1) 60%, rgba(160,160,160,1) 100%);
}
.dropdown_icon{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 35%;
    margin: auto;
    align-content: center;
    > div{
        background-color: white;
        width: 100%;
        height: 4px;
        margin: 2px 0;
    }
}
.dropdown:hover .dropdown_list{
    display: block;
}
.dropdown_menu{
    width: 100vw;
    right: 0%;
    position: absolute;
}
.dropdown_list{
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    display: none;
    top: 100%;
    background: rgba(240, 240, 240, 0.95);
}
.dropdown_listitem{
    position: relative;
    padding: 1em 1em;
    font-weight: bold;
    font-size: large;
    margin: 0;
    text-shadow: 1px 1px 5px white;
    text-align: center;
    >a{
        height: 100%;
        display: block;
        color: black;
        margin: 0;
    }
    >p{
        color: black;
        margin: 0;
    }
}
.dropdown_listitem:hover{
    background: radial-gradient(closest-corner, #6f6f6f, #3f3f3f);
    >p{
        color: white;
        text-shadow: 1px 1px 1px black;
    }
    /*Einer der Hovers ist kein Link a sondern p und deshalb hier a und p*/
    >a{
        color: white;
        text-shadow: 1px 1px 1px black;
    }
}
.dropdown_listitem.active .dropdown_listitem_list{
    height: auto;
}
.dropdown_listitem_list{
    width: 100%;
    padding-left: 0;
    top: 100%;
    right: 0%;
    height: 0;
    overflow: hidden;
    list-style: none;
    color: white;
    background: rgba(240, 240, 240, 1);
    border-radius: 8px;
    transition: height 0.2s ease-out; /* Sanftes Öffnen */
}
.dropdown_listitem_list_listitem{
    padding:0.8em 1em;
    >a{
        color: black;
    }
    >a:visited{
        color: black;
    }
}
.dropdown_listitem_list_listitem a{
    display: block;
    width: 100%;
}
.dropdown_listitem_list_listitem:hover{
    background: radial-gradient(closest-corner, #6f6f6f, #3f3f3f);
}
.dropdown_listitem_list_listitem:hover a{
    color: white;
    text-shadow: 1px 1px 1px black;
}
/*Home Text den man auf Startseite sieht*/
.home_text{
    margin: 0 auto;
    margin-top: 30px;
    padding: 10px;
    text-shadow: 2px 2px 7px rgba(0, 0, 0, 1), 0px 0px 7px rgba(0, 0, 0, 1);
    margin-bottom: 30px;
    height: auto;
    font-family: Arial, Helvetica, sans-serif;
}
.home_text h1{
    font-size: 6vh;
}
.home_text h2{
    font-size: 5vh;
    font-weight: normal;
}
.home_text_header{
    color: var(--color_white);
    margin: 0 0;
}

.home_text_button{
    margin:20px 0px; /* Abstand zum oberen Inhalt */
    padding: 8px 20px; /* Kleinere Innenabstände für den Button */
    background-color: #000000; /* Hintergrundfarbe */
    color: white; /* Textfarbe */
    border: none;
    border-radius: 5px; /* Abgerundete Ecken */
    font-size: 0.9rem; /* Kleinere Schrift */
    cursor: pointer; /* Zeigt, dass der Button klickbar ist */
    transition: background-color 0.3s ease; /* Weicher Übergang bei Hover */
    align-self: flex-start; /* Button ist linksbündig zum Text */
}
.home_text_button:hover{
    background-color: #444;
}
.home_text_button:active {
    background-color: #666;
}
/*Home Text auf Mobilgeräten*/
@media (max-width: 768px) {
    .home_text{
        margin: 0;
        padding-top: 50px;
        text-align: center;
    }
    .home_text h1{
        font-size: 30px;
    }
    .home_text h2{
        margin-top: 15px;
        font-size: 23px;
    }
    .home_text_header{
        margin: auto;
    }
    .home_text_welcome{
        margin: auto;
        padding-top: 10px;
        font-size: 2vh;
        display: flex;
    }
}
/*=================================================================*/
/*Footer*/
.footer{
    font-family: sans-serif;
    font-style: normal;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    background-color: var(--color_black);
    color: var(--color_white);
}
.footer_logo{
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.footer_logo_image{
    height: 4em;
    width: 20em;
    margin: 0.25em auto;
    background-image: url(../img/Logos/firmenlogo.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.footer_infos{
    display: flex;
    justify-content: center;
    height: auto;
    width: 80%;
    margin: 0.25em auto;
}
.footer_infos_left{
    margin-top: 0.25em;
    margin-bottom: 0.25em;
    margin-left: 2em;
    margin-right: 5em;
    > h3{
        margin-bottom: 1.5em;
        text-decoration: underline;
    }
}
.footer_infos_mid{
    > h3{
        margin-bottom: 1.5em;
        text-decoration: underline;
    }
    > p{
        > a{
            font-weight: bold;
            color: lightskyblue;
        }
        > a:hover{
            text-decoration: underline;
        }
    }
    margin:0.25em 2em;

}
.footer_infos_right{
    > h3{
        margin-bottom: 1.5em;
        text-decoration: underline;
    }
    margin:0.25em 6em;

}
.social_media_links_list{
    display: flex;
    list-style-type: none;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
    text-decoration: none;
}
.social_media_links_list_facebook{
    margin-left: 12px;
    margin-right: 12px;
    transition: transform 0.3s;
}
.social_media_links_list_facebook:hover{
    transform: scale(1.3);
}
.social_media_links_list_instagram{
    margin-left: 12px;
    margin-right: 12px;
    transition: transform 0.3s;
}
.social_media_links_list_instagram:hover{
    transform: scale(1.3);
}
.social_media_links_list_ebay{
    margin-left: 12px;
    margin-right: 12px;
    transition: transform 0.3s;
}
.social_media_links_list_ebay:hover{
    transform: scale(1.3);
}
.last_line_list_links{
    display: flex;
    justify-content: center;
    list-style: none;
    > li{
        > a{
            margin: 0.5em;
            font-size: medium;
            text-decoration: none;
        }
        > a:link{
            color: gray;
        }
        > a:visited{
            color: gray;
        }
        > a:hover{
            color: white;
        }
    }
}
.last_line_copyright{
    display: flex;
    justify-content: center;
    list-style: none;
}
.last_line_list_copyright{
    text-decoration: none;
    color: gray;
}
/*Footer Mobile*/
@media (max-width: 768px) {
    .footer_infos{
        flex-direction: column;
    }
    .footer_infos_left{
        margin: auto;
    }
    .last_line_list_links{
        flex-direction: column;
        padding: 0;
        text-align: center;
    }
    .last_line_copyright{
        padding: 0;
    }
}
/*=====================================================================================*/
/*Animationen und Media*/
@media (max-width:1503px) {
    .start_header_links_list{
        visibility: hidden;
        width: 0;
    }
    .dropdown{
        visibility: visible;
    }
}