body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f8f9fa;
    background-color: #121212;
    scroll-behavior: smooth;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.logo {
    height: 2rem;
    vertical-align: middle;
    margin-right: .2rem;
    top: -.15rem;
    position: relative;
}

.hero-section {
    height: 100vh;
    background-image: url('/img/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    scroll-snap-align: start;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    padding-top: 16rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.section {
    min-height: 100vh;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: start;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-dark {
    background-color: #1e1e1e;
}

.section-light {
    background-color: #2d2d2d;
}

.card {
    border: none;
    border-radius: 15px;
    /* Dunkler Farbverlauf mit Transparenz */
    background: linear-gradient(135deg, rgba(35, 37, 38, 0.85), rgba(65, 67, 69, 0.85));
    color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.icon {
    color: #e03a31 !important;
}

.btn-primary {
    background-color: #ff4136;
    border-color: #ff4136;
}

.btn-primary:hover {
    background-color: #e03a31;
    border-color: #e03a31;
}

.btn-primary:active {
    background-color:rgb(124, 33, 28) !important;
    border-color:rgb(124, 33, 28) !important;
}

.discord-card {
    background-color: #7289da;
    color: white;
}

.footer {
    background-color: #121212;
    padding: 2rem 0;
}

.nav-link {
    color: #f8f9fa;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff4136;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #ff4136;
}

#stadt {
    background-image: url('/img/casino.jpg');
}

#grundsaetze, #impressum, #datenschutzerklaerungen {
    padding-bottom: 0;
}

#grundsaetze .bg, #impressum .bg, #datenschutzerklaerungen .bg {
    background-image: url('/img/rathaus.jpg');
    width: 100%;
    height: 100%;
    min-height: 100vh;
    max-height: 100vh;
    margin-top: -5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: sticky;
    top: 0;
    display: inline;
}

#grundsaetze .container, #impressum .container, #datenschutzerklaerungen .container {
    transform: translateZ(0);
    margin-top: calc(5rem - 100vh);
    padding-bottom: 5rem;
}

#mitmachen {
    background-image: url('/img/town.jpg');
}

.footer-text2, .footer-text2 a {
    color: #a8362f !important;
}

.footer-text2 a:hover {
    color: #882c27 !important;
}

.nomove:hover {
    transform: none;
}