/* ===============================
   GLOBAL RESET
================================ */

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

/* ===============================
   BODY & BASICS
================================ */

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
    line-height: 1.7;
}

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

a:hover {
    color: #7dd3fc;
}

/* ===============================
   HEADER
================================ */

.header {
    background-color: #1e293b;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    position: relative;
    z-index: 1000;
}

.logo img {
    height: 90px;
    border-radius: 50%;
    border: 2px solid #38bdf8;
    box-shadow: 0 0 18px rgba(56,189,248,0.4);
}

/* ===============================
   NAV / USER
================================ */

.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #38bdf8;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 0 14px rgba(56,189,248,0.6);
}

/* Dropdown */

.dropdown {
    position: absolute;
    top: 100%;
    right: 40px;
    margin-top: 12px;
    background: #1e293b;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    min-width: 200px;
    z-index: 2000;
}

.dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #e2e8f0;
    font-weight: 500;
}

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

.hidden {
    display: none !important;
}

/* ===============================
   HERO
================================ */

.hero {
    text-align: center;
    padding: 140px 20px 120px;
    background: linear-gradient(160deg, #1e293b, #0f172a);
    position: relative;
    overflow: visible;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.4rem);
    color: #38bdf8;
    margin-bottom: 20px;
    text-shadow: 0 0 18px rgba(56,189,248,0.5);
}

.hero p {
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    color: #94a3b8;
}

/* CTA */

.cta-button {
    display: inline-block;
    background: #38bdf8;
    color: #0f172a;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(56,189,248,0.5);
}

/* ===============================
   FIXED HERO MENU (unter Header)
================================ */

.hero-toggle {
    position: absolute;
    left: 16px;
    top: calc(var(--header-height, 120px) + 35px);
    z-index: 100000;

    background: #38bdf8;
    color: #0f172a;
    border: none;
    padding: 10px 16px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 10px;
    cursor: pointer;

    box-shadow: 0 0 14px rgba(56,189,248,0.6);
}

.hero-links {
    position: fixed;
    left: 16px;
    top: calc(var(--header-height, 120px) + 80px);
    z-index: 100000;

    background: rgba(30,41,59,0.95);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 14px;
    border-radius: 14px;
    min-width: 220px;

    display: flex;
    flex-direction: column;
    gap: 8px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
}

.hero-links a {
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 700;
    color: #e2e8f0;
}

.hero-links a:hover {
    background: #334155;
}

/* ===============================
   CONTENT
================================ */

.content {
    max-width: 900px;
    margin: 120px auto;
    padding: 0 20px;
    text-align: center;
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: #38bdf8;
    text-shadow: 0 0 10px rgba(56,189,248,0.4);
}

.content p {
    margin-bottom: 60px;
    font-size: 1.1rem;
    color: #cbd5e1;
}

/* ===============================
   FOOTER
================================ */

.footer {
    background: #1e293b;
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #334155;
}

.footer p {
    color: #94a3b8;
}

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

.footer-links a {
    font-weight: 500;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

    .header {
        padding: 20px;
    }

    .logo img {
        height: 75px;
    }

    .hero {
        padding: 120px 20px 100px;
    }

    .hero-links {
        min-width: 200px;
    }
}
