@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Nunito+Sans:wght@400;700&display=swap');

/* === GRUNDLEGENDE STYLES === */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background-color: #111;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* === TYPOGRAFIE === */
h1, h2, h3 {
    font-family: 'Nunito Sans', sans-serif;
}

h1 {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.4rem;
    color: #4a90e2;
    margin-bottom: 15px;
}

p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* === NAVIGATION === */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

/* Logo Link Styling */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.logo span {
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #4a90e2;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4a90e2;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #3a7bc8;
}

/* === ALLGEMEINE SECTIONS === */
.page-header {
    background-color: #1a1a1a;
    padding-top: 70px;
    padding-bottom: 10px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #4a90e2;
    margin: 0 0 20px 0;
}

/* === HIGHLIGHT BOXES === */
.highlight-box {
    background-color: #222;
    border-left: 4px solid #4a90e2;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.info-box {
    background-color: #333;
    border-left: 4px solid #4a90e2;
    padding: 15px;
    margin-top: 10px;
    font-style: italic;
    border-radius: 0 5px 5px 0;
}

/* === MODALS === */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background: #1a1a1a;
    margin: 50px auto;
    padding: 20px;
    max-width: 800px;
    border-radius: 5px;
    position: relative;
}

.close-button {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.modal h2 {
    color: #4a90e2;
    margin-bottom: 20px;
}

.modal h3 {
    color: #4a90e2;
}

.modal ul {
    padding-left: 20px;
}

/* === FOOTER === */
footer {
    background-color: #0a0a0a;
    padding: 30px 0;
    text-align: center;
}

.legal-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 0;
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.legal-footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.legal-footer a:hover {
    opacity: 1;
}

/* === ANIMATIONEN === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        top: 60px;
        flex-direction: column;
        background-color: rgba(17, 17, 17, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-menu li a {
        font-size: 1.2rem;
    }

    .logo span {
        font-size: 1.3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .modal-content {
        margin: 20px;
        padding: 15px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 10px 15px;
    }

    .logo span {
        font-size: 1.1rem;
    }
}