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

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero {
    color: white;
    padding: 100px 20px;
    text-align: center;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/b1f7613bd_AdobeStock_88614892.jpg') center / cover no-repeat;
}

.hero-gradient {
    background: linear-gradient(135deg, #5b8bec 0%, #010613 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    margin-bottom: 20px;
    font-size: 32px;
    font-family: inherit;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title-large {
    font-size: 56px;
}

h2 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 32px;
    font-family: inherit;
    font-weight: 600;
}

p {
    font-size: 16px;
    font-family: inherit;
}

.tagline {
    margin-bottom: 30px;
    font-size: 16px;
    font-family: inherit;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.tagline-large {
    font-size: 20px;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-embed {
    margin: 30px auto;
    text-align: center;
}

.cta-button {
    background-color: #5b8bec;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
    text-decoration: none;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #010613;
}

.cta-section,
.features-section {
    text-align: center;
}

footer {
    background-color: #f9fafb;
    padding: 30px;
    text-align: center;
    color: #999;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero-title-large {
        font-size: 40px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }
}


/* IMPRESSUM - DATENSCHUTZ */

.text-hero {
    background: linear-gradient(135deg, #5b8bec 0%, #010613 100%);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
}

.text-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.text-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.text-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    line-height: 1.8;
}

.text-content h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #010613;
}

.text-content h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #5b8bec;
}

.text-content p {
    margin-bottom: 20px;
    color: #444;
}

.text-content a {
    color: #5b8bec;
    text-decoration: none;
}

.text-content a.cta-button {
    color: #fff;
}

.text-content a:hover {
    text-decoration: underline;
}

.text-box {
    background: #f9fafb;
    border-left: 4px solid #5b8bec;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.back-button {
    display: inline-block;
    /* margin-top: 40px; */
    margin: 40px auto;
}

@media (max-width: 768px) {
    .text-hero {
        padding: 70px 20px 50px;
    }

    .text-hero h1 {
        font-size: 36px;
    }

    .text-content {
        padding: 40px 20px;
    }

    .text-content h2 {
        font-size: 26px;
    }
}
@media (min-width: 768px) {
    .copyright {
        float:left;
    }


    .footermenu {
        float:right;
    }
}

.footermenu a {
    color:#333;
    text-decoration: none;
}



/* DATENSCHUTZ */
ul {
    margin-bottom: 20px;
}
ul li {
    margin-left:30px;
}

.back-button-div {
    /* width:100%;  */
    text-align: center;
    position: fixed; 
    bottom: 10px; 
    left: 50%;
    transform: translateX(-50%);
}