@charset "utf-8";
/* CSS Document */

 /* Grundlegende Stile */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
		    background-color: black; 
    		color: #333;
    		line-height: 2.0;
        }

		/* Links */
		a {
			color: #0056b3;
			text-decoration: none;
		}

		a:hover {
			text-decoration: none;
		}

/* Header */
.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

.logo {
    width: 450px;
    height: auto;
}

header {
    background-color: #282929;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
	color: white;
}

        /* Navigation */
        nav {
            background-color: black;
            padding: 15px;
        }

        .navbar {
            list-style-type: none;
            margin: 0;
            padding: 0;
            display: flex;			
			justify-content: center;
        }

        .navbar li {
            position: relative; /* Wichtig für Dropdown-Positionierung */
            margin-right: 20px;
        }

        .navbar li a {
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            display: block;
            background-color: black;
			text-align: center;
        }

        .navbar li a:hover {
            background-color: #5C5A5A;
        }

        /* Dropdown-Content */
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: black; /*#282929;*/
            min-width: 160px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
            z-index: 1;
            list-style-type: none;
            padding: 0;
        }

        .dropdown-content li {
            padding: 0;
        }

        .dropdown-content li a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
			text-align: left;
        }

        .dropdown-content li a:hover {
            background-color: #4F4F4F;
        }

        /* Dropdown sichtbar machen bei Hover */
        .dropdown:hover .dropdown-content {
            display: block; /* Dropdown wird angezeigt */
        }


/* Hintergrundbild-Bereich (Hero-Sektion) */
.hero {
    background-image: url('../px/background_image_hero.jpg'); /* Ersetze durch den Pfad zu deinem Bild */
    background-size: cover;
    background-position: center;
    height: 400px; /* Höhe des Bereichs */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-text {
    background: rgba(0, 0, 0, 0.6); /* Halbtransparentes Schwarz hinter dem Text */
    padding: 20px;
    border-radius: 10px;
}

.hero h2 {
    font-size: 2.5rem;
    margin: 0;
}

.hero p {
    font-size: 1.2rem;
}

main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

main h2 {
    color: #004080; /* Dunkelblau für Überschriften */
    font-size: 4.5rem;
    margin-bottom: 20px;
	text-align: center;
}

section slogan {
	color: #FFFFFF; /* Dunkelblau für Überschriften */
    font-size: 4.0rem;	
    margin-bottom: 20px;
	text-align: center;
	line-height: 1.2;
}

section slogan2 {
	color: #FFFFFF; /* Dunkelblau für Überschriften */
    font-size: 1.9rem;	
    margin-bottom: 50px;
	text-align: center;
	line-height: 1.0;
	margin-top: 050px;
}

main h3 {
    color: #0056b3; /* Dunkelblau für Überschriften */
    font-size: 2.0rem;
    margin-bottom: 20px;
	text-align: center;
}

main p {
    font-size: 1.5rem;
    margin-bottom: 20px;
	text-align: center;
}

/* Sektionen */
section {
    margin-bottom: 40px;
}

section h3 {
    font-size: 2.0rem;
    margin-bottom: 15px;
    color: #0056b3;
	text-align: center;
}
section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #0056b3;
	text-align: center;
}
section p {
    margin-bottom: 10px;
}

/* Schaltflächen */
button {
    background-color: #909596;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #282929;
}

/* Bildgalerie */
.image-gallery {
    display: flex;
    justify-content: space-between;
}

.image-container {
    position: relative;
    width: 60%; /* Drei Bilder nebeneinander */
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Overlay-Effekt */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Schwarzer, halbtransparenter Hintergrund */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-container .overlay {
    opacity: 1; /* Text wird sichtbar, wenn mit der Maus darübergefahren wird. gelöscht: :hover */
}

.text {
    font-size: 2.5rem;
    text-align: center;
}


a {
    text-decoration: none;
    color: white;
}

/* Footer */
footer {
    background-color: #333030;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}



* { box-sizing: border-box; }

        .slideshow-container {
            position: relative;
            max-width: 1000px;
            margin: auto;
			margin-top: 75px;
        }

        .slides {
            display: none;
        }

        img {
            width: 100%;
            height: auto;
        }

        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            transition: 0.6s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
        }

        .next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }

        .prev:hover, .next:hover {
            background-color: rgba(0,0,0,0.8);
        }

        .numbertext {
            color: #f2f2f2;
            font-size: 12px;
            position: absolute;
            top: 0;
            padding: 8px 12px;
        }

        .dot {
            cursor: pointer;
            height: 15px;
            width: 15px;
            margin: 0 2px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.6s ease;
        }

        .active, .dot:hover {
            background-color: #717171;
        }

        .fade {
            animation-name: fade;
            animation-duration: 5.5s;
        }

        @keyframes fade {
            from { opacity: .4; }
            to { opacity: 1; }
        }


/* Sektion Style */
        .full-width-section {
            width: 100vw; /* Die Sektion geht über die gesamte Breite des Bildschirms */
            background-color: #494949; /* Dunkelblauer Hintergrund */
            color: white; /* Weißer Text */
            padding: 50px 0; /* Oben und unten Polsterung (Padding) */
			display: flex; /* Flexbox für Spaltenlayout */
            align-items: stretch; /* Spalten sollen die gleiche Höhe haben */
            padding: 20px;
            box-sizing: border-box;
        }

        /* Flexbox Container für die Spalten */
        .container {
            display: flex;
            justify-content: space-between; /* Gleicher Abstand zwischen den Spalten */
            max-width: 1200px; /* Maximale Breite der Sektion */
            margin: 0 auto; /* Zentriert die Sektion horizontal */
            padding: 0 20px; /* Seitliches Padding */

        }

        /* Spalten Style */
        .image_column {
            flex: 1; /* Jede Spalte nimmt den gleichen Platz ein */
            display: flex;
			justify-content: center;
			align-items: center;
        }
.image_column img{
	height: 100%;
	width: auto;
}

        /* Spalten Style */
        .text_column {
            flex: 1; /* Jede Spalte nimmt den gleichen Platz ein */
            padding: 20px; /* Innenabstand in den Spalten */
        }

        /* Responsive Anpassung für kleinere Bildschirme */
        @media (max-width: 768px) {
            .container {
                flex-direction: column; /* Auf kleinen Bildschirmen untereinander anordnen */
                text-align: center; /* Text zentrieren */
            }
        }


/* Media Queries für kleinere Bildschirme */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    main {
        padding: 20px;
    }

    header h1 {
        font-size: 2rem;
    }
}
li {
	margin-bottom: 20px;
}

.full-width-section_l2 {
	        width: 100vw; /* Die Sektion geht über die gesamte Breite des Bildschirms */
            background-color: #3B858B; /* Dunkelblauer Hintergrund */
            color: white; /* Weißer Text */
            padding: 50px 0; /* Oben und unten Polsterung (Padding) */
			display: flex; /* Flexbox für Spaltenlayout */
            align-items: stretch; /* Spalten sollen die gleiche Höhe haben */
            padding: 20px;
            box-sizing: border-box;
}

slogan3 {
		color: #FFFFFF; /* Dunkelblau für Überschriften */
    font-size: 6.0rem;	
    margin-bottom: 20px;
	text-align: center;
	line-height: 1.2;
}

h2b {
	font-size: 1.5rem;
    margin: 0;
	color: #6C6969;
}

.full-width-section_l2b {
	 width: 100vw; /* Die Sektion geht über die gesamte Breite des Bildschirms */
            background-color: black; /* Dunkelblauer Hintergrund */
            color: white; /* Weißer Text */
            padding: 50px 0; /* Oben und unten Polsterung (Padding) */
			display: flex; /* Flexbox für Spaltenlayout */
            align-items: stretch; /* Spalten sollen die gleiche Höhe haben */
            padding: 20px;
            box-sizing: border-box;
}

h2b {
	font-size: 1.2rem;
	color: white;
}
/* Stil für das Cookie-Banner */
        #cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #333;
            color: white;
            padding: 20px;
            text-align: center;
            display: none; /* Standardmäßig ausgeblendet */
            z-index: 9999;
        }
        #cookie-banner button {
            background-color: #828282;
            color: white;
            border: none;
            padding: 10px 20px;
            margin-left: 10px;
            cursor: pointer;
        }
        #cookie-banner button:hover {
            background-color: #C3C3C3;
        }
.full-width-section2 {
	        width: 100vw; /* Die Sektion geht über die gesamte Breite des Bildschirms */
            background-color: #259290; /* Dunkelblauer Hintergrund */
            color: white; /* Weißer Text */
            padding: 50px 0; /* Oben und unten Polsterung (Padding) */
			display: flex; /* Flexbox für Spaltenlayout */
            align-items: stretch; /* Spalten sollen die gleiche Höhe haben */
            padding: 20px;
            box-sizing: border-box;
}

.full-width-section2c {
		        width: 100vw; /* Die Sektion geht über die gesamte Breite des Bildschirms */
            background-color: white; /* Dunkelblauer Hintergrund */
            color: black; /* Weißer Text */
            padding: 50px 0; /* Oben und unten Polsterung (Padding) */
			padding: 20px;
            box-sizing: border-box;
}

.art_column {
	flex: 0;
	max-width: 1200px;
	margin: 0 auto; /* Zentriert die Sektion horizontal */            
    padding: 20px; /* Innenabstand in den Spalten */
}

.art_container {	        
            width: 100vw;
            margin: 0 auto; /* Zentriert die Sektion horizontal */
            padding: 0 20px; /* Seitliches Padding */
}
