/* =========================
   BASIS
========================= */

:root {
    --bg: #070b14;
    --bg-soft: #0c1220;
    --card: rgba(15, 22, 37, 0.82);
    --card-strong: rgba(18, 27, 46, 0.92);
    --text: #eef2ff;
    --muted: #9aa7c2;
    --line: rgba(255, 255, 255, 0.08);

    --violet: #8b5cf6;
    --violet-strong: #a855f7;
    --cyan: #22d3ee;
    --cyan-strong: #06b6d4;

    --shadow-violet: 0 0 18px rgba(139, 92, 246, 0.28);
    --shadow-cyan: 0 0 18px rgba(34, 211, 238, 0.22);

    --radius: 22px;
    --radius-small: 16px;
    --max-width: 1280px;
    --transition: 0.28s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, 0.10), transparent 24%),
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.08), transparent 24%),
        linear-gradient(180deg, #05070d 0%, #09111d 50%, #05070d 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--max-width), calc(100% - 40px));
    margin: 0 auto;
}

/* =========================
   HINTERGRUND-GLOW
========================= */

.bg-glow {
    position: fixed;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.bg-glow-1 {
    top: 90px;
    left: -120px;
    background: var(--violet);
}

.bg-glow-2 {
    top: 240px;
    right: -120px;
    background: var(--cyan);
}

/* =========================
   HEADER
========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    backdrop-filter: blur(14px);
    background: rgba(6, 10, 18, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.logo-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(34, 211, 238, 0.18));
    border: 1px solid rgba(139, 92, 246, 0.45);
    box-shadow: var(--shadow-violet);
    color: var(--cyan);
}

.logo-text {
    background: linear-gradient(90deg, #ffffff, #c4b5fd, #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================
   NAV
========================= */

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    flex: 1;
}

.main-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.95rem;
    transition: all 0.25s ease;
    position: relative;
}

.main-nav a:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.05);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
    transform: translateY(-1px);
}

.main-nav a.active {
    color: #ffffff;
    background: rgba(139, 92, 246, 0.18);
    box-shadow:
        inset 0 0 0 1px rgba(139, 92, 246, 0.45),
        0 0 14px rgba(139, 92, 246, 0.25);
    border-radius: 999px;
    font-weight: 700;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

/* =========================
   HEADER SOCIALS
========================= */

.header-socials {
    display: grid;
    grid-template-columns: repeat(2, 64px);
    gap: 10px 12px;
    margin-left: 20px;
    flex-shrink: 0;
    align-items: start;
}

.header-socials a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}

.header-socials .social-circle {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    transition: 0.3s;
}

.header-socials .social-circle img {
    width: 18px;
    height: 18px;
    display: block;
}

.header-socials .social-label {
    font-size: 10px;
    margin-top: 6px;
    color: #94a3b8;
    text-align: center;
    line-height: 1.1;
}

.header-socials a:hover .social-circle {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.10);
}

.header-socials a.yt:hover .social-circle {
    background: #ff0000;
}

.header-socials a.twitch:hover .social-circle {
    background: #9146ff;
}

.header-socials a.kick:hover .social-circle {
    background: #53fc18;
}

.header-socials a.tiktok:hover .social-circle {
    background: #111111;
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    z-index: 1;
    padding: 120px 0 50px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: start; /* 🔥 FIX */
}
}

.eyebrow {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--cyan);
    font-size: 0.85rem;
    font-weight: 700;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    line-height: 1.1; /* vorher 0.95 → das ist zu klein */
}

.hero-subtitle {
    margin: 18px 0 0;
    font-size: 1.15rem;
    color: #d6ddf0;
}

.hero-description {
    margin: 22px 0 0;
    max-width: 620px;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.22), rgba(168, 85, 247, 0.18));
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: var(--shadow-violet);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 22px rgba(168, 85, 247, 0.38);
}

.btn-secondary {
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.14), rgba(139, 92, 246, 0.12));
    border-color: rgba(34, 211, 238, 0.38);
    box-shadow: var(--shadow-cyan);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 22px rgba(34, 211, 238, 0.28);
}

/* =========================
   HERO VISUAL / KACHELN OBEN
========================= */

.hero-visual {
    position: relative;
    min-height: 520px;
}

.hero-card {
    position: absolute;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
        linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(34, 211, 238, 0.10));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255,255,255,0.04),
        0 0 22px rgba(139, 92, 246, 0.18);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.12)),
        linear-gradient(180deg, rgba(255,255,255,0.08), transparent 30%),
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 35%);
    pointer-events: none;
}

.hero-card span {
    position: relative;
    z-index: 1;
    font-weight: 700;
    letter-spacing: 0.03em;
    background: rgba(6, 10, 18, 0.55);
    backdrop-filter: blur(6px);
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
}

.hero-card-large {
    width: 290px;
    height: 380px;
    left: 30px;
    top: 70px;
    transform: rotate(-8deg);
}

.hero-card-small {
    width: 190px;
    height: 150px;
}

.top-right {
    top: 10px;
    right: 40px;
    transform: rotate(6deg);
}

.mid-right {
    top: 170px;
    right: 0;
    transform: rotate(-4deg);
}

.bottom-left {
    bottom: 25px;
    left: 110px;
    transform: rotate(8deg);
}

.bottom-right {
    bottom: 0;
    right: 75px;
    transform: rotate(-9deg);
}

/* =========================
   SECTIONS
========================= */

.topics-section,
.preview-section {
    position: relative;
    z-index: 1;
    padding: 34px 0 80px;
}

.section-heading {
    margin-bottom: 30px;
}

.section-kicker {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 700;
}

.section-heading h2 {
    margin: 0 0 12px;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.section-heading p {
    margin: 0;
    max-width: 740px;
    color: var(--muted);
    line-height: 1.7;
}

/* =========================
   TOPIC CARDS
========================= */

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.topic-card {
    position: relative;
    min-height: 250px;
    padding: 26px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(14, 20, 34, 0.92), rgba(10, 15, 25, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255,255,255,0.02);
    transition: var(--transition);
    overflow: hidden;
}

.topic-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.10), transparent 30%),
        radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.12), transparent 30%);
    opacity: 0.95;
    pointer-events: none;
}

.topic-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.28);
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.30),
        0 0 18px rgba(139, 92, 246, 0.14),
        0 0 22px rgba(34, 211, 238, 0.10);
}

.topic-icon,
.topic-card h3,
.topic-card p,
.topic-link {
    position: relative;
    z-index: 1;
}

.topic-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.20), rgba(34, 211, 238, 0.12));
    border: 1px solid rgba(255,255,255,0.08);
}

.topic-card h3 {
    margin: 0 0 12px;
    font-size: 1.4rem;
}

.topic-card p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.65;
}

.topic-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #d8dfff;
}

/* =========================
   PREVIEW BOXEN
========================= */

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.preview-box {
    padding: 28px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(11, 17, 30, 0.9), rgba(8, 12, 22, 0.95));
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.preview-box h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.preview-box p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

/* =========================
   CONTENT PANELS
========================= */

.content-panel {
    padding: 32px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(12, 18, 32, 0.94), rgba(8, 12, 22, 0.96));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.24),
        0 0 16px rgba(139, 92, 246, 0.08);
}

.content-panel h2 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 1.7rem;
}

.content-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

/* =========================
   BILDER / GALLERY
========================= */

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.gallery-item img,
.content-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gallery-item img:hover,
.content-image:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.content-image {
    margin-bottom: 16px;
}

/* =========================
   VIDEO
========================= */

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: #0f1725;
    color: #cbd5e1;
    padding: 50px 0 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 50px;
}

/* LINKS */
.footer-left {
    max-width: 420px;
}

.footer-left h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4rem;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #8b5cf6, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-left p {
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}

/* MITTE */
.footer-center {
    display: flex;
    justify-content: center;
}

.footer-socials {
    display: grid;
    grid-template-columns: repeat(2, 72px);
    gap: 16px 18px;
    justify-items: center;
}

.footer-socials a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.footer-social-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
}

.footer-social-circle img {
    width: 20px;
    height: 20px;
    display: block;
}

.footer-social-label {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #cbd5e1;
    text-align: center;
}

.footer-socials a:hover .footer-social-circle {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.10);
}

.footer-socials a.yt:hover .footer-social-circle {
    background: #ff0000;
}

.footer-socials a.twitch:hover .footer-social-circle {
    background: #9146ff;
}

.footer-socials a.kick:hover .footer-social-circle {
    background: #53fc18;
}

.footer-socials a.tiktok:hover .footer-social-circle {
    background: #111111;
}

/* RECHTS */
.footer-right {
    display: flex;
    gap: 40px;
    justify-content: flex-end;
}

.footer-links h4,
.footer-contact h4 {
    margin-top: 0;
    margin-bottom: 10px;
}

.footer-links a {
    display: block;
    margin-bottom: 6px;
    color: #cbd5e1;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #8b5cf6;
}

.footer-contact a {
    color: #cbd5e1;
    transition: var(--transition);
}

.footer-contact p {
    margin: 0;
}

/* COPYRIGHT */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #64748b;
}

/* =========================
   SUBPAGES / UNTERSEITEN FIXES
========================= */

.subpage-hero {
    padding-top: 110px;
    padding-bottom: 40px;
}

.subpage-hero .content-panel,
.subpage-section .content-panel,
.subpage-section,
.subpage-hero {
    color: var(--text);
}

.subpage-hero h1,
.subpage-hero h2,
.subpage-hero h3,
.subpage-section h1,
.subpage-section h2,
.subpage-section h3,
.content-panel h1,
.content-panel h2,
.content-panel h3 {
    color: var(--text);
}

.subpage-hero p,
.subpage-section p,
.content-panel p,
.subpage-section li,
.content-panel li {
    color: var(--muted);
}

.subpage-section {
    position: relative;
    z-index: 1;
    padding: 10px 0 70px;
}

.subpage-section .section-heading h2,
.subpage-section .section-heading p,
.subpage-section .section-kicker {
    color: var(--text);
}

.subpage-section .section-heading p {
    color: var(--muted);
}

.subpage-hero a,
.subpage-section a,
.content-panel a,
.topic-card a {
    color: #d8dfff;
}

.subpage-hero a:hover,
.subpage-section a:hover,
.content-panel a:hover,
.topic-card a:hover {
    color: #ffffff;
}

.tag,
.card-tag,
.topic-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(139, 92, 246, 0.16);
    border: 1px solid rgba(139, 92, 246, 0.35);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.14);
}

.content-panel ul,
.topic-card ul {
    margin: 14px 0 0 18px;
    padding: 0;
}

.content-panel li,
.topic-card li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Wenn Unterseiten eigene Link-Buttons haben */
.subpage-hero .btn,
.subpage-section .btn {
    color: #ffffff;
}

/* =========================
   ZURÜCK BUTTONS
========================= */

.back-row {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-bottom: 40px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
    font-weight: 600;
    transition: 0.25s ease;
}

.back-button:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* =========================
   SEITEN / ÜBER MICH
========================= */

.main-nav a[href*="guestbook"] {
    color: #22d3ee;
    border-bottom: 2px solid #22d3ee;
}

.page {
    padding: 60px 20px;
}

.page .container {
    max-width: 900px;
    margin: auto;
}

.page h1 {
    margin-bottom: 20px;
}

.page h2 {
    margin-top: 40px;
    color: #22d3ee;
}

.page p,
.page li {
    line-height: 1.8;
}

/* =========================
   ÜBER MICH UPGRADE
========================= */

.glow-panel {
    position: relative;
}

.glow-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.25), transparent 60%);
    opacity: 0.4;
    pointer-events: none;
}

.glow-panel-cyan {
    position: relative;
}

.glow-panel-cyan::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.25), transparent 60%);
    opacity: 0.4;
    pointer-events: none;
}

.content-panel ul {
    margin-top: 20px;
}

.content-panel li {
    margin-bottom: 10px;
    padding-left: 4px;
    transition: 0.2s;
}

.content-panel li:hover {
    color: #ffffff;
    transform: translateX(4px);
}

body[data-page="ueber-mich"] .subpage-hero {
    margin-top: 80px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 460px;
    }

    .topics-grid,
    .preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .footer-inner {
        flex-direction: column;
    }

    .footer-right {
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(var(--max-width), calc(100% - 24px));
    }

    .header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 0;
    }

    .main-nav {
        width: 100%;
        gap: 8px;
        justify-content: flex-start;
    }

    .main-nav a {
        padding: 9px 12px;
        font-size: 0.9rem;
    }

    .header-socials {
        margin-left: 0;
        margin-top: 10px;
    }

    .hero {
        padding-top: 110px;
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-card-large {
        width: 210px;
        height: 270px;
        left: 12px;
        top: 45px;
    }

    .hero-card-small {
        width: 145px;
        height: 110px;
    }

    .top-right {
        right: 22px;
    }

    .mid-right {
        top: 125px;
        right: 0;
    }

    .bottom-left {
        left: 60px;
        bottom: 12px;
    }

    .bottom-right {
        right: 30px;
        bottom: 0;
    }

    .topics-grid,
    .preview-grid,
    .footer-inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .topic-card,
    .preview-box {
        min-height: auto;
    }

    .footer-inner {
        gap: 24px;
    }
}
.visitor-counter {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 4px;
    line-height: 1.3;
}

.visitor-counter span {
    color: #22d3ee;
    font-weight: 600;
}
.hero-split {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
}

.guestbook-preview {
    max-width: 360px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(15, 22, 37, 0.85);
    border: 1px solid rgba(255,255,255,0.08);
}

.guestbook-preview h3 {
    margin-bottom: 15px;
}

.entry {
    font-size: 0.95rem;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
/* =========================
   HEADER MOBILE / BURGER
========================= */

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1201;
}

.burger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    background: rgba(10, 14, 30, 0.98);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.mobile-menu.open {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 18px 20px 10px;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: 0.25s ease;
}

.mobile-nav a:hover {
    color: #8b5cf6;
}

.mobile-socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px 20px 20px;
}

.mobile-socials a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* Mobile Ansicht */
@media (max-width: 980px) {
    .main-nav,
    .header-socials {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .header-inner {
        min-height: 72px;
        gap: 12px;
    }

    .logo {
        flex: 1;
        min-width: 0;
    }

    .logo-text {
        font-size: 1rem;
    }

    .visitor-counter {
        font-size: 0.72rem;
        line-height: 1.3;
    }
}

/* Sehr kleine Geräte */
@media (max-width: 600px) {
    .header-inner {
        min-height: 64px;
    }

    .logo-icon {
        font-size: 1rem;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .visitor-counter {
        font-size: 0.68rem;
    }

    .mobile-socials {
        grid-template-columns: 1fr;
    }
}
/* =========================
   TRAVEL LIGHTBOX
========================= */

.travel-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: rgba(5, 10, 18, 0.96);
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.travel-lightbox-content {
    display: block;
    max-width: 92vw;
    max-height: 82vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.travel-lightbox-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #e5e7eb;
    background: rgba(0, 0, 0, 0.45);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.95rem;
    text-align: center;
    max-width: 90vw;
}

.travel-lightbox-close {
    position: absolute;
    top: 18px;
    right: 26px;
    font-size: 2.4rem;
    line-height: 1;
    color: #ffffff;
    cursor: pointer;
    z-index: 1000000;
    transition: 0.2s ease;
}

.travel-lightbox-close:hover {
    color: #22d3ee;
    transform: scale(1.08);
}

@media (max-width: 760px) {
    .travel-lightbox {
        padding: 16px;
    }

    .travel-lightbox-content {
        max-width: 96vw;
        max-height: 75vh;
        border-radius: 14px;
    }

    .travel-lightbox-caption {
        bottom: 16px;
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .travel-lightbox-close {
        top: 12px;
        right: 18px;
        font-size: 2rem;
    }
}
.map-tools {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.map-btn {
    background: linear-gradient(135deg, #6f2dbd, #00b4d8);
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.map-btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

#map {
    width: 100%;
    height: 350px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid #444;
}

.coords-box {
    background: #222;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 20px;
    color: #bfc8e6;
    font-size: 0.95rem;
    line-height: 1.5;
}
.karte {
    scroll-margin-top: 120px;
}