/*##########################################
Banner
############################################*/

.universal-banner img{
	box-shadow: none;
}

.universal-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(255,255,255,0) 60%,
        rgba(255,255,255,0.8) 100%
    );
    pointer-events: none;
}

.universal-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 999 / 180;           /* etwas höher */
    max-height: 240px;                 /* Deckel für große Screens */
    background: url("/images/banner/background/wood.jpg") center bottom / cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
	min-height: 223px;
}




.banner-text {
    display: flex;
    align-items: center;
    gap: 18px;              /* Abstand Glühbirne ↔ Text */
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-bulb {
    width: 80px;
    height: auto;
    flex-shrink: 0;
    transform: rotate(-8deg);
	
	position: relative;
    top: -12px;
	margin-right: -6px;
}







/* Alle Deko-Elemente */
.universal-banner .deco {
    position: absolute;
    pointer-events: none;
}

/* Positionen */
.leaves.tl { top: -30px; left: -30px; width: 140px; }
.birne { top: 3px; left: 140px; width: 100px; }
.leaves.tr { top: -30px; right: -30px; width: 140px; }
.grass.br  { bottom: -20px; right: -8px; width: 400px; }
.robot     { right: 20px; bottom: 25px; width: 130px; }




.banner-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #ffd45a;
    background: #e86a1c;
    padding: 6px 16px;
    border-radius: 16px;
    display: inline-block;
    box-shadow: 1px 4px 2px rgba(0,0,0,0.25);
    margin-bottom: 8px;
	transform: rotate(2.5deg);
}

.banner-title {
    font-family: 'Baloo 2', cursive;
    font-size: 90px;
    font-weight: 800;
    color: #2b6cb0;
    text-shadow:
        -2px -2px 0 #ffffff,
         2px -2px 0 #ffffff,
        -2px  2px 0 #ffffff,
         2px  2px 0 #ffffff,
         0 6px 0 rgba(0,0,0,0.25);
}


.banner-title {
    transform: rotate(-1.5deg);
    letter-spacing: 1px;
}



/**/
.banner-domain {
    position: absolute;
    right: 18px;
    bottom: 0;
    z-index: 2;

    font-family: 'Baloo 2', cursive;
    font-size: 14px;
    font-weight: 600;

    color: #ffffff;
    opacity: 0.85;

    text-shadow:
        0 2px 4px rgba(0,0,0,0.45);

    letter-spacing: 0.5px;
    pointer-events: none;
	
	transform: rotate(-1deg);
	
}

@media (max-width: 767px) {
    .banner-title { font-size: 60px; }
    .banner-subtitle { font-size: 16px; }
    .robot { width: 90px; }
	
	.universal-banner {
		aspect-ratio: 999 / 350;
	}
	
	.banner-domain {
        font-size: 10px;
        right: 10px;
        bottom: 6px;
    }
	
	.grass.br  { width: 280px; }
	
	.banner-text {
        gap: 10px;
    }

    .banner-bulb {
        width: 42px;
    }
}


/* Banner End */