* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #2E2E2E;
    color: #FFF;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 20px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.search-container {
    flex: 1;
}

.search-bar {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
}

.nav-icons {
    display: flex;
    gap: 15px;
}

.nav-icons a {
    color: #fff;
    text-decoration: none;
    background-color: transparent;
    font-size: 20px;
}

/* Styling für Index-Seite */
.grid-layout {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.left-feed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 70%;
}

.card {
    background-color: #444;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
}

.large-card {
    grid-column: span 2;
}

.card-title {
    font-size: 18px;
}

.right-widgets {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 28%;
}

.widget {
    background-color: #444;
    padding: 20px;
    border-radius: 8px;
}

.weather-widget h2 {
    margin-bottom: 10px;
}

.stock-widget ul {
    list-style: none;
    padding: 0;
}

.stock-widget li {
    border-bottom: 1px solid #555;
    padding: 10px 0;
}

/* Bildanpassungen */
.ad-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.ad-video {
    width: 100%;
    border-radius: 8px;
}

/* Text- und Überschriften-Styling */
h1 {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Responsive Grid für Partnerkarten */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.partner-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    padding: 15px;
    text-align: center;
}

.partner-card:hover {
    transform: scale(1.05);
}

.partner-card a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

.partner-card a:hover {
    text-decoration: underline;
}

/* About Seite spezifisch */
.about-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f09433;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    text-align: justify;
    margin-bottom: 20px;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #2E2E2E;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Booking Seite spezifisch */
.booking-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f09433;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
}

.service {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service h2 {
    font-size: 1.8rem;
    color: #f09433;
    margin-bottom: 10px;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e6683c;
    margin-top: 10px;
}

.booking-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    text-align: justify;
    margin-bottom: 20px;
}

/* Kooperationen Seite spezifisch */
.cooperation-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f09433;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
}

.partners, .benefits, .call-to-action {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.partners h2, .benefits h2, .call-to-action h2 {
    font-size: 1.8rem;
    color: #f09433;
    margin-bottom: 10px;
}

.cooperation-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    text-align: justify;
    margin-bottom: 20px;
}
/* About-Seite spezifisch */
.about-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #2E2E2E;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.about-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f09433;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    text-align: justify;
    margin-bottom: 20px;
}

/* Animation für Emojis */
.about-section p > .emoji {
    font-size: 1.5em;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-5px); }
}
/* Footer-Styling */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    font-size: 0.9rem;
}

footer p {
    margin: 0;
    padding-bottom: 5px;
}

footer a {
    color: #f09433;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

footer a:active {
    color: #e6683c;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.card:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Allgemeine Anpassungen für kleine Bildschirme */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Navigation untereinander statt nebeneinander */
        padding: 10px;
    }
    
    .navbar-logo {
        width: 120px; /* Logo für kleine Bildschirme verkleinern */
    }

    .nav-icons {
        margin-top: 10px; /* Abstand oben, falls Navigation unter Logo angezeigt wird */
        gap: 10px; /* Weniger Abstand zwischen Symbolen */
    }
    
    .container {
        padding: 10px; /* Weniger Padding für mobile Geräte */
    }

    .about-section, .impressum-container, .datenschutz-container {
        padding: 20px 10px; /* Inneneinrückung für Texte auf Mobilgeräten */
    }
    
    .content-grid {
        grid-template-columns: 1fr; /* Karten im Grid einzeln untereinander */
    }
}
/* Standard-Layout für größere Bildschirme */
.grid-layout {
    display: flex;
    justify-content: space-between;
}

/* Reihenfolge der Elemente auf Mobilgeräten ändern */
@media (max-width: 768px) {
    .grid-layout {
        flex-direction: column-reverse; /* Reihenfolge umkehren: Right Side zuerst, dann Left Side */
    }

    .right-widgets {
        order: 1;
    }

    .left-feed {
        order: 2;
    }
}
	/* Container für das Logo */
	.logo-container {
		display: flex;
		align-items: center;
	}

	/* Logo Styling */
	.navbar-logo {
		width: 150px; /* Passende Größe für die Navigation */
		height: auto;
		transition: transform 0.3s ease;
	}

	.navbar-logo:hover {
		transform: scale(1.05); /* Kleiner Hover-Effekt für Interaktivität */
	}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        flex-direction: row; /* zurück zur horizontalen Anordnung für Fußzeile */
        justify-content: space-around;
        z-index: 9999;
    }

    body {
        padding-bottom: 80px; /* Platz für die fixe Navbar unten schaffen */
    }
}
