/* Theme Name: Haudegen Theme 1.0
Version: 1.0
Author: Haudegen Webdesign
Author URI: https://haudegen-webdesign.de */

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter24pt-Regular.eot');
    src: url('fonts/Inter24pt-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Inter24pt-Regular.woff2') format('woff2'),
        url('fonts/Inter24pt-Regular.woff') format('woff'),
        url('fonts/Inter24pt-Regular.ttf') format('truetype'),
        url('fonts/Inter24pt-Regular.svg#Inter24pt-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap; 
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter24pt-Bold.eot');
    src: url('fonts/Inter24pt-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Inter24pt-Bold.woff2') format('woff2'),
        url('fonts/Inter24pt-Bold.woff') format('woff'),
        url('fonts/Inter24pt-Bold.ttf') format('truetype'), 
        url('fonts/Inter24pt-Bold.svg#Inter24pt-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #0F1824 !important;
    --blue: #537EBB !important;
    --light-blue: #D3DEE6 !important;
    --white: #f6f6f6 !important;
    --grey: #9a9a9a !important;
    --dark-white: #ccc !important;
    --border-white: solid 1px #ccc;
    --border-yellow: solid 2px var(--yellow);
}


html {
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 2rem;
}

body.fixed {
    overflow: hidden;
}

.body-overlay{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.1s;
    background-color: black;
    transform: translateX(100vw);
    z-index: 3;
}

body.fixed .body-overlay {
    opacity: 0.8;
    transform: translateX(0);
}


@keyframes grow {
    0% {
        transform: scale(0.1);
    }

    100% {
        transform: scale(1);
    }

}

img {
    max-width: 100%;
    height: auto;
}

.grecaptcha-badge {
    z-index: 3;
}

body::-webkit-scrollbar {
    -webkit-appearance: none;
}

body::-webkit-scrollbar:vertical {
    width: 0;
    overflow-x: hidden;
    position: relative;
}


body::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white; /* should match background, can't be transparent */
    background-color: rgba(0, 0, 0, .5);
}

.desktop-only {
    display: none;
}




/*----------------------------------------
----------------TYPOGRAPHY----------------
----------------------------------------*/

.headline, h1, h2, h3, h4, h5, h6 {
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-weight: 700;
}

.headline.subheadline, .headline.mini-headline  {
    font-size: 1.2rem;
    line-height: 1.6rem;
    font-weight: 700;
}

.headline.headline-404 {
    font-size: 90px;
    line-height: 85px;
}

.bold, strong, .headline-p.bold, p.bold {
    font-weight: 700;
}

p, .headline-p, input, a, adress, .wpcf7-response-output, textarea, ul, li {
    font-size: 1rem;
    font-weight: normal;
    color: var(--black);
    line-height: 1.8rem;
}

.zitat {
    font-size: 20px;
    line-height: 32px;
    color: var(--grey);
    font-weight: 400;
    text-align: center;
}

ol, ul {
    padding-left: 15px;
}

ul.white li {
    color: var(--white);
    margin-left: 15px;
}

ul.white li.yellow {
    color: var(--yellow);
}

li {
    margin-top: 10px;
}

.align-center {
    text-align: center;
}

a {
    text-decoration: none;
}

.black {
    color: var(--black);
}

.white, .white p {
    color: var(--white);
}

.blue {
    color: var(--blue);
}

.grey, .grey p {
    color: var(--grey);
}

.dark-white {
    color: var(--dark-white);
}

.underline {
    text-decoration: underline;
}



/*---------------BUTTON--------------*/

.button, .wpcf7-submit {
    padding: 7px 30px;
    z-index: 1;
    color: white;
    font-weight: 700;
    display: inline-block;
    background-image: url(/wp-content/uploads/2026/05/deinzer-button-100.jpg)
}

.button.black {
    background-color: var(--black);
    color: var(--yellow);
}


.wpcf7-submit  {
    padding: 4px 30px;
}










/*----------------------------------------
-------------MARGIN & PADDING-------------
----------------------------------------*/

.ma-bo {
    margin-bottom: 20px;
}

.ma-bo-10 {
    margin-bottom: 10px;
}

.ma-bo-30 {
    margin-bottom: 30px;
}

.ma-bo-40 {
    margin-bottom: 40px;
}

.ma-top {
    margin-top: 40px;
}

.ma-top-20 {
    margin-top: 20px;
}

.section-padding{ 
    padding: 40px;
}






/*----------------------------------------
---------------FLEX & GRID----------------
----------------------------------------*/


.double-grid, .triple-grid {
    display: grid;
}

.no-gap-grid {
    gap: 0 !important;
}

.flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex-start {
    align-items: flex-start;
}

.flex-top {
    align-items: flex-start;
    justify-content: flex-start;
}

.flex-end {
    align-items: flex-end;
}

.flex-horizontal {
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
    top: 0;
    left: 0;
}

.gap-40 {
    gap: 40px;
}

.gap-20 {
    gap: 20px;
}

.gap-10 {
    gap: 10px;
}

.gap-5 {
    gap: 5px;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}






/*----------------------------------------
------------------HEADER------------------
----------------------------------------*/

header {
    overflow: hidden;
    position: relative;
}

#navi-big {
    display: none;
}

#header-bar {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: auto 1fr;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.logo-box {
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--blue);
}

.logo {
    width: 170px;
}

.header-bar-div {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}


#burger-box {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    margin-left: auto;
    margin-right: 30px;
}

.burger-bar {
    width: 30px;
    margin: 3px;
    transition-delay: 1s;
    transition: 0.5s;
    transition-timing-function: ease-in-out;
    transform-origin: center;
}

#burger-box.allright .burger-bar:nth-of-type(1) {
    transform: rotate(40deg);
    margin-bottom: -7px;
}

#burger-box.allright .burger-bar:nth-of-type(2) {
    opacity: 0;
    transform: translateX(50px);
}

#burger-box.allright .burger-bar:nth-of-type(3) {
    transform: rotate(-40deg);
    margin-top: -7px;
}


.second-header-bar {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    padding: 5px 40px;
    background-color: var(--black);
    position: relative;
    z-index: 5;
}

.second-header-bar-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.second-header-icon {
    width: 20px;
    height: 20px;
}

#navi-small, .navi-second-box {
    position:  fixed;
    top: 0;
    right: 0;
    z-index: 4;
    transform: translateX(110vw);
    transition: 0.4s ease-out;
    width: 35vw;
    height: 100vh;
    background-color: #f8f8f8;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 110px 40px 40px 30px;
    justify-content: flex-start !important;
}

#navi-small {
    width: calc(100vw - 70px);
}

#navi-small.aktiv, .navi-second-box.aktiv {
    transform: translateX(0);
}


.navi-closer {
    position: absolute;
    right: 40px;
    top: 90px;
    cursor: pointer;
    width: 18px;
}


.navi-div, .navi-div.navi-oberpunkt {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.navi-oberpunkt.aktiv-text span, .navi-div:hover span, .navi-closer:hover {
    color: var(--blue);
    transition: color 0.3s ease;
}

.navi-oberpunkt span {
    transition: color 0.3s ease;
}


/*------------------------------------------
-----------------ANIMATION------------------
------------------------------------------*/


.transform {
    opacity: 0;
}

.transform.aktiv {
    animation-fill-mode: forwards;
    animation-duration: 1s;
}



.delay-one {
    animation-delay: 0.2s;
}

.delay-two {
    animation-delay: 0.4s;
}

.delay-three {
    animation-delay: 0.6s;
}

.delay-four {
    animation-delay: 0.8s;
}

.delay-five {
    animation-delay: 1s;
}

.delay-six {
    animation-delay: 1.2s;
}

.delay-seven {
    animation-delay: 1.4s;
}

.delay-eight {
    animation-delay: 1.6s;
}

.delay-nine {
    animation-delay: 1.8s;
}

.delay-max {
    animation-delay: 2s;    
}

.duration-one {
    animation-duration: 0.2s;
}

.duration-two {
    animation-duration: 0.4s;
}

.duration-three {
    animation-duration: 0.6s;
}

.duration-four {
    animation-duration: 0.8s;
}

.duration-five {
    animation-duration: 1s;
}

.duration-six {
    animation-duration: 1.2s;
}

.duration-seven {
    animation-duration: 1.4s;
}

.duration-eight {
    animation-duration: 1.6s;
}

.duration-nine {
    animation-duration: 1.8s;
}

.duration-max {
    animation-duration: 2s;    
}

.transform.animation-duration {
    animation-duration: 2s;
}

.transform-big.aktiv  {
    animation-name: transform-big;
}

.transform-very-big.aktiv  {
    animation-name: transform-very-big;
}

.transform-middle.aktiv {
    animation-name: transform-middle;
}

.transform-small.aktiv {
    animation-name: transform-small;
}

.transform-star.aktiv {
    animation-name: star-animation;
}



@keyframes transform-small {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes transform-middle {
    0% {
        transform: translateY(300px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes transform-big {
    0% {
        transform: translateY(500px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }

}

@keyframes transform-very-big {
    0% {
        transform: translateY(800px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }

}



/*----------------------------------
---------------MAIN-----------------
----------------------------------*/

.hero-full-content {
    padding: 40px;
}

.absolute-headline {
    position: absolute;
    color: white;
    left: 20px;
    bottom: 20px;
}

.black-bg {
    background-color: var(--black);
}

.light-blue-bg {
    background-color: var(--light-blue);
}

.background {
    background-size: cover;
    background-position: center;
}

.grunge-bg {
    background-image: url(/wp-content/uploads/2026/05/background-grunge-mobil-scaled.jpg);
}

.overflow-hidden {
    overflow: hidden;
}

.max-width {
    max-width: 700px;
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
}

.max-width-1100 {
    max-width: 1100px;
}

.event-grid {
    display: grid;
    gap: 40px;
}

.event-card {
    border: solid 1px var(--grey);
}

.event-content-div {
    padding: 20px;
}

.event-tickets .tribe-tickets__rsvp-wrapper {
    border-radius: 0 !important;
    border: solid 1px var(--black) !important;
    background-color: var(--white) !important;
}

.tribe-common .tribe-common-c-btn, .tribe-common a.tribe-common-c-btn, .tribe-common button.tribe-common-c-btn {
    background-color: var(--yellow) !important;
    border-radius: 20px !important;
}

.kontakt-icon-div {
    display: grid;
    grid-template-columns: 20px auto;
    grid-gap: 7px;
}

.kontakt-icon-div img {
    margin: auto;
}


.download-div {
    display: grid;
    gap: 20px;
}



/* Verhindert, dass der Swiper das CSS Grid auf dem Desktop sprengt */
.swiper-grid-column {
    min-width: 0;
    width: 100%;
}

.bilder-swiper .swiper-slide {
    overflow: hidden;
}

/* Stellt sicher, dass die Bilder responsiv in der Grid-Spalte bleiben */
.bilder-swiper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* === PAGINATION AUSSERHALB DES SLIDERS === */

/* Löst die Punkte aus der Überlagerung und setzt sie unter die Bilder */
.bilder-swiper .swiper-pagination {
    position: relative !important; 
    margin-top: 20px; /* Abstand zwischen den Bildern und den Punkten */
    bottom: auto !important; /* Hebt den Swiper-Standardwert auf */
}

/* Die inaktiven Punkte (Weiß, leicht transparent passend zum black-bg) */
.bilder-swiper .swiper-pagination-bullet {
    background-color: #ffffff;
    opacity: 0.5;
}

/* Der aktive Punkt in Weissmann-Gelb */
.bilder-swiper .swiper-pagination-bullet-active {
    background-color: var(--yellow) !important; 
    opacity: 1;
}




/*----------------------------------
-----------------FAQ----------------
----------------------------------*/


.faq-icon {
    width: 15px;
    transition: 0.5s;
    transform: rotate(-90deg);
    margin-top: 10px;
}


.faq-icon.activated {
    rotate: 180deg;
}

.faq-question {
    display: flex;
    padding: 20px 10px;
    justify-content: space-between;
    align-items: flex-start;
}

.faq-answer {
    max-height: 0px;
    overflow: hidden;
    transition: 0.6s;
}

.faq-answer p {
    opacity: 0;
    transition: 0.6s;
    margin: 20px;
}

.faq-answer.activated {
    max-height: 1350px;
}

.faq-answer.activated p {
    opacity: 1;
}


.faq-answer .faq-strich {
    visibility: hidden;
    height: 1px;

}


.faq-answer.activated .faq-strich {
    visibility: visible;
}






/*----------------------------------
----------------KONTAKT-------------
----------------------------------*/


.wpcf7-form {
    position: relative;
    z-index: 1;
}

.wpcf7-form-control:not(.wpcf7-submit) {
    outline: none;
    width: 300px;
    padding-left: 5px;
}


.wpcf7-list-item {
    margin: 5px 0 0 -5px !important;
}

.wpcf7-submit {
    margin-top: 20px;
    z-index: 2;
}

.wpcf7-submit, .wpcf7-acceptance {
    border: none;
}

textarea {
    height: 200px;
}

.wpcf7 form.sent .wpcf7-response-output {
    border: 2px solid var(--blue) !important;
    border-color: var(--blue) !important;
}




/*----------------------------------
-----------------BLOG---------------
----------------------------------*/

.blog-kategorie {
    padding: 10px 20px;
    background-color: var(--black);
    position: absolute;
    left: 0;
    bottom: 0;
}

.blog-card {
    border: solid 1px var(--black);
}

.blog-card-content {
    padding: 20px;
}







/*----------------------------------
----------------FOOTER--------------
----------------------------------*/

footer {
    padding: 60px 30px;
    display: grid;
    grid-gap: 40px;
    background-color: var(--black);
}

.footer-grid {
    display: grid;
    gap: 40px;
}

footer .flex {
    margin-bottom: auto;
}

.footer-logo {
    width: 260px;
    margin-left: -10px;
}

.footer-div a {
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.footer-div a:hover {
    color: white;
} 




@media(min-width: 800px) {

    .headline {
        font-size: 35px;
        line-height: 50px;
    }

    h1, h2, h3, h4, h5, h6 {
        font-size: 25px;
        line-height: 33px;
    }
    
    .subheadline {
        font-size: 20px;
        line-height: 30px;
    }

    .button, .wpcf7-submit {
        padding: 15px 50px;
    }

    .hero-full {
        height: 78vh;
        overflow: hidden;
    }

    .hero-full-content {
        padding: 60px 120px;
    }

    .hero-full-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-full-content {
        max-width: 40vw;
        position: absolute;
        left: 8vw;
        bottom: 60px;
        padding: 0;
    }

    .hero-full-text, .hero-full-headline {
        color: white;
    }

    .section-padding { 
        padding: 60px 120px;
    }

    .section-padding.widget-padding {
        padding: 40px 120px;
    }
    

    .second-header-bar {
        padding: 5px 120px;
    }

    #navi-small {
        width: 50vw;
    }

    .wpcf7-form-control:not(.wpcf7-submit) {
        width: 330px;
    }

    .download-div {
        grid-template-columns: 1fr auto;
        gap: 20px;
    }

    .download-image {
        width: 100px;
    }






}





@media(min-width: 1200px) {

    
    .desktop-only {
        display: block;
    }

    .mobile-only {
        display: none;
    }

    .hero-full-headline.headline {
        font-size: 3.2rem;
        line-height: 4.2rem;
    }

    .headline {
        font-size: 2.1rem;
        line-height: 3.2rem;
    }

    .section-padding {
        padding: 80px 8vw;
    }

    .logo {
        width: 210px;
    }

    .second-header-bar {
        padding: 5px 120px;
    }

    #navi-small, #burger-box {
        display: none;
    }

    #navi-big {
        display: flex;
        gap: 40px;
        justify-content: flex-end;
    }

    .navi-big-top-menue {
        padding: 10px 0;
        display: flex;
        gap: 40px;
    }

    #navi-big .navi-punkt {
        margin-bottom: 0;
        letter-spacing: 1px;
    }

    .navi-second-box {
        width: 20vw;
        padding: 130px 40px 40px 30px;
    }

    .navi-closer {
        right: 50px;
        top: 110px;
        width: 25px;
    }

    .double-grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 80px;
    }

    .triple-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .grunge-bg {
        background-image: url(/wp-content/uploads/2026/05/background-scaled.jpg);
    }

    .event-card {
        display: grid;
        grid-template-columns: 30% 70%;
    }

    /*----------------FOOTER--------------*/

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 80px;
    }

    
    /*---------KONTAKT-----------*/

    textarea {
        height: 150px;
    }

    .wpcf7-form-control:not(.wpcf7-submit) {
        width: 600px;
    }


}




@media(min-width: 1600px) {

    .section-padding {
        padding: 100px 12vw;
    }

    .section-padding.widget-padding {
        padding: 40px 12vw;
    }

    .second-header-bar {
        padding: 5px 12vw;
    }

    .hero-full-content {
        left: 12vw;
        bottom: 100px;
    }

    .swiper-post {
        min-height: 550px;
    }
    
    header.kontakt {
        background-size: 25%;
    }


}