:root {
    --logobox: #AE7257;
    --logostrahlhell: #BC9F8F;
    --logostrahldunkel: #48403A;
    --logofontdunkel: #48403A;    /* identisch */
    --logofonthell: #944B24;
    --hellblau: #E7EFF8;    /* 15% originalblau */
    --originalblau: #4387C7;

    --schwarz: #000000;
    --schwarzschatten: rgba(0, 0, 0, 0.2);
    --schwarztransparent: rgba(0, 0, 0, 0.87);
    --weiss: #FFFFFF;
    --weisstransparent: rgba(255, 255, 255, 0.95);
    --weisstransparent2: rgba(255,255,255,0.7);
    --weissdurchscheinend: rgba(255, 255, 255, 0.5);
    --weissblass: rgba(255, 255, 255, 0.3);
    --weissblass2: rgba(255, 255, 255, 0.2);
    --weissblass3: rgba(255,255,255,0.15);
    --weisshauch: rgba(255, 255, 255, 0.1);
    --weisshauch2: rgba(255, 255, 255, 0.05);
    --offwhite: #F8F8F8;
    --offwhite2: #F0F0F0;
    --hellgrau: #EBEBEB;
    --hellgrau2: #CCCCCC;
    --mittelgrau: #333333;
    --grau: #555555;
    --braun: #AA7A5E;
    --braun2: #8B5E3C;    /* hover */
    --braun3: #86604A;
    --hellbraun: rgba(175, 144, 116, 0.95);  /* Button Hero-Slider */
    --dunkelbraun: #6A5036;
    --blau: #2FA5DA;
    --hellblau: #CDE3EE;
    --dunkelblau: #00456F;
    --warnung: rgb(215, 0, 29);   /* Fehlermeldung */
    --erfolg: rgb(16, 116, 31);   /* Erfolgsmeldung */
}


/* Fonts */

/* montserrat-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/montserrat-v29-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-regular - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v29-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/montserrat-v29-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v29-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/montserrat-v29-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* Allgemeine Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--schwarz);
    overflow-x: hidden;
}

.container {
    max-width: 1080px;
    padding: 0 2em;
    margin: 0 auto;
}

h1 {
    font-size: 1.6em;
    font-weight: 700;
}

h2 {
    font-size: 1.6em;
    font-weight: 300;
}

h3 {
    font-size: 1.35em;
    font-weight: 700;
}

h4 {
    font-size: 1.3em;
    font-weight: 300;
    margin-bottom: 2em;
}

h5 {
    font-size: 1em;
    font-weight: 700;
}

h6 {
    font-size: 0.925em;
    font-weight: 700;
}

p, label, input {
    font-size: 0.85em;
    font-weight: 400;
}

button {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.85em;
    font-weight: 600;
    display: block;
    margin-top: 1em;
    color: var(--braun);
    background: transparent;
    border: 1px solid var(--braun);
    padding: 0.5em 2em;
    cursor: pointer;
}

hr {
    width: 3.5em;
    border-top: 0.25em solid var(--blau);
    margin: 1em auto;
    margin-bottom: 8em;
}

a {
    text-decoration: none;
}

p.introtext {
    font-size: 1em;
}

/* Header */
#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: var(--weiss);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2em;
    transition: transform 0.3s ease-in-out, position 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

#header.fixed {
    position: fixed;
    transform: translateY(0);
}

#header.hidden {
    transform: translateY(-100%);
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#header .logo {
    flex-shrink: 0;
    width: 20%;
    padding: 0.75em 1.5em 0.75em 0;
}

#header .menu {
    display: flex;
    align-items: flex-end;
}

#header .menu ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

#header .menu ul li {
    margin: 0 2em 0.2em 0;
}

#header .menu ul li a,
.tooltip:hover .tooltiptext a {
    text-decoration: none;
    color: var(--schwarz);
    font-weight: regular;
    font-size: 0.8em;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 12.5ch;
    top: 100%;
    left: 0%;
    margin-left: -1em; /* Use half of the width  */
    background-color: rgba(255,255,255,0.9);
    color: #000000;
    text-align: left;
    padding: 0.8em 1em;
    border-radius: 1px;
    box-shadow: 2px 5px 10px rgba(0,0,0,0.1);
 
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}

#header.home .menu ul li.home a,
#header.home .mobile-menu ul li.home a,
#header.unternehmerpreis .menu ul li.unternehmerpreis a,
#header.unternehmerpreis .mobile-menu ul li.unternehmerpreis a,
#header.preis .menu ul li.preis a,
#header.preis .mobile-menu ul li.preis a,
#header.impressionen .menu ul li.impressionen a,
#header.impressionen .mobile-menu ul li.impressionen a,
#header.bewerbungsformular .menu ul li.bewerbungsformular a,
#header.bewerbungsformular .mobile-menu ul li.bewerbungsformular a {
    color: var(--braun);
    font-weight: 700;
}

#header.home .menu ul li.home .tooltiptext a,
#header.home .mobile-menu ul li.home .tooltiptext a,
#header.unternehmerpreis .menu ul li.unternehmerpreis .tooltiptext a,
#header.unternehmerpreis .mobile-menu ul li.unternehmerpreis .tooltiptext a,
#header.preis .menu ul li.preis .tooltiptext a,
#header.preis .mobile-menu ul li.preis .tooltiptext a,
#header.impressionen .menu ul li.impressionen .tooltiptext a,
#header.impressionen .mobile-menu ul li.impressionen .tooltiptext a,
#header.bewerbungsformular .menu ul li.bewerbungsformular .tooltiptext a,
#header.bewerbungsformular .mobile-menu ul li.bewerbungsformular .tooltiptext a {
    color: var(--schwarz);
    font-weight: 400;
}


#header.bewerbungsformular .menu ul {
    margin-top: 1.3em;

}

#header .cta {
    background: var(--blau);
    color: var(--weiss);
    padding: 0.8em 1.5em;
    border: none;
    cursor: pointer;
    border-radius: 1px;
    font-size: 0.7em;
    margin-top: 1.8em;
    margin-left: 1em;
}

/* Burger-Menü */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 16px;
    cursor: pointer;
    z-index: 100000;
    position: relative;
    margin-top: 1em;
}

.burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--schwarz);
    transition: 0.3s;
}

/* Mobile-Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--weisstransparent);
    box-shadow: -2px 0 5px var(--schwarzschatten);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* align-items: flex-end; */
    transition: right 0.3s ease-in-out;
    padding: 1.5em;
    z-index: 10000;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 7rem;
    text-align: left;
    width: 100%;
}

.mobile-menu ul li {
    margin: 20px 0;
    font-size: 1em;
}
.mobile-menu ul li.submenu {
    margin: 0 0 0.4em 1.15em;
    font-size: 1em;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: var(--schwarz);
}

/* Menü aktiv */
.mobile-menu.open {
    right: 0;
}

/* CTA im Mobile-Menü */
.mobile-cta {
    background: var(--blau);
    color: var(--weiss);
    padding: 0.7em 1.2em;
    border: none;
    cursor: pointer;
    border-radius: 0;
    font-size: 0.9em;
    margin-top: 2em;
    width: 100%;
    text-align: center;
}

/* Burger-Menü als X */
.burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Mobile Ansicht */
@media (max-width: 850px) {
    #header .menu, #header .cta {
        display: none;
    }
    .burger {
        display: flex;
    }
    #header .logo {
        width: 30%;
        padding: 0.75em 1.5em 0.3em 0;
    }
}
@media (max-width: 600px) {
    #header .logo {
        width: 65%;
        padding: 0.75em 1.5em 0.3em 0;
        margin-left: -2em;
        margin-bottom: 0.5em;
    }
}


/* Hero-Section */
#hero {
    width: calc(100vw - 15px);
    height: 45vh;
    overflow: hidden;
    position: relative;
    margin-top: 100px;
    min-height: 400px;
    margin-bottom: 4em;
}

.heroswiper {
    height: 100%;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Overlay-Content */
.slide-content,
.podcast {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    clip-path: polygon(0% 0%, 48% 0%, 68% 100%, 0% 100%);
    background: linear-gradient(to right, var(--blau), var(--dunkelblau));
    opacity: 0.6;
    padding: 40% 60% 0 2em;
}

.slide-content .container,
.podcast .container {
    position: relative; 
    /* border: 2px dotted yellow;*/
    width: 100%;
    height: 100%;
    max-height: 400px;
    max-width: 1080px; 
    padding: 0 2em; 
    margin: 20px auto 0 auto;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    align-content: center;
}

.claim {
    color: var(--weiss);
    
    display: block;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: center;
    order: 0;
}

.space {
    display: block;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: center;
    order: 0;
}

.claim h1 {
    font-size: 2.6vw;
    line-height: 110%;
    margin-bottom: 0.7em;
    margin-top: 3em;
    width: 72%;
    font-weight: 600;
}

.claim h1.mager {
    font-weight: 300;
}

.claim h1.mager b {
    font-weight: 700;
}

.claim .cta-button {
    align-self: flex-end;
    /*background: linear-gradient(to bottom, var(--weiss), var(--hellgrau));*/
    background-color: var(--hellbraun);
    color: var(--weiss);
    padding: 0.5em 1.8em;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 0px;
    text-decoration: none;
    border-radius: 0;
    font-size: 1.3vw;
}

@media (max-width: 680px) {
    .claim h1 {
        margin-top: 1em;
        font-size: 1.1em;
    }
    
    .claim .cta-button {
        font-size: 0.75em;
    }
}

@media (min-width: 1080px) {
    .claim h1 {
        margin-top: 2em;
        font-size: 2em;
        width: 65%;
    }
    
    .claim .cta-button {
        font-size: 1.1em;
    }
}



/* Heroimage */

#heroimage {
    margin-top: 100px;
    width: 100%;
    height: 45vh;
    min-height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}

#heroimage .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 100px;
    width: 100%;
    height: 45vh;
    min-height: 400px;
}

@media (max-width: 600px) {
    #heroimage .slide-content,
    #heroimage,
    #hero {
        height: 35vh;
        min-height: 200px;
    }
}


/* Intro Section */
#intro {
    text-align: center;
    padding: 4em 0 0 0;
    margin-top: 2em;
    margin-bottom: 0;
}

#intro a {
    color: var(--braun);
    font-weight: 600;
}

#intro hr {
    margin-bottom: 2em;
}

/* Mobile: Bild über Text */
@media (max-width: 768px) {

    #intro {
        margin-top: 0;
        padding: 0;
    }

    #intro h1 {
        margin-top: 0;
    }

    #intro .text {
        margin-top: 0;
    }
}

/* Info Section */

#info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1080px;
    padding: 0 2em;
    margin: 0 auto;
    margin-bottom: 0em;
}

#info .container {
    display: flex;
    flex-wrap: wrap;
}
#info2 {
    background-color: var(--offwhite);
}

#info .text, 
#info .image {
    flex: 1;
    min-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1em 0 1em 0;
}

#info.text {
    align-items: flex-start;
    justify-content: flex-start;
}

#info .image {
    max-height: 60vh;
    align-items: flex-start;
}

#info .text,
#info2 .text {
    text-align: left;
    height: auto;
    margin-top: 2em;
    margin-bottom: 0;
}

#info .text p,
#info2 .text p {
    text-align: left;
    height: auto;
    padding: 0.3em 0 1em 0;
}

#info .image img {
    /*max-width: 70%;*/
    max-height: 80%;
    height: auto;
    display: block;
    margin-left: 3em;
}

/* Standard: Bild + Text innerhalb des Satzspiegels */
#info .image, 
#info .text {
    flex: 1;
    min-width: 300px; /* Verhindert zu kleine Elemente */
}

/* Variante mit breitem Bild */
#info2.imagebreit {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    width: calc(100vw - 15px); /* Stellt sicher, dass der Container die volle Breite hat */
    padding: 0;
}

#info2.imagebreit .image {
    flex: 1;
    flex-grow: 1;
    flex-basis: 50%; /* 50% des übergeordneten Containers, nicht des Viewports */
    max-width: 50vw;
    height: auto; /* Anpassen nach Bedarf */
    background-size: cover;
    background-position: top right;
}

#info2.imagebreit .text {
    flex: 1;
    max-width: 600px;
    padding: 2em;
}

#info p.inlinebutton,
#info2 p.inlinebutton {
    padding: 0 0 4em 0;
    text-align: left; 
    width: 100%;
}

/* Mobile: */
@media (max-width: 768px) {

    #info .text {
        margin-top: 5em;
    }

    #info .image {
        margin: -3em 0 0 0;
        padding: 0;
    }
    
    #info2.imagebreit {
        /*flex-direction: column;*/
        display: block;
    }

    #info2.imagebreit .image {
        width: 100%;
        max-width: none;
        height: 350px; /* Oder eine andere passende Höhe */
    }

    #info2.imagebreit .text {
        width: 100%;
        max-width: calc(100% - 5em);
        padding: 0;
        background-color: var(--offwhite);
    }
    #info .image img {
        margin-left: 0;
    }

    #info .image {
        align-items: center;
    }
}

/* Mobile: Bild über Text */
@media (max-width: 601px) {

    #info {
        flex-direction: column-reverse;
    }

    #info .image {
        margin: 2em 0 0 0;
        padding-bottom: 0;
    }
    #info .image img {
        max-height: 30vh;
    }
    #info .text {
        margin-top: 0;
    }
}

/* Logoslider */
#logoslider {
    text-align: center;
    padding: 6em 0;
}

#logoslider h4 {
    margin-bottom: 4em;
}

.logoslider-swiper {
    max-width: 1200px;
    margin: 0 auto;
}

#logoslider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

#logoslider .swiper-slide img {
    width: auto;
    max-width: 150px;
    max-height: 75px; /* Sicherstellen, dass die Höhe nicht verzerrt wird */
}

/* Anpassung für kleinere Bildschirme */
@media (max-width: 600px) {
    #logoslider .logoslider-swiper {
        max-width: 90%;
    }
    
    #logoslider .swiper-slide img {
        max-width: 130px; /* Kleinere Logos für Mobile */
    }
}


/* Podcast */

#podcast {
    width: 100%;
    height: 45vh;
    min-height: 400px;
    background-image: url(../images/podcast-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 33% top;
}

#podcast .container {
    max-width: 1080px;
    margin: 0 auto;
    text-align: left;
    height: 45vh;
    max-height: 400px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    align-content: center;
}

#podcast .container .space,
#podcast .container .info {
    display: block;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: center;
    order: 0;
}

#podcast img { 
    width: 28%;
    margin: 1em 0;
}

#podcast h3 {
    margin-bottom: 0.6em;
    margin-top: 0.8em;
    color: var(--weiss);
    width: 80%;
}

#podcast p {
    color: var(--weiss);
    width: 80%;
}



@media (max-width: 680px) {
    #podcast h3 {
        margin-top: 1em;
        font-size: 1.1em;
        width: 90%;
    }
    
    #podcast p {
        font-size: 0.75em;
        width: 90%;
    }
    
    #podcast img {
        width: 38%;
        margin: 0;
    }
}



/* info??? */

#info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1080px;
    padding: 0 2em;
    margin: 0 auto;
    margin-bottom: 0em;
}

#info .container {
    display: flex;
    flex-wrap: wrap;
}
#info2 {
    background-color: var(--offwhite);
}

#info .text, 
#info .image {
    flex: 1;
    min-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1em 0 1em 0;
}




/* Initiatoren */
#initiatoren {
    text-align: center;
    padding: 8em 0;
    background-color: var(--offwhite2);
}

#initiatoren h3,
#sponsoren h3 {
    margin-bottom: 0.75em;
}

#initiatoren h4,
#sponsoren h4 {
    margin-bottom: 1em;
}


#initiatoren hr,
#sponsoren hr {
    margin-bottom: 4em;
}

#initiatoren p,
#sponsoren p {
    margin-bottom: 1.5em;
    text-align: left;
}

#initiatoren p.introtext,
#sponsoren p.introtext {
    margin-bottom: 3em;
    text-align: center;
}

#initiatoren .icon {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
}

.initiatoren-grid {
    display: flex;
    justify-content: center;
    gap: 2em;
    max-width: 1080px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.initiator {
    flex: 1 1 300px;
    max-width: 300px;
    background: var(--weissblass);
    padding: 1.5em;
    text-align: center;
}

@media (max-width: 689px) {
    .initiator {
        max-width: 450px;
    }
}


.initiator .logobox {
    height: 12em;
    padding-top: 2em;
}

#sponsoren .initiator .logobox {
    height: 5em;
}

.initiator img {
    width: 100%;
    height: auto;
    max-width: 150px;
    margin-bottom: 1em;
}

.initiator h4 {
    margin-bottom: 0.75em;
    line-height: 115%;
    min-height: 3.75ch;
}

#initiatoren .initiator p {
    color: var(--grau);
    text-align: left;
    margin-bottom: 1.75em;
}

#initiatoren a {
    color: var(--braun);
    font-weight: 600;
}

/* Mehr-Anzeigen-Button */
.initiator-button {
    background-image: url(../images/icons/icon-plus-quadrat-schwarz.svg);
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    padding: 0;
    border-radius: 0;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

#initiator .icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.initiator-extra-text {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.2s ease-out, height 0.2s ease-out;
    height: 0;
    overflow: hidden;
    display: block;
}

.initiator-extra-text.visible {
    transform: scaleY(1);
}




/* Sponsoren */
#sponsoren {
    text-align: center;
    padding: 6em 0;
}

.sponsoren-grid {
    display: flex;
    justify-content: center;
    gap: 2em;
    max-width: 1080px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.sponsor {
    flex: 1 1 300px;
    max-width: 300px;
    padding: 1.5em;
    border-radius: 10px;
    text-align: center;
}

.sponsor img {
    height: 100px;
    width: auto;
    margin-bottom: 1em;
}

.sponsor h4 {
    margin-bottom: 0.5em;
}

.sponsor p {
    font-size: 0.9em;
    color: var(--grau);
}

#sponsoren button {
    border: 0px solid transparent;
    font-size: 0.85em;
    padding-left: 0;
}



/* Hall of Fame */
#halloffame {
    background-color: var(--hellblau);
    color: var(--schwarz);
    text-align: center;
    padding: 0 0 4em 0;
    
}

#halloffame .topimage {
    margin-top: 0;
}

#halloffame .topimage img {
    width: 100%;
    max-width: 1400px;
}

#halloffame h3 {
    margin-top: -1em;
    font-size: 1.35em;
    margin-bottom: 0;
}

#halloffame h4 {
    margin-bottom: 3em;
    font-size: 1.35em;
    margin-bottom: 0;
}

#halloffame p {
    margin-bottom: 4em;
}

#halloffame hr {
    margin-bottom: 4em;
}

/* Accordion Styling */
.accordion {
    max-width: 1080px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 6em;
}

.accordion-item {
    background: transparent;
    border-bottom: 1px solid var(--weissdurchscheinend);
    border-bottom: 1px solid rgba(0,0,0,0.3);   /* neu definieren */
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.4em;
    font-size: 1em;
    background: transparent;
    color: var(--schwarz);
}

.accordion-header h4 {
    margin-bottom: 0.5em;
    margin-top: 0.5em;
    margin-left: 0.6em
}

.accordion-header img.icon {
    margin-top: 0.25em;
    margin-right: 1em
}

.accordion-header:hover {
    background: var(--weisshauch);
    background: rgba(255, 255, 255, 0.2);   /* neu definieren */
}

/* Plus/Minus Icons */
.accordion-header .icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    margin-top: -1em;
}

/* Standardmäßig ausgeblendeter Inhalt */
.accordion-content {
    display: none;
    /*padding: 1em;*/
    background: var(--weisshauch2);
    background: rgba(255, 255, 255, 0.05);  /* neu definieren */
    margin-bottom: 1em;
}

/* Tabelle im Accordion */
table {
    width: 100%;
    border-collapse: collapse;
    color: var(--schwarz);
    margin-bottom: 0;
}

thead {
    background: var(--weissblass);
    background: rgba(255, 255, 255, 0.3);  /* neu definieren */
}

th, td {
    padding: 0.8em 1.4em 0.8em 1.4em;
    text-align: left;
    border-bottom: 1px solid var(--weissblass2);
    background: rgba(255, 255, 255, 0.2);  /* neu definieren */
}

tbody tr:nth-child(even) {
    background: var(--weissblass3);
    background: rgba(255,255,255,0.16);  /* neu definieren */
}

tbody tr:nth-child(odd) {
    background: var(--weisshauch);
    background: rgba(255, 255, 255, 0.05);  /* neu definieren */
}


@media (max-width: 690px) {
    #halloffame h4 {
        font-size: 1.1em;
    }

    #halloffame th,
    #halloffame td {
        font-size: 0.85em;
    }
}

@media (max-width: 500px) {
    #halloffame h4 {
        font-size: 1.05em;
    }

    #halloffame th,
    #halloffame td {
        font-size: 0.78em;
    }
}




/* Presse */

#presse {
    width: 100%;
    height: 45vh;
    min-height: 400px;
    background-image: url(../images/zeitungen.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
}




/* Impressionen */
#impressionen {
    text-align: center;
    padding: 4em 0;
    margin-bottom: 4em
}

#impressionen h3 {
    margin-bottom: 0;
}

#impressionen h4 {
    margin-bottom: 1em;
}

#impressionen hr {
    margin-bottom: 2em;
}

#impressionen p {
    margin-bottom: 4em;
}



/* === MODAL (Galerie) === */
#galleryModal {
    display: none; /* Standardmäßig versteckt */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--schwarztransparent);
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Stellt sicher, dass das Modal über allem liegt */
}

#galleryModal .modal-content {
    position: relative;
    background: var(--schwarz);
    /*padding: 1em;
    border-radius: 8px; */
    max-width: 900px;
    width: 90%;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);*/
}

/* Haupt-Swiper im Modal */
#galleryModal .modal-swiper {
    max-width: 100%;
    overflow: hidden;
}

#galleryModal .modal-swiper img {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    background: var(--schwarz);
}

/* Modal-Schließen-Button */
#galleryModal .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: var(--weiss);
    cursor: pointer;
    z-index: 10;
}

/* === THUMBNAIL-GRID === */
#impressionen .thumb-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Spalten */
    gap: 0.5em;
    max-width: 900px;
    margin: 20px auto;
    padding-top: 3em;
    padding-top: 4em;
    width: 100%; /* Nimmt immer die volle Container-Breite ein */
}

#impressionen .thumb-container .thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1; /* Quadratisch */
    overflow: hidden;
    cursor: pointer;
}

#impressionen .thumb-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

#impressionen .thumb-container .thumb:hover img {
    transform: scale(1.1);
}

/* === NAVIGATION === */
#galleryModal .swiper-button-prev,
#galleryModal .swiper-button-next {
    color: var(--weiss);
}



/* Haupt-Swiper */
/* #galleryModal .modal-swiper {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

#galleryModal .modal-swiper img,
#galleryModal .modal-swiper video {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    background: var(--schwarz);
}

/* Thumbnails */
/* #impressionen .thumb-swiper {
    max-width: 900px;
    margin: 20px auto;
    padding: 10px 0;
}

#impressionen .thumb-swiper .swiper-slide {
    width: 100px;
    height: 100px;
    cursor: pointer;
    overflow: hidden;
}

#impressionen .thumb-swiper img,
#impressionen .thumb-swiper video {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.3s;
}

#impressionen .thumb-swiper .swiper-slide:hover img,
#impressionen .thumb-swiper .swiper-slide:hover video {
    transform: scale(1.1);
}

/* Navigation */
/* #impressionen .swiper-button-prev,
#impressionen .swiper-button-next {
    color: var(--weiss);
}

#impressionen .swiper-button-prev {
    left: -40px;
}

#impressionen .swiper-button-next {
    right: -40px;
}

*/


/* Jury-Sektion */
#jury {
    text-align: center;
    padding: 4em 0;
    padding-bottom: 20em;
}

#jury h1,
#jury h3 {
    padding-bottom: 1em;
}

#jury h5 {
    font-weight: 300;
    font-size: 1.4em;
    line-height: 110%;
    margin-bottom: 0.5em;
}

#jury h6 {
    font-weight: 400;
    font-size: 0.925em;
    color: var(--braun);
    margin-bottom: 1.75em;
}

#jury hr {
    margin-bottom: 4em;
}

/* Jury Grid */
.jury-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Standard: 3 Spalten */
    gap: 30px;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
}

/* Jury-Karten */
.jury-card {
    position: relative;
    background: var(--weiss);
    padding: 25px;
    text-align: left;
    border: none;
}

/* Jury-Portraits */
.jury-portrait {
    width: 140px;
    height: 140px;
    object-fit: cover;
    display: block;
    margin: 0 auto 2.5em;
    border-radius: 50%;
}

/* Overlay – nur für größere Bildschirme */
.jury-overlay {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: auto;
    background: var(--braun);
    color: var(--weiss);
    padding: 40px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    z-index: 5;
    /* transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.2s ease;*/
    transition: opacity 0.6s ease;
}

#jury .jury-overlay h6 {
    color: var(--weisstransparent2);
}

/* Aktiviertes Overlay */
.jury-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Mehr-Anzeigen-Button für Mobile */
.jury-button {
    background-image: url(../images/icons/icon-plus-quadrat-schwarz.svg);
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    padding: 0;
    border-radius: 0;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

#jury .icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.jury-extra-text {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.2s ease-out, height 0.2s ease-out;
    height: 0;
    overflow: hidden;
    display: block;
}

.jury-extra-text.visible {
    transform: scaleY(1);
}

/* Schließen-Button */
.close-overlay {
    background-image: url(../images/icons/icon-x-quadrat-weiss.svg);
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    padding: 0;
    border-radius: 0;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

/* Responsives Layout */

@media print {
}



/* Unter 768px: Zweispaltig */
@media (max-width: 52em) {
    .jury-grid {
        grid-template-columns: 1fr 1fr;
    }
    .jury-button {
        display: inline-block;
    }
    .jury-button.toggle-text {
        display: none;
    }
}

/* Ab 768px: Dreispaltig */
@media (min-width: 53em) {
    .jury-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .jury-button {
        display: inline-block;
    }
    .jury-button.toggle-text {
        display: none;
    }
}

/* Unter 500px: Einspaltig + Mehr-Anzeigen-Button statt Overlay */
@media (max-width: 33em) {
    .jury-grid {
        grid-template-columns: 1fr;
    }
    .jury-overlay {
        display: none; /* Overlay ausblenden */
    }
    .jury-button {
        display: none;
    }
    .jury-button.toggle-text {
        display: inline-block;
    }
    #jury {
        padding-bottom: 2em;
    }
}





/* Künstler Sektion */
#kuenstler {
    padding: 4em 0;
}

#kuenstler .container {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

/* Überschrift zentriert und mit Abstand */
#kuenstler h4 {
    margin-bottom: 1em;
}

#kuenstler h5 {
    margin-bottom: 0.4em;
}

/* Künstler-Container für Links & Rechts */
.kuenstler-links, .kuenstler-rechts {
    display: flex;
    align-items: center;
    gap: 2em;
    margin-bottom: 4em;
}

/* Text-Block */
.kuenstler-links .text, .kuenstler-rechts .text {
    flex: 1;
    text-align: left;
}

.kuenstler-links .text {
    padding-left: 10%;
}

.kuenstler-rechts .text {
    padding-right: 10%;
}

/* Galerien */
.kuenstler-links .gallery, .kuenstler-rechts .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 0.25em;
    flex: 1;
}

/* Reihenfolge für .kuenstler-rechts */
.kuenstler-rechts .text {
    order: 2;
}

.kuenstler-rechts .gallery {
    order: 1;
}

.kuenstler-links .gallery {
    padding-right: 10%;
}

.kuenstler-rechts .gallery {
    padding-left: 10%;
}

/* Responsive: Untereinander ab 660px */
@media (max-width: 660px) {
    .kuenstler-links, .kuenstler-rechts {
        flex-direction: column;
        text-align: center;
    }
    
    .kuenstler-links .text,
    .kuenstler-rechts .text {
        padding: 0;
    }

    .kuenstler-links .gallery,
    .kuenstler-rechts .gallery {
        padding: 0 2em;
        margin: 0;
    }

    .kuenstler-rechts .text {
        order: 0;
    }
    .kuenstler-rechts .text {
        order: 1;
    }

    .kuenstler-links {
        margin-bottom: 1.25em;
    }
}



/* Bildergalerie */
.thumbnail {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    /* border-radius: 50%; */
    cursor: pointer;
}

.thumbnail img {
    width: 85%;
    height: 85%;
    object-fit: cover;
}

/* Modalfenster */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--schwarztransparent);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 800px;
    width: 90%;
    padding: 0;
    background: var(--weiss);
    text-align: left;
}

.modal-content .swiper {
    height: auto;
}

.modal-content img {
    max-width: 100%;
}

.close {
    position: absolute;
    top: 1em;
    right: 1em;
    font-size: 1.5em;
    cursor: pointer;
}

/* Thumbnail-Galerie Update */
.thumb-swiper .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.thumb-swiper .swiper-slide {
    width: calc(100% / 8 - 10px); /* Standardmäßig 8 Thumbnails pro Zeile */
    height: auto; /* Wird per JS gesetzt */
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
}

.thumb-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Formular */
#formular {
    padding: 4em 0;
    background-color: var(--offwhite);
}

#formular h3 {
    margin-bottom: 0.75em;
    text-align: center;
}

#formular h4 {
    margin-bottom: 0.5em;
    text-align: center;
}

#formular h5{
    margin-bottom: 0.75em;
    margin-top: 2.5em;
}

#formular .container p a,
#formular a {
    color: var(--braun);
    font-weight: 600;
}

#formular .container {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5em;
}

.form-group label {
    display: block;
    font-weight: 300;
    margin-bottom: 0.5em;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 0.8em;
    border: 1px solid var(--hellgrau2);
    border-radius: 4px;
}

/* Checkbox-Container */
.form-group.checkbox {
    display: flex;
    /* align-items: center;*/
    align-items: flex-start;
    gap: 0.5em; /* Abstand zwischen Checkbox und Label */
}

/* Checkbox anpassen */
.form-group.checkbox input[type="checkbox"] {
    width: 1.2em; /* Größe der Checkbox */
    height: 1.2em;
    cursor: pointer;
    margin-top: 0.25em;
}

/* Label auf gleicher Höhe */
.form-group.checkbox label {
    /* margin-bottom: 0; /* Standardmargin entfernen */
    font-weight: 400;
    cursor: pointer;
    width: calc(100% - 2em);
}

/* Datei-Upload Container */
.file-upload {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

/* Datei-Name Styling */
#fileName {
    font-size: 0.9em;
    color: var(--mittelgrau);
    background: var(--offwhite2);
    padding: 0.4em 0.8em;
    border-radius: 4px;
}

/* Versteckte Elemente */
.hidden {
    display: none;
}

/* X-Button Styling */
#clearFile {
    background: transparent;
    border: none;
    color: var(--warnung);
    font-size: 1em;
    cursor: pointer;
    padding: 0;
}

#formular button {
    background-color: var(--braun);
    color: var(--weiss);
    padding: 0.5em 1.5em;
    border: none;
    cursor: pointer;
    border-radius: 0;
    margin-top: 0.75em;
}

#formular button:hover {
    background-color: var(--braun2);
}

.honeypot {
    display: none;
}

.hidden {
    display: none !important;
}

.success {
    color: var(--erfolg);
}

.error {
    color: var(--warnung);
}

#formMessage {
    font-size: 1.2em;
    margin-top: 1em;
    font-weight: bold;
}




/* Footer */
footer {
    background: var(--dunkelbraun);
    color: var(--weiss);
    padding: 4em 0;
    text-align: center; /* Für kleine Screens */
}

footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Standard-Spalten */
.footer-column {
    flex: 1;
    padding: 0 1em;
    text-align: left;
    font-size: 0.8em;
}

.footer-column a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.socialicon {
    display: inline-block;
    width: 1.8em;
    height: 1.8em;
    margin-right: 0.75em;
}

/* Unter 600px: Spalten untereinander */
@media (max-width: 600px) {
    footer .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-column {
        padding: 1em 0;
    }
}



/* textseite Section */
#textseite {
    text-align: center;
    padding: 4em 0 0 0;
    margin-top: 2em;
    margin-bottom: 4em;
}

#textseite h5,
#textseite h6,
#textseite p {
    text-align: left;
    padding-bottom: 1em;
}

#textseite h5 {
    margin-top: 1.5em;
}