/* 🔄 Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 🌐 Body-Grundlayout */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
}

/* 🔗 Links */
a {
    color: #38bdf8;
    text-decoration: none;
    transition: 0.2s ease;
}

a:hover {
    text-decoration: underline;
}

/* 🧠 Header */
.header {
    background-color: #1e293b;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px #00000022;
    flex-wrap: wrap;
}

/* 📛 Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #38bdf8;
    box-shadow: 0 0 8px #00eaff55;
}

/* 📂 Navbar */
.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar a {
    font-weight: 500;
    color: #e2e8f0;
}

.navbar a:hover {
    color: #38bdf8;
}

.cta-button {
    background-color: #38bdf8;
    color: #0f172a;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #0ea5e9;
}

/* 👤 User-Circle */
.user-circle {
    background-color: #38bdf8;
    color: #0f172a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: calc(0.45 * 50px);
    cursor: pointer;
    box-shadow: 0 0 10px #38bdf855;
}

/* ⬇️ Dropdown-Menü */
.dropdown {
    position: absolute;
    background-color: #1e293b;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px #00000055;
    right: 40px;
    top: 80px;
    z-index: 9999;
}

.dropdown a {
    display: block;
    padding: 5px 10px;
    color: #e2e8f0;
}

.dropdown a:hover {
    background-color: #334155;
}

.hidden {
    display: none;
}

/* ☰ Menü-Button */
.hero-toggle {
    position: absolute;
    top: 120px;
    left: 20px;
    z-index: 9999;
    background-color: #38bdf8;
    color: #0f172a;
    border: none;
    padding: 10px 14px;
    font-size: 22px;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 0 10px #38bdf855;
    transition: background-color 0.2s ease;
}

.hero-toggle:hover {
    background-color: #0ea5e9;
}

/* 📑 Hero-Menü-Links */
.hero-links {
    position: absolute;
    top: 180px;
    left: 20px;
    background-color: #1e293b;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 0 12px #38bdf866;
    z-index: 9998;
    transition: all 0.3s ease;
}

.hero-links a {
    color: #38bdf8;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 6px;
    background-color: transparent;
    box-shadow: 0 0 10px #38bdf822;
    transition: 0.2s ease;
}

.hero-links a:hover {
    background-color: #1e293b;
    color: #ffffff;
    box-shadow: 0 0 16px #38bdf866;
    transform: scale(1.05);
}

.hero-links.hidden {
    display: none;
}

/* 📋 Datenschutz-Inhalt */
.content {
    padding: 80px 40px;
    max-width: 900px;
    margin: 80px auto 40px;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 40px;
    box-shadow: 0 0 20px #00eaff44;
    text-align: left;
}

.content h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: #38bdf8;
    text-align: center;
    text-shadow: 0 0 8px #38bdf855;
    letter-spacing: 1px;
}

.content h3 {
    font-size: 1.5rem;
    margin-top: 36px;
    margin-bottom: 14px;
    color: #60cdf6;
    text-shadow: 0 0 6px #60cdf655;
}

.content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 22px;
    color: #e2e8f0;
}

.content strong {
    color: #38bdf8;
    font-weight: 600;
}

.content a {
    color: #38bdf8;
    text-decoration: underline;
    transition: 0.2s ease;
}

.content a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #38bdf8aa;
}

/* 🦶 Footer */
.footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #1e293b;
    color: #64748b;
    margin-top: 60px;
    border-top: 2px solid #334155;
}

.footer-links {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #38bdf8;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: 0.3s ease;
    background-color: transparent;
    box-shadow: 0 0 0 transparent;
}

.footer-links a:hover {
    background-color: #334155;
    color: #ffffff;
    box-shadow: 0 0 12px #38bdf855;
    transform: scale(1.05);
}

/* 📱 Responsive Stuff */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar {
        margin-top: 10px;
    }

    .navbar a {
        display: block;
        margin: 5px 0;
    }

    .hero-toggle {
        top: 10px;
        left: 10px;
        font-size: 20px;
        padding: 8px 12px;
    }

    .hero-links {
        position: static;
        margin-top: 30px;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-links a {
        font-size: 16px;
        padding: 8px 12px;
    }

    .content {
        padding: 40px 20px;
        margin: 60px 10px;
    }

    .content h2 {
        font-size: 1.8rem;
    }

    .content h3 {
        font-size: 1.3rem;
    }

    .content p {
        font-size: 0.95rem;
    }
}
