/* Grundfarben & Reset */
:root {
    --primary-yellow: rgb(223, 194, 33);
    --primary-yellow-dark: rgb(134, 98, 12);
    --gradient-bg: linear-gradient(to right, var(--primary-yellow-dark), var(--primary-yellow), rgb(175, 115, 3));
}

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

body {
    font-family: sans-serif;
    line-height: 1.5;
}

/* Navbar */
.my-navbar{
    background-color: black !important;
}
.nav-link{
    color: white !important;
    font-size: 20px !important;
    font-weight: bold;
    padding: 30px !important;
}
.btn-primary{
    background: linear-gradient(to right,rgb(134, 98, 12), rgb(223, 194, 33), rgb(175, 115, 3)) !important;
    border-color: black !important;
    height: 45px;
    margin: 20px;
}
.btn-primary:hover{
    background: rgb(172, 157, 21) !important;
    border-color: black !important;
}
.modal-title{
    text-align: center !important;
}
.modal-body{
    font-weight: bold;
    font-size: 16px;
    text-align: center;
}
.modal-body1{
    font-weight: bold ;
    font-size: 20px;
    text-align: center; 
}

/* Carousel */
.carousel-item img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

/* Überschrift */
.Überschrift1 {
    padding: 4% 0;
    text-align: center;
}
.überschrift-titel {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

/* Runde Bilder-Strecke */
.Round-imgs {
    background: var(--gradient-bg);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 3%;
    text-align: center;
}

.Round-imgs div {
    max-width: 300px;
}

.Round-imgs img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: solid;
    border-radius: 190px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

@media (hover: hover) {
    .Round-imgs img:hover {
        transform: scale(1.2);
        border-radius: 30px;
        background-color: black;
    }
}

.Round-imgs span {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-top: 10px;
    font-weight: bold;
}

/* Services (Mini-Grafiken) */
.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 5%;
}

.service-item {
    flex: 1 1 220px;
    max-width: 280px;
    text-align: center;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.service-text {
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Zwischenbereich */
.zwi-text-container {
    text-align: center;
    background: var(--gradient-bg);
    color: black;
    padding: 10%;
}

.zwi-titel {
    font-size: clamp(1.4rem, 4vw, 2rem);
    margin-bottom: 20px;
}

.zwi-text {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.btn-primary1 {
    background-color: black !important;
    color: white !important;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    font-weight: bold;
}

/* Footer */
.footer-contain {
    background-color: black;
    color: white;
    text-align: center;
    padding: 30px 0;
}

.footer-img {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.footer-link {
    color: var(--primary-yellow-dark);
    display: block;
    margin: 5px 0;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.copyright {
    color: white;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Responsiveness */

@media (max-width: 992px) {
	.my-navbar {
        text-align: center !important;
    }
    .nav-link {
        font-size: 1rem;
		padding: 10px !important;
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 6px 12px;
        margin: 10px auto 0;
        display: block;
    }

    .carousel-item img {
        height: 45vh;
    }

    .service-image {
        height: 180px;
    }

    .Round-imgs img {
        border-radius: 150px;
    }
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 35vh;
    }

    .zwi-text-container {
        padding: 6%;
    }

    .Round-imgs {
        gap: 20px;
    }

    .Round-imgs img {
        width: 160px;
        height: 160px;
        border-radius: 140px;
    }

    .service-image {
        height: 150px;
    }

    .btn-primary {
        width: 90%;
        font-size: 0.85rem;
    }

    .footer-img {
        width: 100px;
    }
}
