body {
    margin: 0;
    font-family: 'Fira Sans', sans-serif;
}

.hero {
    position: relative;
    height: 100vh;
    background: url('../../assets/images/bad-fliesenwerkstatt.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 6em;
    font-weight: 800;
    margin: 0;
    color: white;
    opacity: 0; /* Start hidden */
    transition: opacity 1s ease-in-out; /* Smooth transition */
    animation: fadeIn 1s ease-in-out 1.5s forwards; /* Delay 1.5s */
}

.hero p {
    font-size: 2.5em;
    font-weight: 600;
}

.logo {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 180px; /* Größe des Logos anpassen */
    height: auto;
    animation: uk-animation-fade;
}

.section-content {
    padding: 50px 20px;
    color: black;
}

.section-content h2 {
    margin-bottom: 10px;
    font-size: 4em;
    font-weight: 600;
}

.section-content p {
    margin: 0;
}

.icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.uk-navbar-toggle {
    color: white;
}

footer {
    background-color: #eee;
    padding: 30px;
    text-align: center;
    color: black;
}

footer p {
    margin: 5px 0;
}

.footer-container {
    display: flex;
    align-items: flex-start; /* Center items vertically */
    justify-content: flex-start; /* Align items to the start */
}

.footer-logo {
    margin-right: 20px; /* Space between logo and text */
    display: contents;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
    margin-right: 30px;
}

.footer-text {
    text-align: left;
}

.footer-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-links a {
    text-decoration: none;
    color: #000;
}


footer .contact-button {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }
    .hero p {
        font-size: 1.5em;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-logo,
    .footer-text {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1.2em;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
