﻿/**/

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: white;
    background-color: black;
    font-size: 16px; /* Handy Standart */
}

header {
    background: url('../img/bg2.png') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 15px; /* Handy padding kleiner */
}

    header h1 {
        font-size: 2em; /* Handy */
        margin-bottom: 0.2em;
    }

nav {
    padding: 15px;
    text-align: center;
}

    nav a {
        color: white;
        margin: 0 10px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9em;
    }

section {
    padding: 40px 15px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background: #111;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1em;
    transition: background 0.3s ease;
}

    .btn:hover {
        background: #333;
    }

.gallery img {
    width: 100%;
    max-width: 300px;
    margin: 10px;
    border-radius: 8px;
    object-fit: cover;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: black;
    font-size: 14px;
    color: white;
}

    footer a {
        color: #007acc;
        text-decoration: none;
        margin: 0 5px;
    }

        footer a:hover {
            text-decoration: underline;
        }

/*  Desktop ab 768px */
@media (min-width: 768px) {
    body {
        font-size: 18px;
    }

    header {
        padding: 200px 20px;
    }

        header h1 {
            font-size: 3em;
        }

    nav {
        padding: 20px;
    }

        nav a {
            margin: 0 15px;
            font-size: 1em;
        }

    section {
        padding: 60px 20px;
    }

    .btn {
        margin: 15px;
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

/* Fade-Slide */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
        opacity: 1;
        transform: translateY(0);
}

/* Gallerie */
/*
.location-marker {
    font-size: 2rem;
    margin-right: 8px;
    color: red; /* Markerfarbe */
}

/*
.location-text {
    font-size: 1.5rem;
    font-weight: bold;
    vertical-align: middle;
}


/*
.image-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center; /* horizontal zentrieren */
/* text-decoration: none;
    color: inherit;
}


/*
.image-wrapper {
    padding: 10px;
    text-align: center; /* sicherstellen, dass auch der Inhalt zentriert ist */
/*  margin-bottom: 20px;*/ /* mehr Abstand nach unten */


