@font-face {
    font-family: 'Gagalin Regular';
    src: url('humanism-bolddemo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #63c4e8;
    color: white;
    font-family: 'Gagalin Regular', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* HEADER */
header {
    font-family: 'Gagalin Regular', Arial, sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding: 1rem;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* BUTTONS */
.btn-warning, .btn-outline-light {
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
}

/* REGELWERK */
.tischkicker-container {
    background-color: #63c4e8;
    color: #000;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    padding: 20px;
    text-decoration: none;
}

/* NAVIGATION */
.nav-tischkicker {
    background-color: #63c4e8;
    padding: 15px 20px;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-tischkicker .nav-link {
    color: #000;
    font-weight: bold;
    margin: 10px;
    padding: 8px 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: inline-block;
}

/* CONTENT BOX */
.tischkicker-content {
    max-width: 850px;
    background: #212529;
    padding: 50px;
    border-radius: 12px;
    margin: 50px auto;
    box-shadow: 0px 4px 10px rgba(1, 1, 1, 1);
    text-align: left;
    text-decoration: none;
    
}

.tischkicker-heading {
    color: #ffc107;
    font-size: 1.8rem;
}

.tischkicker-list {
    padding-left: 25px;
    line-height: 2.0;
    color: #ffffff;
}

.tischkicker-text {
    line-height: 2.0;
    color: #fefcfc;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .btn-warning, .btn-outline-light {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .nav-tischkicker {
        flex-direction: column;
        align-items: center;
    }

    .nav-tischkicker .nav-link {
        width: 80%;
        text-align: center;
    }

    .tischkicker-content {
        padding: 30px;
        margin: 20px auto;
    }
}

/* FOOTER */
footer {
    background-color: #212529;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    font-size: 0.9rem;
    margin-top: 50px;
    transition: background-color 0.3s ease;
    position:sticky;
    bottom: 0px;
}

footer a {
    color: #ffc107;
    text-decoration: none;
}

footer a:hover {
    color: #ff8000;
}

footer .footer-content {
    margin: 0;
}
