@font-face {
    font-family: 'Roboto';
    src: url('/assets/fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('/assets/fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #151E22;
    font-family: 'Roboto', sans-serif;
    color: #c5c5c5;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 50px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 30px;
}

h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 20px;
}

p, li {
    font-size: 1rem;
    line-height: 1.6;
}

a {
    color: #ffc107;
    text-decoration: underline;
}

@media (max-width: 576px) {
    .logo-img {
        height: 70px;
        width: auto;
    }
    header {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .content-wrapper {
        padding: 20px 10px;
    }
}

/* Footer-Styles */
.footer-section {
    background-color: #10171B;
    padding: 40px 20px;
    margin-top: 60px;
    color: #c5c5c5;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 200px;
    margin-bottom: 20px;
}

.footer-column img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 10px; /* reduziert */
    margin-top: 0; /* kein oberer Abstand */
    font-size: 1rem;
}

.footer-column p,
.footer-column ul,
.footer-column li {
    font-size: 0.9rem;
    line-height: 1.6;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px; /* kompaktere Listen */
}

.footer-column a {
    color: #ffc107;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-column h4 {
        margin-bottom: 8px;
    }
    .footer-column ul li {
        margin-bottom: 6px;
    }
    .hide-mobile {
        display: none;
    }
}

/* Exite Intent */
#popup h2 {
    color: #141F22;
    margin-bottom: 20px;
}

#popup p {
    margin-bottom: 20px;
    line-height: 1.5;
}

#popup button:hover {
    background-color: #d76621;
    transition: background-color 0.3s ease;
}

