body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #000;
    overflow-x: hidden;
}

body {
    padding-top: 70px; /* Verhindert, dass Inhalte hinter der Navbar verschwinden */
}

/* Navbar Stile */
.navbar {
    background: rgba(0, 0, 0, 0.9) !important; /* Transparenter, dunkler Hintergrund */
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.navbar-brand img {
    height: 50px; /* Logo optimiert */
}

.navbar-nav .nav-link {
    font-size: 18px;
    padding: 10px 15px;
    transition: color 0.3s ease-in-out, transform 0.2s;
}

.navbar-nav .nav-link:hover {
    color: #ffd700 !important; /* Helleres Gold */
    transform: scale(1.1);
}

/* Hero-Bereich */
#start {
    position: relative;
}

.carousel-item img {
    height: 100vh;
    object-fit: cover;
    filter: brightness(50%);
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

.overlay-content h1 {
    font-size: 50px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.btn-call {
    display: inline-block;
    white-space: nowrap; /* Verhindert Zeilenumbruch */
    background-color: #ffc107;
    color: #000;
    padding: 10px 20px;
    font-size: 18px; /* Reduziere die Schriftgröße für kleine Bildschirme */
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    min-width: 200px; /* Optional: Mindestbreite festlegen */
}

@media (max-width: 480px) {
    .btn-call {
        font-size: 16px; /* Kleinere Schrift für schmale Bildschirme */
        padding: 8px 15px;
    }
}

.btn-call:hover {
    background-color: #ffd700;
    color: #000;
    transform: scale(1.1);
}

/* Sektionen */
.section-padding {
    padding: 60px 0;
}

h2, h3 {
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.icon-circle {
    font-size: 50px;
    color: #ffc107;
    margin-bottom: 15px;
}


/* Google Map Container Fix */
.google-map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 10px;
    background: #222;
}

.google-map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background: #111;
    padding: 20px 0;
    text-align: center;
    color: #bbb;
    font-size: 14px;
    border-top: 3px solid #ffc107;
}
/* For tablets and smaller screens */
@media (max-width: 992px) {
    .overlay-content h1 {
        font-size: 40px; /* Adjust for tablets */
    }
}

/* For mobile screens */
@media (max-width: 768px) {
    .overlay-content h1 {
        font-size: 30px; /* Smaller font for phones */
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .overlay-content h1 {
        font-size: 24px; /* Further reduce font size */
    }
}