@charset "utf-8";
html, body, div, span,h1, h2, h3, h4, h5, h6, p, img,
ul, li, form, label, footer, header, menu, nav,section{
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
}
body{
    display: flex;
    flex-direction: column;
}
main{
    flex: 1;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
}
a, p{
    font-family: 'Inter', sans-serif;
}
h1, h2, h3, h4, h5, .menu-link, .review-container{
	font-family: 'Montserrat', sans-serif;
}
h1{
    font-size: clamp(1.2rem, 4vw, 1.8rem);
}
a{
    font-size: clamp(0.8rem, 4vw, 1.2rem); 
}
ul, a{
    list-style-type: none;
    text-decoration: none;
    color: inherit;
}
:root{
    --test: deeppink;

    --header-height: 500px;
    --navbar-height: 80px;
    --navbar-backround: #FFFFFE;
	--text-accent: #1D2B67;
	--text: #1D2B67;
    --text-light: #FFFFFE; 
    --text-dark: #000000;

    --light-accent: #6EAB37;
    --main-accent: #358DBF;
    --dark-accent: #1D2B67;
    --light-shades: #DCE1E0;
    --dark-shades: #27242D;

    --text-headlines: #1D2B67;
    --card-color: #F3F5F6	;
    --footer-backround: #CCD4E1;
}
li.has-sub-menu, li.has-sub-menu a, li.has-sub-menu a:focus, li.has-sub-menu a:active {
    -webkit-tap-highlight-color: transparent !important;
}
*{
    box-sizing: border-box;
}

#nav-container{
    max-width: 1300px;
    width: 100%
}
/* Page Centering --> END */
/* Z-index */
#header-backround-container{
    z-index: 0;
}
#nav-container{
    z-index: 5;
}
.blackColor{
    z-index: 1;
}
.header-widget{
    z-index: 2;
}

/* Navbar */
#header-container{
    display: flex;
    justify-content: center;
    position: relative;
    height: var(--header-height);
}
/* Backround for header-nav

#header-nav-backround{ 
    position: absolute;
    width: 100%;
    height: var(--navbar-height);
    backround-color: var(--navbar-backround);
    z-index: -9;
}
*/
#nav-container{
    height: var(--navbar-height);
    display: flex;
    justify-content: space-between;
    /* Design */
    background-color: var(--navbar-backround);
    color: var(--text);
    /*
    border-width: 0 2px 2px 2px;
    border-style: solid;
    border-color: var(--dark-accent);
    */
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.16);
    border-radius: 0 0 15px 15px;
}
#logo a{
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    margin-left: 15px;
    flex-shrink: 0; 
    cursor: pointer;
}
#logo img{
    width: auto;
    height: calc(var(--navbar-height) - 20%);
}
#navigation{
    display: flex;
    align-items: center;
    margin-inline: 15px;
}
nav{
    display: flex;
    height: calc(var(--navbar-height) - 30%);
}
nav ul{
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-inline: 10px;
}
nav ul li{
    cursor: pointer;
}
.links a{
    display: flex;
    align-items: center;
    height: 26px;
    width: fit-content;
}

/* Navbar Focus */
.links a:focus-visible{
    outline: 1.5px dashed var(--text-accent);
    outline-offset: 5px;
}
/* Navbar Focus --> END */

/* Basics for HoverEffects */
.links a{
    position: relative;
}

/* HoverEffects li a overline/underline */
.menu-link::before,
.menu-link::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 0;
    background: var(--text-accent);
    border-radius: 1px;
    transition: width ease 1s;
}

.menu-link::before {
    top: -2px;
    right: 0;
}

.menu-link::after {
    bottom: -2px;
    left: 0;
}

.menu-link:hover::before,
.menu-link:hover::after {
    width: 40%;
}

/* For Submenu */
.sub-menu li a::before,
.sub-menu li a::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 0;
    background: var(--text-accent);
    border-radius: 1px;
    transition: width ease 1s;
}

.sub-menu li a::before {
    top: -2px;
    right: 0;
}

.sub-menu li a::after {
    bottom: -2px;
    left: 0;
}

.sub-menu li a:hover::before,
.sub-menu li a:hover::after {
    width: 40%;
}

/* HoverEffects li a overline/underline from center */
/*
.links a::before,
.links a::after{
    position: absolute;
    content: "";
    left: 50%;
    right: 50%;
    width: 0;
    height: 2px;
    background: var(--text-accent);
    border-radius: 1px;
}
.links a::before{
    top: -2px;
}
.links a::after{
    bottom: -2px;
}
.links a:hover::before,
.links a:hover::after{
    left: 0;
    right: 0;
    width: 100%;
    transition: all ease 1s;
}
/* HoverEffects li a --> END */

#open-sidebar,
#close-sidebar{
    position: absolute;
    top: calc(var(--navbar-height) / 2 - 13px);
    right: 15px;
    height: 26px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    fill: var(--text-accent);
}
#sidebar.sidebar-close{
    display: none;
    visibility: hidden;
}
#sidebar.sidebar-open,
#backdrop-sidebar.sidebar-open{
    display: block;
    visibility: visible;
}
#sidebar.fade-in,
#backdrop-sidebar.fade-in{
    opacity: 1;
    transition: all ease 0.2s;
}
#open-sidebar.hidden,
#close-sidebar.hidden{
    display: none;
}

/* Dropdown-Menu Navbar */
#sidebar{
    height: 100%;
}
.links li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
  }
.sub-menu-container{
    display: none;
    margin-top: calc(var(--navbar-height) - 2px);
}
.sub-menu{
    flex-direction: column;
    position: absolute;
    padding: 10px;
    width: fit-content;
    align-items: flex-start;
    left: 0;
    margin: 0;
    border-radius: 0 0 8px 8px;
    
    background-color: var(--navbar-backround);

    /* Border
    border-width: 0 2px 2px 2px;
    border-style: solid;
    border-color: var(--dark-accent);
    */
}
.sub-menu-container.opened,
.sub-menu-container.hover-open{
    display: flex;
}
@media (max-width: 768px){
    .has-sub-menu ul{
        position: relative;
    }
    .sub-menu-container{
        display: none;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease, margin-top 0.3s ease;
        width: 100%;
        margin: 0;
    }
    .sub-menu{
        padding: 5px 5px 5px 5px;
        margin-top: 10px;
        gap: 5px;
        top: 0;
        border-width: 0px;
    }
    .sub-menu::before,
    .sub-menu::after{
        position: absolute;
        content: "";
        height: 1px;
        width: 100%;
        background: var(--text-accent);
    }
    .sub-menu::before{
        top: 0;
    }
    .sub-menu::after{
        bottom: 0;
    }
    .sub-menu a{
        font-size: 18px;
        font-weight: lighter;
    }
    .sub-menu li{
        margin: 0;
    }
    .links li{
        height: auto;
        display: block;
    }
}
.sub-menu-container.sub-menu-open{
    display: flex;
}
.arrow{
    fill: var(--text-accent);
    top: -1px;
    width: 26px;
    height: 26px;
}
.arrow.turn{
    transform: rotate(180deg);
    transition: transform ease 0.3s;
}
/* Dropdown-Menu Navbar --> END */
/* Responsive Design */
.links a{
    text-transform: uppercase;
    font-weight: bold;
    font-size: clamp(15px, 2vw, 20px);
    text-wrap: nowrap;
    white-space: nowrap;
}
@media (max-width: 1300px){
    #nav-container{
        /*
        border-width: 0 0px 2px 0px;
        */
        box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
        border-radius: 0;
    }
    #logo{
        margin-left: 15px;
    }
}
@media (max-width: 768px){
    #open-sidebar{
        display: block;
    }
    #nav-container{
        justify-content: flex-end;
        overflow: visible;
    }
    #navigation{
        position: relative;
        right: 0;
        margin: 0;
        width: 250px;
        height: 100vh;
        overflow: hidden;
        visibility: hidden;
        z-index: 10;
     }
    #sidebar{
        position: relative;
        right: 0;
        margin: 0;
        width: 250px;
        height: 100%;
        background-color: var(--navbar-backround);
        display: none;
        opacity: 0;
        overflow: auto;
        border-width: 0 0 0 2px;
        border-style: solid;
        border-color: var(--dark-accent);
    }
    #backdrop-sidebar{
        position: absolute;
        display: none;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 0;
        z-index: 9;
    }
    nav ul{
        position: absolute;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        margin: 0;
        padding: 0;
        top: calc(var(--navbar-height) + 20px);
    }
    nav ul li{
        width: 80%;
        margin-inline: 20px;
        gap: 1.5rem;
    }
    .links a{
        text-transform: uppercase;
        font-weight: bold;
        font-size: clamp(15px, 2vw, 15px);
    }
    #logo{
        position: absolute;
        left: 0;
    }
}
@media (max-width: 480px){
    #navigation{
        width: 100%;
    }
    #sidebar{
        width: 100%;
    }
}
/* Navbar --> END*/
/* Header Backround */
#header-backround-container{
    width: 100%;
    height: 500px;
    position: absolute;

}
#header-backround{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;

}
.blackColor{
    background-color: rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 100%;
    position: absolute;

}
.header-banner {
    inset: 0;
    padding: var(--navbar-height, 80px) 20px 20px 20px;
    overflow: hidden;
    max-width: 1300px;
    margin: auto;
    box-sizing: border-box;
    height: 100%;
  }
.header-widget{
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 15px;
    top: 50px;
    min-width: min-content;
    max-width: 700px;
    /*
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    */
    background-color: var(--navbar-backround);
    border-radius: 5px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}
h1{
    color: var(--text-headlines);
    font-weight: bold;
}
.header-widget-top,
.header-widget-mid{
    margin-bottom: 20px;
    position: relative;
    height: min-content;
}
.header-widget-top h1{
    padding-bottom: 5px;
}
.header-widget-top::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: gray;
}
.header-widget-bottom{
    display: flex;
    width: 100%;
    gap: 15px;
}
.header-widget-btn{
    display: flex;
    height: 40px;
    background-color: var(--text-headlines);
    color: #FFFFFE;
    border-radius: 8px;
    text-wrap: nowrap;
    cursor: pointer;
}
.header-widget-btn a{
    font-size: clamp(6px, 4vw, 22px);
    width: 100%;
    display: flex;
    align-items: center;
    padding-inline: 10px;
}

/*  .btn-a{ If second btn needed 
} */

/* Widget Btn Hover Effect */
.header-widget-btn:hover{
    background-color: transparent;
    box-shadow: 0 0 0px 2px inset var(--text-headlines);
    color: var(--text-headlines);
    transition: all ease 0.3s;
}

@media (max-width: 350px){
    .header-widget{
        width: 100%;
        border-inline: 0;
        border-radius: 0;
    }
    .header-banner{
        padding-inline: 0;
    }
}


#about{
    display: flex;
    justify-content: center;
    background-color: var(--light-shades);
}
.about-container{
    transform: translateY(-40px);
    width: 80%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 1rem;
}
.about-content{
    background-color: var(--navbar-backround);
    border-radius: 8px;
    padding: 10px;
    margin: 5px;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.06);

}
.about-content h3{
    font-size: clamp(0.8rem, 4vw, 1.4rem);
    font-weight: 500;
    color: var(--text-headlines);
}
.about-content a{
    font-size: clamp(0.6rem, 3vw, 1rem);
}
#uberuns{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0 50px 0;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
    z-index: 2;
    position: relative;
}
.uberuns-container{
    max-width: 1300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: right;
    align-items: center;
}
.uberuns-content h4{
    color: var(--text-headlines);
    font-size: clamp(0.8rem, 4vw, 1.4rem);
    position: relative;
    margin-bottom: 10px;
}
.uberuns-content{
    padding-bottom: 50px;
    margin-inline: 50px;
}
.uberuns-container img{
    max-width: 300px;
    height: auto;
    margin-right: 50px;
}
@media(max-width: 768px){
    .uberuns-container{
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .uberuns-container img{
        margin: 0;
    }
}
@media(max-width: 300px){
    .uberuns-container img{
        width: 100%;
    }
}
#cards{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-shades);
}
.cards-container{
    max-width: 1300px;
    width: 100%;
    padding: 0 25px 50px 25px;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 15px;
    justify-content: center;
    box-sizing: border-box; 
    overflow-x: hidden;       
}
@media(max-width: 1325.5px){
    .cards-container{
        grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 300px));
    }
}
@media(max-width: 998.5px){
    .cards-container{
        grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 300px));
    }
}
.card-content{
    width: 100%;
    background-color: var(--navbar-backround);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-rows: 1fr auto;
}
.card-content img{
    width: 100%;
    height: auto;
}
.card-content div div{
    padding: 10px;
}
.card-info{
    grid-row: 2;
    top: 0;
}
.card-content h4{
    color: var(--text-headlines);
    font-size: clamp(0.6rem, 5vw, 1.2rem);
    position: relative;
    margin-bottom: 10px;
}
.card-content h4::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--text-dark);
    bottom: 0;
    left: 0;
}
.card-content p{
    font-size: clamp(0.5rem, 4vw, 1rem);
    color: var(--text);
}
.card-btn{
    grid-row: 3;
    width: 100%;
    height: 50px;
    background-color: var(--text-headlines);
    color: var(--text-light);
    cursor: pointer;
}
.card-btn a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-btn:hover{
    background-color: transparent;
    box-shadow: 0 0 0px 2px inset var(--text-headlines);
    color: var(--text-headlines);
    transition: all ease 0.3s;
}

.card-design {
  border-top: 4px solid var(--text-headlines);
  border-radius: 2px;
}






/* */



#cards-columne{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-shades);
}
.cards-columne-container{
    max-width: 1300px;
    width: 100%;
    padding: 0 25px 50px 25px;
    margin-top: 50px;
    justify-content: center;
    box-sizing: border-box; 
    overflow-x: hidden;       

    display: flex;
    flex-direction: column;
    gap: 15px;
}
.card-columne-content{
    background-color: var(--navbar-backround);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}
.card-columne-info{
    padding: 10px;
}
.card-columne-content h4{
    color: var(--text-headlines);
    font-size: clamp(0.6rem, 5vw, 1.2rem);
    position: relative;
    margin-bottom: 10px;
}
.card-columne-content h4::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--text-dark);
    bottom: 0;
    left: 0;
}
.card-columne-content p{
    font-size: clamp(0.5rem, 4vw, 1rem);
    color: var(--text);
}
.card-columne-btn{
    max-width: 200px;
    background-color: var(--text-headlines);
    color: var(--text-light);
    cursor: pointer;
    align-self: flex-end;
    border-radius: 5px;
    margin: 10px;
}
.card-columne-btn a,
.card-columne-btn-row a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.6rem, 3vw, 1rem);
    padding: 10px;
}
.card-columne-btn:hover{
    background-color: transparent;
    box-shadow: 0 0 0px 2px inset var(--text-headlines);
    color: var(--text-headlines);
    transition: all ease 0.3s;
}
.card-columne-btn-row{
    display: flex;
    gap: 10px;
    align-self: flex-end;
    margin: 10px;
}
.btn-row-c{
    max-width: 200px;
    background-color: var(--text-headlines);
    color: var(--text-light);
    cursor: pointer;
    border-radius: 5px;
}

.btn-row-c:hover{
    background-color: transparent;
    box-shadow: 0 0 0px 2px inset var(--text-headlines);
    color: var(--text-headlines);
    transition: all ease 0.3s;
}

.card-icon{
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
.card-columne-icon{
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}
.card-columne-icon h4{
    width: 100%;
}
/**/





#contact{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-shades);
    padding: 50px 25px 50px 25px;
}
.contact-container{
    max-width: 1300px;
    display: flex;
    justify-content: center;
    width: 100%;
    /*
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    */
}
.contact-container div{
    max-width: 1250px;
    width: 100%;
}
.contact-form{
    display: grid;
    gap: 15px;
    padding: 20px;
    border-radius: 5px;
    justify-items: center;
    background-color: var(--card-color);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.06);        
}
.contact-form .field{
    padding: 20px;
    width: 100%;
    border: none;
    border-bottom: 2px solid gray;
    background-color: var(--light-shades);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
}
.contact-form .field:focus{
    outline: none;
    border-color: var(--text-accent);
}
.contact-container h1{
    position: relative;
    width: max-content;
}
.contact-container h1::after{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    width: 60%;
    height: 3px;
    background-color: var(--text-accent);
}
.contact-form h2{
    justify-self: start;
    margin: 5px 0 0 5px;
}
textarea.field{
    height: 100px;
    resize: none;
}
.contact-btn{
    justify-self: end;
    padding: 8px;
}
.contact-btn{
	padding: 10px 24px;
	background: var(--text-headlines);
	border: none;
	outline: none;
	color: var(--text-light);
	display: flex;
	font-weight: 500;
	cursor: pointer;
	transition: .3s ease;
	border-radius: 4px;
	position: relative;
	font-size: 16px;
	margin-bottom: 10px;
	float: right;
}
.contact-btn:hover{
    color: var(--text-headlines);
    background-color: var(--card-color);
    box-shadow: 0 0 0px 2px inset var(--text-headlines);
}
.contact-btn .icon{
	margin-right: 14px;
	position: relative;
}
.contact-btn.active .icon{
	animation: animatecar 2s ease-in-out forwards;
}
.contact-btn::before {
	content: 'Gesendet';
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background: var(--text-accent);
	justify-content: center;
	align-items: center;
	overflow: hidden;
	display: flex;
	transition: all 1s ease-in-out;
	transition-delay: 1s;
	border-radius: 4px;
}
.contact-btn.active::before{
	width: 100%;
}
@keyframes animatecar {
	0%, 5%{
		left: 0;
	}
	25%{
		left: 0;
	}
	50%{
		left: -24px;
	}
	100%{
		left: calc(100% + 24px);
	}
}
.contact-form label{
    justify-self: start;
    margin-left: 5px;
}
.form-checkbox{
    display: flex;
}
.captcha-box{
    justify-self: start;
    padding: 20px;
    width: 100%;
    border: none;
    border-bottom: 2px solid gray;
    background-color: var(--light-shades);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
}
.captcha-box:focus{
    outline: none;
    border-color: var(--text-accent);
}
.contact-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 80px;
}
.contact-info h1{
    align-self: center;
}

.contact-address, .contact-time{
    display: flex;
    flex-direction: column;
    padding: 15px;
    max-width: 500px;
    gap: 15px;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.06);
    background-color: var(--light-shades);
    border-radius: 5px;
}
.contact-time ul,
.contact-address ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-time li,
.contact-address li{
    position: relative;
    display: flex;
    flex-direction: column;
    text-wrap: nowrap;
    gap: 4px;
}
.contact-time li::after,
.contact-address li::after{
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: var(--dark-shades);
}
@media(max-width: 768px){
    .contact-container{
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .contact-info{
        display: block;
        width: 100%;
        max-width: 500px;
        padding: 15px;
        background-color: var(--light-shades);
        border-radius: 5px;
        box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.06);
    }
    .contact-address,
    .contact-time{
        border-radius: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
        margin-bottom: 15px;
    }
}
.c-link{
    font-weight: bold;
    color: var(--text-headlines);
    text-decoration: underline;
}
.error-message{
    color: red;
    justify-self: start;
}
.success-message{
    color: green;
    justify-self: end;
}
#reviews{
    margin: 50px 0 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.review-container{
    max-width: 1300px;
    width: 100%;
    margin-inline: 25px;
}
#map-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.map-section-container{
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 15px 10px 15px;
}
.map-section-container h5{
    font-size: clamp(1.2rem, 4vw, 2rem);
    color: var(--text-headlines);
}
#regions{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 0 50px 0;
    background-color: var(--light-shades);
}
#regions h4{
    font-size: clamp(1.7rem, 3.5vw, 3rem);
    color: var(--text-headlines);
    margin-bottom: 15px;
    text-wrap: nowrap;
}
.regions-container{
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    justify-items: center;
    gap: 20px;
    padding: 0 25px 0 25px;
}
.region-content{
    width: min(400px, 100%);
    position: relative;
    box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}
.zoom-hover {
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.zoom-hover img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease 0.4s;
}
.zoom-hover:hover img{
    transform: scale(1.1);
}
.the-region{
    position: absolute;
    padding: 8px;
    bottom: 30px;
    max-width: 100%;
    background-color: var(--card-color);
    box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.06);
    transition: all ease 0.4s;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    text-wrap: nowrap;
}
.the-region h5{
    font-size: clamp(1.1rem, 4vw, 1.6rem);
}
.the-region:hover{
    background-color: var(--dark-shades);
    color: var(--text-light);
}
@media(max-width: 1308.5px){
    .regions-container{
        grid-template-columns: 1fr;
        justify-content: center;
    }
    .region-content{
        width: 100%;
        height: 400px;
    }
}
@media(max-width: 350px){
    .the-region{
        width: 100%;
        border-radius: 0;
    }
}
#footer-container{
    display: flex;
    justify-content: center;
    background-color: var(--footer-backround);
    font-size: clamp(8px, 6vw, 30px);
    font-size: clamp(6px, 5vw, 22px); 
}
.footer-rows-container{
    max-width: 1300px;
    width: 100%;
    height: fit-content;
    padding: 15px;
}
.footer-rows{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 15px;
    width: 100%;
    justify-items: center;
}
.footer-rows .logo{
    padding: 15px 0 15px 0;
    max-width: 400px;
}
.footer-rows h2{
    font-size: 25px;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    padding: 5px 0 5px 0;
    width: max-content;
}
.footer-rows h2::before,
.footer-rows h2::after{
    position: absolute;
    content: "";
    height: 3px;
    width: 35%;
    background-color: var(--text-headlines);
    border-radius: 5px;
}
.footer-rows h2::before{
    top: 0;
    right: 0;
}
.footer-rows h2::after{
    bottom: 0;
    left: 0;
}
.footer-rows p{
    color: var(--text-dark);
}
.footer-rows div img{
    max-width: 130px;
    height: auto;
}
.rights{
    display: flex;
    gap: 5px;
    margin-top: 15px;
    color: var(--text-dark);
    font-size: min(1rem, 1vw, 2rem);
}
.rights .name{
    color: var(--text-headlines);
}
.rights a,
.rights p{
    font-size: min(1.2rem, 1.5vw, 1.8rem);
}
.footer-rows h4,
.footer-rows h2{
    font-size: min(1.4rem, 2.2vw, 1.6rem);
}
.footer-rows a,
.footer-rows p{
    font-size: min(1.1rem, 2.2vw, 1.2rem);
}
.footer-person{
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px;
}
.footer-person h4,
.footer-person h5,
.footer-person a{
    color: var(--text-dark);
}
.person-text{
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-wrap: nowrap;
}
.person-text div a:hover{
    text-decoration: underline;
}
.person-text div{
    display: flex;
    gap: 10px;
    align-items: center;
}
.person-text div img{
    max-width: 20px;
    height: auto;
    color: var(--text-dark);
}
@media (max-width: 900px){
    .footer-rows div img{
        max-width: 120px;
        height: auto;
    }
    .person-text div img{
    max-width: 20px;
    height: auto;
    color: var(--text-dark);
    }
}
@media (max-width: 649.5px){
    .footer-rows h4,
    .footer-rows h2{
        font-size: min(1.8rem, 4vw, 1.9rem);
    }
    .footer-rows a,
    .footer-rows p{
        font-size: min(1.6rem, 3vw, 1.7rem);
    }
    .rights a,
    .rights p{
        font-size: min(1.6rem, 2vw, 1.7rem);
    }
    .footer-rows div img{
        max-width: 35vw;
        height: auto;
    }
    .footer-rows{
        grid-template-columns: repeat(auto-fit, minmax(min(100%), 1fr));
    }
    .person-text div img{
    max-width: 20px;
    height: auto;
    color: var(--text-dark);
    }
}


#impressum {
    display: flex;
    justify-content: center;
    padding: clamp(40px, 6vw, 80px) 25px;
    background-color: var(--light-shades);
}

.impressum-container {
    max-width: 1300px;
    width: 100%;
    background-color: var(--navbar-backround);
    padding: clamp(25px, 4vw, 50px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

#impressum h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-headlines);
    margin-bottom: 35px;
    position: relative;
    width: max-content;
    font-weight: 700;
}

#impressum h1::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 4px;
    background-color: var(--text-accent);
    border-radius: 4px;
}

#impressum h2 {
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    color: var(--text-headlines);
    margin-top: clamp(25px, 4vw, 45px);
    margin-bottom: 12px;
    font-weight: 600;
}

#impressum p,
#impressum li {
    font-family: 'Inter', sans-serif;
    color: #000000;
    line-height: 1.75;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
}

#impressum p {
    margin-bottom: 12px;
}

#impressum ul {
    margin: 12px 0 12px 20px;
}

#impressum ul li {
    list-style-type: disc;
    margin-bottom: 6px;
}

#impressum a {
    font-size: inherit;
    color: var(--text-headlines);
    text-decoration: underline;
    transition: color 0.3s ease;
}

#impressum a:hover {
    color: var(--text-accent);
}


.beschwerde-block {
    margin-top: 10px;
}

.beschwerde-block p {
    margin-bottom: 22px;
}

.beschwerde-block p:last-child {
    margin-bottom: 0;
}



@media (max-width: 600px) {
    .impressum-container {
        padding: 25px 20px;
    }
    #impressum {
        padding: 0;
}
    #impressum p,
    #impressum li {
        line-height: 1.6;
    }
}

#impressum p,
#impressum li,
#impressum a 
#impressum h2{
    overflow-wrap: break-word;
    word-break: break-word;
}

#datenschutz {
    display: flex;
    justify-content: center;
    padding: 60px 25px;
    background-color: var(--light-shades);
}

.datenschutz-container {
    max-width: 1300px;
    width: 100%;
    background-color: var(--navbar-backround);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 4px 4px 15px rgba(0,0,0,0.06);
    word-wrap: break-word;
}

/* Hauptüberschrift */
#datenschutz h1 {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    color: var(--text-headlines);
    margin-bottom: 30px;
    position: relative;
    width: max-content;
}

#datenschutz h1::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60%;
    height: 3px;
    background-color: var(--text-accent);
    border-radius: 3px;
}

/* Abschnittsüberschriften */
#datenschutz h2 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    color: var(--text-headlines);
    margin-top: 35px;
    margin-bottom: 10px;
}

/* Fließtext */
#datenschutz p,
#datenschutz li {
    font-family: 'Inter', sans-serif;
    color: #000000;
    line-height: 1.7;
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    margin-bottom: 20px;
}

/* Links */
#datenschutz a {
    font-size: inherit;
    color: var(--text-headlines);
    text-decoration: underline;
}

#datenschutz a:hover {
    color: var(--text-accent);
}

/* Responsive */
@media (max-width: 600px) {
    .datenschutz-container {
        padding: 25px;
    }
}
