@charset "UTF-8";
/* Dunbar Tall Regular */
@font-face {
    font-family: 'Dunbar Tall';
    src: url('/Fonts/DunbarTall-Regular.woff2') format('woff2'),
         url('/Fonts/DunbarTall-Regular.ttf') format('truetype');
    font-weight: normal; /* Standard für Regular */
    font-style: normal;
    font-display: swap; /* Optional: Verbessert die Ladeperformance */
}

/* Dunbar Tall Medium */
@font-face {
    font-family: 'Dunbar Tall';
    src: url('/Fonts/DunbarTall-Medium.woff') format('woff');
    font-weight: 500; /* Medium */
    font-style: normal;
    font-display: swap;
}

/* Dunbar Tall Hairline */
@font-face {
    font-family: 'Dunbar Tall';
    src: url('/Fonts/DunbarTall-Hairline.woff') format('woff');
    font-weight: 200; /* Medium */
    font-style: normal;
    font-display: swap;
}

/* Dunbar Tall Bold */
@font-face {
    font-family: 'Dunbar Tall';
    src: url('/Fonts/dunbar-tall-bold.eot'); /* IE9 */
    src: url('/Fonts/dunbar-tall-bold.woff2') format('woff2'),
         url('/Fonts/dunbar-tall-bold.woff') format('woff'),
         url('/Fonts/dunbar-tall-bold.ttf') format('truetype');
    font-weight: bold; /* Bold */
    font-style: normal;
    font-display: swap;
}

body {
	font-family: Dunbar Tall, "sans-serif";
	margin: 0px;
}
.menu {
	background-color: #FFEB4E;
}
.menustick {
	background-color: #FFEB4E;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
}
.nav {
	text-align: center;
	height: 45px;
	padding-top: 15px;
}
.nav img {
	height: 28px;
	margin: 0px 6px;
	transition: 0.3s;
}
.nav img:hover {
	
}
.nav button-light-l {
	margin: 0px 6px;
	vertical-align: 7px;
}
a {
	text-decoration: none;
        color: #000;
    ddisplay: inline-block;
    ttransition: border-bottom 0.2s ease;
}
.fullbtn {
width: 100%;
}
.foot a {
border-bottom: 2px solid #FFEB4E;
}

.foot a:hover {
    border-bottom: 2px solid #000;
}
h1 {
	font-size: 5rem;
        font-weight: 900;
        margin: 0px;
        padding: 0px;
        transform: translateY(3px);
}
h2 {
	margin-top: 0px;
	font-size: 20px;
}
h3 {
	//background-color: #FFEB4E;
        margin: 0px;
	//max-width: 360px;
}
h4 {
	margin: 0px;
	font-size: 14px;
}
p{
	font-size: 12px;
	font-style: italic;
        margin: 0px;
}
button-light-l {
	background-color: #FFFAC4;
	padding: 8px 18px;
	border-radius: 20px;
	color: #000;
	text-decoration: none;
	transition: 0.3s;
	font-style: italic;
}
button-light-l:hover {
	background-color: #000;
	color: #FFFAC4;
}
.cat button-light-s {
	vertical-align: -3px;
}
button-light-s {
	font-size: 12px;
	background-color: #FFFAC4;
	padding: 5px 12px;
	border-radius: 20px;
	color: #000;
	text-decoration: none;
	transition: 0.3s;
	margin: 0px 6px 0px 0px;
}
button-light-s:hover {
	background-color: #000;
	color: #FFFAC4;
}
button-full-s {
	font-size: 12px;
	background-color: #ffeb4e;
	padding: 5px 12px;
	border-radius: 20px;
	color: #000;
	text-decoration: none;
	transition: 0.3s;
	margin: 0px 6px 0px 0px;
}
button-full-s:hover {
	background-color: #000;
	color: #ffeb4e;
}
.button-full-xl {
	font-size: 16px;
	background-color: #ffeb4e;
	padding: 8px 2px;
	border-radius: 20px;
	color: #000;
	text-decoration: none;
	transition: 0.3s;
	width: 100%;
	text-align: center;
	font-style: italic;
        font-family: Dunbar Tall;
}
.button-full-xl:hover {
	background-color: #000;
	color: #ffeb4e;
}



.slideradio {
    background-color: rgb(255, 250, 196);
    padding: 0px;
    border-radius: 200px;
    display: inline-flex;
    align-items: center;
}

.slideradio .container {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.slideradio .container input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.slideradio .container .checkmark {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 200px;
    background-color: transparent;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s, padding 0.2s, font-weight 0.2s;
    white-space: nowrap;
}

.slideradio .container:hover .checkmark {
    background-color: rgba(255, 235, 78, 0.5);
}

.slideradio .container input:checked ~ .checkmark {
    //background-color: #ffeb4e;
    background-color: #000;
    color: #ffeb4e;
    font-weight: 600;
    padding: 5px 12px;
}

/* Datum-Buttons */
.datum-gruppe {
    display: inline-flex;
    gap: 0;
    background-color: #FFFAC4;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
}

.datum-gruppe .datum-btn {
    font-family: inherit;
    font-size: 12px;
    background-color: transparent;
    border: none;
    padding: 5px 12px;
    border-radius: 20px;
    color: #000;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, font-weight 0.2s;
}

.datum-gruppe .datum-btn:hover {
    background-color: rgba(255, 235, 78, 0.6);
}

.datum-gruppe .datum-btn.aktiv {
    background-color: #000;
    color: #ffeb4e;
    font-weight: 600;
}

/* Verstecktes Date-Input für nativen Picker */
#datumInput {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

slide {
	font-size: 12px;
	background-color: #FFFAC4;
	padding: 5px 0px;
	border-radius: 20px;
	color: #000;
	text-decoration: none;
}
slide-light-s {
	font-size: 12px;
	background-color: #FFFAC4;
	padding: 5px 12px;
	border-radius: 20px;
	color: #000;
	text-decoration: none;
	transition: 0.3s;
	margin: 0px 0px 0px 0px;
}
slide-light-s:hover {
	background-color: #ffeb4e;
	padding: 10px 12px;
}
slide-full-s {
	font-size: 12px;
	background-color: #ffeb4e;
	padding: 10px 12px;
	border-radius: 20px;
	color: #000;
	text-decoration: none;
	transition: 0.3s;
}
slide-full-s:hover {
	background-color: #ffeb4e;
}
.cat {
	width: 100%;
	overflow: auto;
	display: flex;
	height: 40px;
}
.logo {
	text-align: center;
}
h0 {
	font-size: 60px;
	font-weight: 900;
	font-style: italic;
        margin-left: -5px;
}
.inhalt {
	margin: 0px 10%;
}
.foot {
	background-color: #FFEB4E;
	padding-top: 5px;
	padding-bottom: 4px;
}
.gelb {
	background-color: #FFEB4E;
	padding: 10px 0px;
}
.profilbild-s img {
	height: 60px;
	width: 60px;
	float: left;
	border-radius: 100px;
	object-fit: cover;
	border: #74B974 9px solid;
	margin-right: 6px;
}
.profilbild-s obertext {
	font-weight: 600;
	font-size: 30px;
	margin: 0px;
	padding: 0px;
	vertical-align: -34px;
}
.profilbild-s nebentext {
	vertical-align: -34px;
	font-style: italic;
}
.profilbild-s untertext {
	font-weight: 400;
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	font-style: italic;
}
.profilbild-s {
	height: 85px;
}
.bild img{
	width: 100%;
	border-radius: 20px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	max-height: 360px;
	max-width: 360px;
}
.bild {
	height: 180px;
	background-color: #FFEB4E;
	margin-bottom: 180px;
}
.teilspeich img {
	height: 12px;
	padding-right: 3px;
}
.teilspeich a {
	color: #000;
	font-size: 12px;
	margin-right: 12px;
}
.ueberbox {
    columns: 5;
    column-gap: 10px;
}
.box {
    break-inside: avoid;
    width: 100%;
    border-radius: 22px;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    position: relative;
}
.box:hover {
    background-color: 
#FFFAC4;
}
.box img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}
.box-overlay {
    position: absolute !important;
    top: 18px;
    left: 18px;
    padding 0px !important;
}
.box h3, .box h4, .box p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin: 4px 0;
}
.suche-input {
    font-size: 16pt !important;
    width: 100% !important;
    border: none !important;
    outline: none !important;
    font-family: Dunbar Tall, sans-serif !important;
    background-color: #FFFAC4 !important;
    padding: 8px 18px 8px 40px !important; /* Links mehr Padding, um Platz für das Icon zu schaffen */
    border-radius: 30px !important;
    color: #000 !important;
    text-decoration: none !important;
    transition: 0.3s !important;
    box-sizing: border-box !important; /* Damit Padding und Border nicht die Breite erhöhen */
    background-image: url('https://teil.äir.de/Icons/suche.svg') !important; /* Icon einfügen */
    background-repeat: no-repeat !important;
    background-position: 14px center !important; /* Position des Icons */
    background-size: 20px !important; /* Größe des Icons anpassen */
}
.ort-input {
    font-size: 12pt !important;
    border: none;
    outline: none;
    width: auto !important;
    font-family: Dunbar Tall, sans-serif;
    background-color: #fff;
    padding: 6px 16px 6px 38px !important;
    margin-top: 0px !important;
    border-radius: 50px;
    color: #000;
    text-decoration: none;
    transition: 0.3s;
    box-sizing: border-box;
    background-image: url('/Icons/ort.svg');
    background-repeat: no-repeat;
    background-position: 14px center;
    background-size: 16px;
    appearance: none; /* Entfernt Standard-Pfeile in modernen Browsern */
    -webkit-appearance: none; /* Entfernt Standard-Pfeile in WebKit-Browsern (Chrome, Safari) */
    -moz-appearance: none; /* Entfernt Standard-Pfeile in Firefox */
    overflow: hidden; /* Verhindert Überlappung */
}
.ort-input:hover {
    background-color: #FFFAC4;
}

.suche-input::placeholder {
    color: #000; /* Placeholder-Farbe auf schwarz setzen */
}

input[type=text], input[type=url], input[type=password], input[type=email], textarea, select {
    font-family: inherit;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    border: none;
    background: #FFFAC4;
    border-radius: 20px;
    padding: 10px 14px;
    margin-bottom: 12px;
    outline: none;
    transition: background 0.2s;
}
input[type=text]:focus, input[type=url]:focus, input[type=password]:focus, input[type=email]:focus, textarea:focus, sselect:focus {
    background: #ffeb4e;
}
textarea {
    resize: vertical;
    min-height: 80px;
}
select {
    cursor: pointer;
    appearance: none;
}
label {
    font-size: 12px;
    font-style: italic;
    display: block;
    margin-bottom: 4px;
}
.field {
    margin-bottom: 6px;
}
input[type=file] {
    display: none;
}
.upload-label {
    display: grid;
    place-items: center; /* Zentriert sowohl vertikal als auch horizontal */
    background: #FFFAC4;
    border-radius: 20px;
    padding: 0px;
    text-align: center;
    font-style: italic;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 12px;
    aspect-ratio: 1 / 1;
    max-height: 360px;
    max-width: 360px;
}
.upload-label:hover {
    background: #ffeb4e;
}
#vorschau {
    width: 100%;
    max-height: 360px;
    max-width: 360px;
    border-radius: 20px;
    object-fit: cover;
    display: none;
    margin-bottom: 12px;
}