/* ══════════════════════════════════════════════════
   ADIN BICIC-THIBOUTOT — PORTFOLIO STYLES
   ══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --bg-primary: #0f0f17;
    --bg-secondary: #161622;
    --bg-card: #1a1a2a;
    --bg-card-hover: #22223a;
    --accent: #9ccfff;
    --accent-bright: #b8dfff;
    --accent-dim: rgba(156, 207, 255, 0.12);
    --accent-glow: 0 0 25px rgba(156, 207, 255, 0.25);
    --text-primary: #e0ecf8;
    --text-secondary: #8a9bb5;
    --text-muted: #5a6a80;
    --border: rgba(156, 207, 255, 0.08);
    --border-hover: rgba(156, 207, 255, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ── Particles ── */
#pattern_wrapper {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: var(--bg-primary);
}

main {
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.1rem 0;
    transition: var(--transition);
}

    #navbar.scrolled {
        background: rgba(15, 15, 23, 0.88);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid var(--border);
        padding: 0.65rem 0;
        box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    }

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
    transition: var(--transition);
}

    .nav-logo span {
        color: var(--text-muted);
        font-weight: 400;
    }

    .nav-logo:hover {
        text-shadow: var(--accent-glow);
    }

.nav-links {
    display: flex;
    gap: 0.3rem;
}

.nav-link {
    padding: 0.5rem 0.9rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--accent);
        background: var(--accent-dim);
    }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

    .nav-toggle span {
        width: 24px;
        height: 2px;
        background: var(--accent);
        border-radius: 2px;
        transition: var(--transition);
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.intro-inhalt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 7rem 2rem 2rem;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

    .hero-image-wrapper img {
        width: 280px;
        height: 280px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--accent-dim);
        position: relative;
        z-index: 1;
        transition: var(--transition);
    }

    .hero-image-wrapper:hover img {
        border-color: var(--accent);
        box-shadow: var(--accent-glow);
    }

.hero-ring {
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 2px dashed rgba(156, 207, 255, 0.15);
    animation: spin 25s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hero-text {
    flex: 1;
}

.hero-greeting {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-role {
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.2rem;
    min-height: 2rem;
}

.cursor {
    animation: blink 0.75s infinite;
    color: var(--accent);
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0;
    }
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font);
}

.btn-primary {
    background: linear-gradient(135deg, rgba(156,207,255,0.18), rgba(156,207,255,0.08));
    color: var(--accent);
    border: 1px solid rgba(156,207,255,0.25);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, rgba(156,207,255,0.28), rgba(156,207,255,0.12));
        box-shadow: var(--accent-glow);
        transform: translateY(-2px);
    }

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

    .btn-outline:hover {
        color: var(--accent);
        border-color: rgba(156,207,255,0.25);
        transform: translateY(-2px);
    }

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ── Hero Socials ── */
.hero-socials {
    display: flex;
    gap: 0.8rem;
}

    .hero-socials a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        font-size: 1rem;
        transition: var(--transition);
    }

        .hero-socials a:hover {
            color: var(--accent);
            border-color: var(--accent);
            background: var(--accent-dim);
            transform: translateY(-3px);
            box-shadow: var(--accent-glow);
        }

/* ── Scroll Indicator ── */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

    .scroll-indicator a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-muted);
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: var(--transition);
    }

        .scroll-indicator a:hover {
            color: var(--accent);
        }

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 11px;
    position: relative;
    transition: var(--transition);
}

.scroll-indicator a:hover .mouse {
    border-color: var(--accent);
}

.wheel {
    width: 3px;
    height: 7px;
    background: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease infinite;
}

.scroll-indicator a:hover .wheel {
    background: var(--accent);
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 18px;
    }
}

/* ══════════════════════════════════════
   SECTIONS — COMMON
   ══════════════════════════════════════ */
.section {
    padding: 6rem 0;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.title-number {
    color: var(--accent);
    font-weight: 400;
    font-size: 0.85em;
    margin-right: 0.5rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

.subsection-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 3.5rem 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

    .subsection-title i {
        color: var(--accent);
        font-size: 1rem;
    }

/* ── Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.98rem;
}

.about-text strong {
    color: var(--accent);
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1.5rem 0;
    padding: 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.about-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

    .about-detail i {
        color: var(--accent);
        width: 18px;
        text-align: center;
        font-size: 0.85rem;
    }

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    display: inline;
}

.stat-plus {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.about-img-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

    .about-img-frame img {
        width: 100%;
        border-radius: var(--radius);
        transition: var(--transition);
    }

    .about-img-frame:hover img {
        transform: scale(1.03);
    }

/* ══════════════════════════════════════
   MARQUEE BANNER
   ══════════════════════════════════════ */
.banner {
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 4rem 0 3rem;
    position: relative;
}

    .banner::before,
    .banner::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100px;
        z-index: 2;
        pointer-events: none;
    }

    .banner::before {
        left: 0;
        background: linear-gradient(to right, var(--bg-primary), transparent);
    }

    .banner::after {
        right: 0;
        background: linear-gradient(to left, var(--bg-primary), transparent);
    }

.banner-title {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.marquee {
    display: flex;
    width: max-content;
}

    .marquee img {
        height: 150px;
        margin-right: 1rem;
        border-radius: var(--radius-sm);
        object-fit: cover;
        transition: var(--transition);
        opacity: 0.75;
    }

        .marquee img:hover {
            opacity: 1;
            transform: scale(1.06);
            box-shadow: var(--accent-glow);
            z-index: 5;
            position: relative;
        }

.marquee-left {
    animation: moveLeft 55s linear infinite;
}

.marquee-right {
    animation: moveRight 55s linear infinite;
}

@keyframes moveLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes moveRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ══════════════════════════════════════
   SLIDESHOW
   ══════════════════════════════════════ */
.slideshow-section {
    padding: 4rem 0;
}

.slideshow-container {
    max-width: 900px;
    margin: 2rem auto 0;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.slide {
    display: none;
    position: relative;
}

    .slide img {
        width: 100%;
        display: block;
    }

.caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.92rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    padding: 2.5rem 1rem 1rem;
}

.numbertext {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    padding: 12px 16px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 3;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-prev {
    left: 12px;
}

.slide-next {
    right: 12px;
}

.slide-arrow:hover {
    background: rgba(156,207,255,0.15);
    border-color: var(--accent);
    color: var(--accent);
}

.dots {
    text-align: center;
    padding: 1rem;
    position: relative;
    z-index: 2;
    background: var(--bg-card);
}

.dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
    background-color: rgba(156,207,255,0.18);
    border-radius: 50%;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
}

    .dot:hover {
        background-color: rgba(156,207,255,0.4);
    }

    .dot.active {
        background-color: var(--accent);
        box-shadow: 0 0 10px rgba(156,207,255,0.4);
        width: 24px;
        border-radius: 4px;
    }

.fade {
    animation: fade 0.6s ease;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: scale(1.01);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ══════════════════════════════════════
   EXPERIENCE TIMELINE
   ══════════════════════════════════════ */
.timeline {
    position: relative;
    padding-left: 2.5rem;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 8px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, var(--accent), var(--border), transparent);
    }

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 3px solid var(--accent);
    z-index: 1;
    box-shadow: 0 0 12px rgba(156,207,255,0.2);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}

    .timeline-content:hover {
        border-color: var(--border-hover);
        box-shadow: var(--accent-glow);
    }

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

    .timeline-header h3 {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--text-primary);
    }

.timeline-company {
    font-size: 0.85rem;
    color: var(--accent);
    margin-top: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.timeline-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    background: var(--accent-dim);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    white-space: nowrap;
    font-weight: 500;
}

.timeline-content > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
}

    .timeline-tags span {
        font-size: 0.72rem;
        padding: 0.25rem 0.65rem;
        border-radius: 50px;
        background: var(--accent-dim);
        color: var(--accent);
        font-weight: 500;
    }

/* Volunteer Grid */
.volunteer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.volunteer-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}

    .volunteer-card:hover {
        border-color: var(--border-hover);
    }

.volunteer-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.volunteer-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.volunteer-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.volunteer-card > p:last-child {
    color: var(--text-secondary);
    font-size: 0.88rem;
}

/* ══════════════════════════════════════
   PROJECTS
   ══════════════════════════════════════ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

    .project-card:hover {
        transform: translateY(-6px);
        border-color: var(--border-hover);
        box-shadow: 0 20px 50px rgba(0,0,0,0.3), var(--accent-glow);
    }

.project-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

    .project-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.project-card:hover .project-card-image img {
    transform: scale(1.06);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,15,23,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-link {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 1px solid rgba(156,207,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    transition: var(--transition);
    transform: translateY(15px);
}

.project-card:hover .project-link {
    transform: translateY(0);
}

.project-link:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.project-card-body {
    padding: 1.4rem;
}

.project-tag {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.project-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.project-card-body p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

    .project-tech span {
        font-size: 0.72rem;
        padding: 0.25rem 0.65rem;
        border-radius: 50px;
        background: var(--accent-dim);
        color: var(--accent);
        font-weight: 500;
    }

/* ══════════════════════════════════════
   SKILLS
   ══════════════════════════════════════ */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.skill-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem;
    transition: var(--transition);
}

    .skill-category:hover {
        border-color: var(--border-hover);
        box-shadow: var(--accent-glow);
    }

.skill-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.skill-category h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.skill-category li {
    margin-bottom: 0.9rem;
}

.skill-name {
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.3rem;
}

.skill-bar {
    height: 5px;
    background: rgba(156,207,255,0.08);
    border-radius: 3px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent), rgba(156,207,255,0.4));
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Languages ── */
.languages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.language-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.3rem 1rem;
    text-align: center;
    transition: var(--transition);
}

    .language-card:hover {
        border-color: var(--border-hover);
    }

.lang-flag {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.language-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.language-card > p {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    min-height: 1.4em;
}

.lang-dots {
    display: flex;
    justify-content: center;
    gap: 4px;
}

    .lang-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(156,207,255,0.12);
        transition: var(--transition);
    }

        .lang-dots span.filled {
            background: var(--accent);
            box-shadow: 0 0 6px rgba(156,207,255,0.3);
        }

/* ── Hobbies ── */
.hobbies-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.hobby-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

    .hobby-chip i {
        color: var(--accent);
        font-size: 0.85rem;
    }

    .hobby-chip:hover {
        border-color: var(--border-hover);
        color: var(--accent);
        background: var(--accent-dim);
    }

/* ══════════════════════════════════════
   EDUCATION
   ══════════════════════════════════════ */
.education-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.education-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .education-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, var(--accent), transparent);
        border-radius: 2px;
    }

    .education-card:hover {
        border-color: var(--border-hover);
    }

.edu-year {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.education-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.edu-school {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}

    .edu-school i {
        color: var(--accent);
        font-size: 0.75rem;
    }

.education-card > p:last-child {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(156,207,255,0.08);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: var(--text-muted);
    }

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

    .contact-card:hover {
        border-color: var(--border-hover);
    }

    .contact-card > i {
        font-size: 1.1rem;
        color: var(--accent);
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--accent-dim);
        border-radius: 10px;
        flex-shrink: 0;
    }

    .contact-card h4 {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.1rem;
    }

    .contact-card p,
    .contact-card a {
        font-size: 0.82rem;
        color: var(--text-secondary);
        transition: var(--transition);
    }

        .contact-card a:hover {
            color: var(--accent);
        }

.contact-socials {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.5rem;
}

    .contact-socials a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        font-size: 1rem;
        transition: var(--transition);
    }

        .contact-socials a:hover {
            color: var(--accent);
            border-color: var(--accent);
            background: var(--accent-dim);
            transform: translateY(-3px);
        }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 0 1.5rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
}

    .footer-logo span {
        color: var(--text-muted);
        font-weight: 400;
    }

.footer-links {
    display: flex;
    gap: 1.5rem;
}

    .footer-links a {
        color: var(--text-secondary);
        font-size: 0.85rem;
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: var(--accent);
        }

.footer-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 1.2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer-bottom p {
        color: var(--text-muted);
        font-size: 0.82rem;
    }

.footer-credit .fa-heart {
    color: #e74c3c;
}

/* ══════════════════════════════════════
   BACK TO TOP
   ══════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--accent);
    font-size: 0.95rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: var(--accent);
        color: var(--bg-primary);
        box-shadow: var(--accent-glow);
    }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .languages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image-wrapper img {
        width: 220px;
        height: 220px;
    }

    .hero-desc {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-socials {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-stats {
        justify-content: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .education-grid {
        grid-template-columns: 1fr;
    }

    .volunteer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15,15,23,0.97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0.3rem;
        transition: right 0.4s ease;
        border-left: 1px solid var(--border);
    }

        .nav-links.open {
            right: 0;
        }

    .nav-link {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .languages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        flex-direction: column;
        gap: 1.2rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 4rem 0;
    }

    .section-inner {
        padding: 0 1.2rem;
    }

    .hero-image-wrapper img {
        width: 180px;
        height: 180px;
    }

    .hero-text h1 {
        font-size: 1.7rem;
    }

    .hero-role {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .about-stats {
        flex-direction: column;
        gap: 0.8rem;
    }

    .marquee img {
        height: 100px;
    }

    .marquee-left {
        animation-duration: 35s;
    }

    .marquee-right {
        animation-duration: 35s;
    }

    .languages-grid {
        grid-template-columns: 1fr 1fr;
    }

    .slide-arrow {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-dot {
        left: -2rem;
        width: 14px;
        height: 14px;
    }

    .timeline-header {
        flex-direction: column;
        gap: 0.3rem;
    }
}

/* ── Selection ── */
::selection {
    background: rgba(156,207,255,0.25);
    color: white;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(156,207,255,0.15);
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(156,207,255,0.3);
    }

/* ══════════════════════════════════════
   SOFT SKILLS (in About)
   ══════════════════════════════════════ */
.soft-skills {
    margin-top: 1.5rem;
    padding: 1.3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

    .soft-skills::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--accent), transparent);
    }

    .soft-skills h4 {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .soft-skills h4 i {
            color: var(--accent);
            font-size: 0.9rem;
        }

.soft-skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

    .soft-skill-tags span {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
        background: var(--accent-dim);
        color: var(--accent);
        border: 1px solid transparent;
        border-radius: 50px;
        font-weight: 500;
        transition: var(--transition);
    }

        .soft-skill-tags span:hover {
            border-color: rgba(156, 207, 255, 0.3);
            transform: translateY(-2px);
        }

/* ══════════════════════════════════════
   TESTIMONIALS (Arbeitszeugnisse)
   ══════════════════════════════════════ */
.testimonials-section {
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.8rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--accent), transparent);
        opacity: 0.5;
        transition: var(--transition);
    }

    .testimonial-card:hover {
        transform: translateY(-6px);
        border-color: var(--border-hover);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), var(--accent-glow);
    }

        .testimonial-card:hover::before {
            opacity: 1;
        }

.testimonial-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.3rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
    line-height: 1.2;
}

.testimonial-company {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.testimonial-role {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    font-size: 0.7rem;
    color: #ffc107;
}

.testimonial-quote {
    position: relative;
    padding: 0.5rem 0 0 1.5rem;
    flex-grow: 1;
    margin-bottom: 1.2rem;
}

.quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1rem;
    color: var(--accent);
    opacity: 0.4;
}

.testimonial-quote p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
}

    .testimonial-quote p strong {
        color: var(--accent);
        font-weight: 600;
        font-style: normal;
    }

.testimonial-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

    .testimonial-tags span {
        font-size: 0.72rem;
        padding: 0.25rem 0.7rem;
        background: var(--accent-dim);
        color: var(--accent);
        border-radius: 50px;
        font-weight: 500;
    }

.testimonial-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    transition: var(--transition);
    align-self: flex-start;
    margin-top: auto;
}

    .testimonial-link:hover {
        color: var(--accent);
        border-color: var(--accent);
        background: var(--accent-dim);
        transform: translateY(-2px);
    }

.testimonial-note {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 50px;
    align-self: flex-start;
    margin-top: auto;
}

    .testimonial-note i {
        color: #ffc107;
        font-size: 0.72rem;
    }

/* Responsive */
@media (max-width: 768px) {
    .testimonial-header {
        grid-template-columns: auto 1fr;
    }

    .testimonial-rating {
        grid-column: 1 / -1;
        margin-top: 0.3rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.4rem;
    }

    .testimonial-avatar {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .testimonial-info h3 {
        font-size: 0.95rem;
    }
}

/* ══════════════════════════════════════
   PROJEKT-KARTE MIT SLIDESHOW
   ══════════════════════════════════════ */

/* Karte mit Slideshow soll breiter sein */
.project-card-slideshow {
    grid-column: span 2;
}

@media (max-width: 968px) {
    .project-card-slideshow {
        grid-column: span 1;
    }
}

.card-slideshow {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-secondary);
}

.card-slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

    .card-slide.active {
        display: block;
    }

    .card-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.card-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 15, 23, 0.85));
    color: var(--accent);
    padding: 2rem 1.2rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    pointer-events: none;
}

/* Zähler oben links */
.card-slide-counter {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 15, 23, 0.75);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 3;
    border: 1px solid var(--border);
}

.card-current {
    color: var(--accent);
    font-weight: 700;
}

/* Pfeile */
.card-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 15, 23, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.85rem;
    z-index: 3;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.card-slideshow:hover .card-slide-arrow {
    opacity: 1;
}

.card-slide-prev {
    left: 12px;
}

.card-slide-next {
    right: 12px;
}

.card-slide-arrow:hover {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

/* Punkte */
.card-slide-dots {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
    background: rgba(15, 15, 23, 0.6);
    backdrop-filter: blur(10px);
    padding: 6px 10px;
    border-radius: 50px;
}

.card-slide-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

    .card-slide-dot:hover {
        background: rgba(255, 255, 255, 0.6);
    }

    .card-slide-dot.active {
        background: var(--accent);
        width: 22px;
        border-radius: 4px;
        box-shadow: 0 0 8px rgba(156, 207, 255, 0.5);
    }

/* Fade Animation */
.card-slide.fade {
    animation: cardFade 0.6s ease;
}

@keyframes cardFade {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

/* Kein Hover-Zoom auf Slideshow-Bildern */
.project-card-slideshow:hover .card-slide img {
    transform: none;
}

/* ══════════════════════════════════════
   PROJEKT-KARTE MIT VIDEO (Klick-Version)
   ══════════════════════════════════════ */
.project-card-video {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-secondary);
    cursor: pointer;
}

    .project-card-video img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: var(--transition);
    }

.project-card:hover .project-card-video img {
    transform: scale(1.05);
}

/* Video-Badge oben links */
.video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 15, 23, 0.75);
    backdrop-filter: blur(10px);
    color: var(--accent);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 3;
}

    .video-badge i {
        font-size: 0.7rem;
    }

/* Play-Overlay */
.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 23, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

    .video-play-overlay:hover {
        background: rgba(15, 15, 23, 0.65);
    }

.video-play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(156, 207, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    padding-left: 5px; /* Play-Icon leicht mittig */
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(156, 207, 255, 0.2);
}

.video-play-overlay:hover .video-play-btn {
    background: var(--accent);
    color: var(--bg-primary);
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(156, 207, 255, 0.5);
}

.video-play-text {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.video-play-overlay:hover .video-play-text {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse-Effekt am Play-Button */
.video-play-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    opacity: 0.5;
    animation: playPulse 2s ease-out infinite;
}

@keyframes playPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ══════════════════════════════════════
   VIDEO MODAL
   ══════════════════════════════════════ */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: modalFadeIn 0.3s ease;
}

    .video-modal.active {
        display: flex;
    }

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.video-modal-content {
    max-width: 90vw;
    width: 1100px;
    position: relative;
    animation: modalZoomIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalZoomIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-modal video {
    width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    display: block;
    background: #000;
}

.video-modal-title {
    text-align: center;
    color: var(--accent);
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Close-Button */
.video-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(30, 30, 46, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10001;
}

    .video-modal-close:hover {
        background: var(--accent);
        color: var(--bg-primary);
        border-color: var(--accent);
        transform: scale(1.1);
    }

/* Body-Scroll sperren beim Modal (falls noch nicht vorhanden) */
body.lightbox-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .video-modal {
        padding: 1rem;
    }

    .video-modal-close {
        top: 1rem;
        right: 1rem;
        width: 42px;
        height: 42px;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
}

/* PDF-Link-Button */
.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 0.65rem 1.1rem;
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid rgba(156, 207, 255, 0.25);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

    .pdf-link:hover {
        background: var(--accent);
        color: var(--bg-primary);
        border-color: var(--accent);
        transform: translateY(-2px);
        box-shadow: var(--accent-glow);
    }

    .pdf-link .arrow-icon {
        font-size: 0.7rem;
        opacity: 0.7;
        transition: var(--transition);
    }

    .pdf-link:hover .arrow-icon {
        transform: translate(2px, -2px);
        opacity: 1;
    }

    /* Verschiedene Farben für verschiedene Dateitypen */
    .pdf-link.pdf-red {
        background: rgba(231, 76, 60, 0.12);
        color: #ff6b5b;
        border-color: rgba(231, 76, 60, 0.25);
    }

        .pdf-link.pdf-red:hover {
            background: #e74c3c;
            color: white;
            border-color: #e74c3c;
            box-shadow: 0 0 25px rgba(231, 76, 60, 0.3);
        }