/* ======================================== */
/* 1. BASIS: styles.css */
/* Gilt für ALLE Geräte als Grundlage */
/* Wird von allen folgenden Media Queries überschrieben (Text, Rahmen, Abstände) */
/* ======================================== */


:root {
    --primary-color: #0a2463; /* Deep Blue */
    --secondary-color: #3e92cc; /* Lighter Blue */
    --accent-color: #00ffff; /* Von #2ce592 zu TÜRKIS geändert */
    --text-color: #333;
    --light-text-color: #f4f4f4;
    --background-color: #ffffff;
    --light-gray: #f0f0f0;
    --dark-gray: #555;
    --silver-accent: #c0c0c0;

    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

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



body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: 16px;
   /*display: flex; */
    /*flex-direction: column;*/
   /* min-height: 100vh;*/
    margin: 0;
    padding: 0;
    -webkit-touch-callout: none;  /* Verhindert iOS Kontextmenü bei langem Druck */
    -webkit-user-select: none;    /* Safari */
    -moz-user-select: none;       /* Firefox */
    -ms-user-select: none;        /* Internet Explorer/Edge */
    user-select: none;            /* Standard */
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
}

a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    background: linear-gradient(to right, #0a1a2f, #3e92cc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #0a1a2f, #3e92cc);
    border-radius: 2px;
}

/* ========================================
   MENÜSTRUKTUR (HEADER & NAVIGATION)
   ======================================== */

header {
    background-color: var(--background-color);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-primary);
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}



nav ul {
    display: flex;
}

nav ul li { margin-left: 25px; }

nav ul li a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent-color);
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-selector select {
    height: 36px;
    padding: 6px 15px;
    font-size: 0.85rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid #00ffff !important;
    border-radius: var(--border-radius);
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><polygon points='2,4 10,4 6,9' fill='%230a2463'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
    outline: none !important;
    box-shadow: none !important;
}

.language-selector select:hover,
.language-selector select:active {
    background-color: #00ffff !important;
    color: var(--primary-color);
    border-color: #00ffff !important;
}

.language-selector select option {
    background: white;
    color: var(--primary-color);
}

@media (hover: none) and (pointer: coarse) {
    .language-selector select:active {
        background-color: #00ffff !important;
    }
}

.resume-btn {
    height: 36px;
    padding: 6px 15px;
    font-size: 0.85rem;
    background-color: transparent;
    color: #0a2463 !important;
    border: 2px solid #00ffff;
    border-radius: var(--border-radius);
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.resume-btn:hover {
    background-color: #00ffff;
    color: #0a2463 !important;
    border-color: #00ffff;
}

/* ========================================
   MAIN CONTENT & SECTIONS
   ======================================== */

main { padding-top: 0 !important; 
      /*flex: 1;*/
     }

section {
    padding: 60px 0;
} 


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

.hero {
    /*height: 100vh;*/
    min-height: 100vh;  /* statt height: 100vh */
    height: auto;       /* auto statt feste Höhe */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f2a4a;
    position: relative;
    overflow: hidden;
    /* padding-top: 0 !important; */
    /* margin-top: 0 !important; */
}

@keyframes rightPulse {
    0% { opacity: 0.7; filter: blur(0.5px); }
    50% { opacity: 1; filter: blur(0.3px); }
    100% { opacity: 0.7; filter: blur(0.5px); }
}

@keyframes leftPulse {
    0% { opacity: 0.6; filter: blur(0.8px); }
    50% { opacity: 0.9; filter: blur(0.5px); }
    100% { opacity: 0.6; filter: blur(0.8px); }
}

@keyframes twinkle {
    0% { opacity: 0.5; filter: blur(0.8px); }
    50% { opacity: 0.9; filter: blur(0.4px); }
    100% { opacity: 0.5; filter: blur(0.8px); }
}

.hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
   flex-direction: row;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 3;
    margin-top: -40px;
    text-align: center !important;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.hero-content h2 {
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

    .hero-buttons {
        margin-top: 40px;
        display: flex;
        gap: 25px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-buttons .btn {
        flex: 1 !important;   
        padding: 14px 35px;
        font-size: 1.1rem;
        border-radius: 30px;
        transition: all 0.3s ease;
        min-width: 190px;
        max-width: 240px;
        width: auto;
        text-align: center;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        white-space: nowrap;
        cursor: pointer;
    }


.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.hero-buttons .btn-primary:hover,
.hero-buttons .btn-secondary:hover {
    background: #00ffff;
    color: #112c4b;
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    z-index: 3;    
    -webkit-touch-callout: none;  /* Verhindert das iOS-Menü bei langem Druck */
    -webkit-user-select: none;    /* Verhindert die Markierung von Text */
    user-select: none;
}


.hero-brain {
    position: absolute;
    top: -100px;
    left: -40%;
    width: auto;
    height: 150%;
    transform: rotate(-90deg);
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}


.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-image: url('../images/profile.png');
    background-size: cover;        /* ← FEHLT: Skaliert das Bild richtig */
    background-position: center;   /* ← FEHLT: Zentriert das Bild */
    pointer-events: none;  /* Deaktiviert alle Interaktionen */
    /*object-fit: cover;*/
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    border: 4px solid #00ffff;
    animation: glowPulse 4s infinite alternate;
    margin-top: -50px;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.2); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 255, 0.5); }
    100% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.2); }
}





/* Video Modal - Kino-Atmosphäre */
.video-modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0f2a4a;
    animation: fadeIn 0.3s;
    z-index: 999999;
}

.video-modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.video-modal-content video {
    border: 3px solid #00ffff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    width: 100%;
    height: auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Klickbarer Text im Hero */
#videoTrigger {
    cursor: pointer;
    transition: color 0.3s;
    display: inline-block;
}


#videoTrigger::before {
    content: "🎥";
    display: inline-block;
    margin-right: 6px;
    filter: brightness(1.3);
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
}


/* Überschrift - Brillantes Weiß */
.modal-headline {
    text-align: center;
    color: #f0f0f0;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 
                 0 0 15px rgba(255, 255, 255, 0.6),
                 0 0 25px rgba(0, 255, 255, 0.4);
    margin-bottom: 50px;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 4px;
    font-family: inherit;
}

#shortVideo {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}



/* ========================================
   ABOUT SECTION
   ======================================== */


.about {
    background: linear-gradient(120deg, #f9f5f0 0%, #f2eae3 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(220, 200, 180, 0.08) 0%, rgba(220, 200, 180, 0) 70%);
    top: -250px;
    right: -200px;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
}

.about::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(190, 200, 220, 0.05) 0%, rgba(190, 200, 220, 0) 70%);
    bottom: -200px;
    left: -150px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 50px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-details ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.about-details ul li strong {
    color: var(--primary-color);
}

.about-details > div:last-child,
.about-details .detail-item:last-child {
    margin-top: 6rem !important;
    padding-top: 0rem !important;
}

/* Abstände Interessen */

.detail-item h3 + ul {
    margin-top: 0;
}

.detail-item ul li span[data-i18n="marital_status_value"] {
    white-space: nowrap;
}

.interests-heading {
    margin-top: 35px;
}


/* ========================================
   EXPERIENCE SECTION
   ======================================== */

.experience {
    position: relative;
    background: linear-gradient(120deg, #f2f5fa 0%, #e8ecf5 100%);
    overflow: hidden;
}

.experience::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(180, 200, 230, 0.08) 0%, rgba(180, 200, 230, 0) 70%);
    top: -250px;
    right: -200px;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
}

.experience::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(210, 200, 220, 0.05) 0%, rgba(210, 200, 220, 0) 70%);
    bottom: -200px;
    left: -150px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.experience .container {
    position: relative;
    z-index: 1;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item:nth-child(odd) { left: 0; }
.timeline-item:nth-child(even) { left: 50%; }

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--background-color);
    border: 4px solid var(--accent-color);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even)::after { left: -10px; }

.timeline-date {
    position: absolute;
    top: 22px;
    width: 150px;
    text-align: right;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.timeline-item:nth-child(odd) .timeline-date { right: -180px; }
.timeline-item:nth-child(even) .timeline-date {
    left: -180px;
    text-align: left;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--background-color);
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.timeline-content h3 {
    margin-top: 0;
    color: var(--primary-color);
}

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

.timeline-content ul {
    padding-left: 20px;
    list-style: disc;
}

.timeline-content ul li { margin-bottom: 0.5rem; }




/* ========================================
   SKILLS SECTION
   ======================================== */

.skills {
    background: linear-gradient(120deg, #f9f5f0 0%, #f2eae3 100%);
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(220, 200, 180, 0.08) 0%, rgba(220, 200, 180, 0) 70%);
    top: -250px;
    right: -200px;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
}

.skills::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(190, 200, 220, 0.05) 0%, rgba(190, 200, 220, 0) 70%);
    bottom: -200px;
    left: -150px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.skills-category {
    margin-bottom: 40px;
}

.skills-category h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.skills-grid {
    display: grid;
    gap: 25px;
}

.technical-skills {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.skill-item {
    background-color: #2c4b6b;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
   color: #ffffff;
}

.skill-name {
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    /*color: #333;*/
}

.skill-percentage {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
}

.progress-bar-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 25px;
    height: 12px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar {
    height: 100%;
   background-color: #00ffff;
    border-radius: 25px;
    width: 0;
    transition: width 1.5s ease-in-out;
}

.skill-description {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    line-height: 1.5;
}

.language-skills {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.skill-item-language {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-item-language:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.language-name {
    font-size: 17px;
    font-weight: 500;
    color: #0a2463;
}

.star-rating {
    font-size: 22px;
}

.star-rating .star { color: #3e92cc;}
.star-rating .empty-star { color: #ccc; }
/*.star-rating:hover .star { color: #ffc107; } */

.additional-skills-tiles {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.skill-tile {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* .skill-tile:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
}*/


.soft-skill-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.soft-skill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;          /* ← von 52 auf 56 erhöht */
    height: 64px;        /* ← von 52 auf 56 erhöht */
    flex-shrink: 0;
}

.soft-skill-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;    /* ← NEU: sorgt für einheitliche Skalierung */
    transition: all 0.2s ease;
}

/* Hover-Effekt für SVGs */
.soft-skill-item:hover .soft-skill-icon svg {
    transform: scale(1.3);
}

.soft-skill-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #0a2463;
}

/* Grid-Layout für Soft Skills */
.soft-skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 5px;
}






/* ========================================
   PROJECTS SECTION
   ======================================== */

.projects {
    background: linear-gradient(120deg, #f2f5fa 0%, #e3e9f2 100%);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(180, 200, 230, 0.08) 0%, rgba(180, 200, 230, 0) 70%);
    top: -250px;
    right: -200px;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
}

.projects::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(210, 200, 220, 0.05) 0%, rgba(210, 200, 220, 0) 70%);
    bottom: -200px;
    left: -150px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.projects .container {
    position: relative;
    z-index: 1;
}

        /* ===== FILMSTREIFEN STYLES ===== */
        .projects-carousel {
            position: relative;
            width: 100%;
            margin: 2rem 0;
            overflow: visible;
            background: rgba(139, 110, 75, 0.15);
            border-top: 4px solid #8b6e4b;
            border-bottom: 4px solid #8b6e4b;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            padding: 40px 0 40px 0;
            backdrop-filter: blur(2px);
            z-index: 5;
            max-width: 100% !important;
        }
        
        /* Obere Perforation */
        .projects-carousel::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 0;
            width: 100%;
            height: 20px;
            background: repeating-linear-gradient(
                90deg,
                transparent,
                transparent 20px,
                rgba(192, 168, 123, 0.8) 20px,
                rgba(192, 168, 123, 0.8) 28px
            );
            z-index: 6;
        }
        
        /* Untere Perforation */
        .projects-carousel::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 20px;
            background: repeating-linear-gradient(
                90deg,
                transparent,
                transparent 20px,
                rgba(192, 168, 123, 0.8) 20px,
                rgba(192, 168, 123, 0.8) 28px
            );
            z-index: 6;
        }
        
        .projects-carousel .carousel-container {
            position: relative;
            display: flex;
            transition: transform 0.5s ease;
            gap: 0;
            padding: 20px 0;
            margin: 0 20px;
        }
        
        /* Kodak-Schriftzug oben */
        .projects-carousel .carousel-container::before {
            content: 'KODAK 35mm';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(192, 168, 123, 0.9);
            font-size: 12px;
            font-family: 'Courier New', monospace;
            letter-spacing: 2px;
            text-shadow: 0 0 5px rgba(0,0,0,0.3);
            z-index: 7;
        }

        /* SAFETY FILM Schriftzüge */
        .safety-film-left {
            position: absolute;
            bottom: 25px;
            left: 20px;
            color: rgba(192, 168, 123, 0.9);
            font-size: 12px;
            font-family: 'Courier New', monospace;
            letter-spacing: 1px;
            text-shadow: 0 0 5px rgba(0,0,0,0.3);
            z-index: 8;
            background: rgba(0,0,0,0.1);
            padding: 2px 5px;
            border-radius: 3px;
            opacity: 0.9;
        }

        .safety-film-right {
            position: absolute;
            bottom: 25px;
            right: 20px;
            color: rgba(192, 168, 123, 0.9);
            font-size: 12px;
            font-family: 'Courier New', monospace;
            letter-spacing: 1px;
            text-shadow: 0 0 5px rgba(0,0,0,0.3);
            z-index: 8;
            background: rgba(0,0,0,0.1);
            padding: 2px 5px;
            border-radius: 3px;
            opacity: 0.9;
        }

        .safety-film-center {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(192, 168, 123, 0.9);
            font-size: 12px;
            font-family: 'Courier New', monospace;
            letter-spacing: 1px;
            text-shadow: 0 0 5px rgba(0,0,0,0.3);
            z-index: 8;
            background: rgba(0,0,0,0.1);
            padding: 2px 5px;
            border-radius: 3px;
            opacity: 0.9;
        }

        .projects-carousel {
            max-width: 100%;
            overflow: hidden;
            margin-left: auto;
            margin-right: auto;
        }
        
        .carousel-slide:hover {
            transform: translateY(-5px);
            z-index: 10;
        }
   
        .project-card-carousel {
            background: rgba(245, 242, 230, 0.95);
            border-radius: 8px 8px 4px 4px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2), inset 0 0 0 1px rgba(255,255,200,0.3);
            overflow: hidden;
            height: 550px;
            display: flex;
            flex-direction: column;
            border: 1px solid #5a4a3a;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            position: relative;
            backdrop-filter: blur(2px);
            min-height: 550px;
        }

        .project-card-carousel::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            box-shadow: inset 0 0 30px rgba(0,0,0,0.15);
            pointer-events: none;
            border-radius: 8px;
        }

        .project-card-carousel:hover {
            box-shadow: 0 12px 30px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,200,0.4);
            transform: scale(1.02);
        }

        .carousel-header {
            background: linear-gradient(135deg, #2c4b6b 0%, #1a3a54 100%);
            color: white;
            padding: 1.2rem;
            border-bottom: 2px solid #8b6e4b;
        }

        .carousel-header h3 {
            margin: 0;
            color: white;
            font-size: 1.2rem;
            font-weight: 500;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .carousel-header p {
            margin: 0.3rem 0 0 0;
            color: #c0a87b;
            font-size: 0.8rem;
            font-family: 'Courier New', monospace;
        }

        .carousel-body {
            padding: 1rem;
            flex: 1;
            background: rgba(245, 242, 230, 0.9);
        }


/* Link bleibt immer blau - keine Hover/Klick/Visited-Effekte */
.carousel-body a,
.carousel-body a:hover,
.carousel-body a:active,
.carousel-body a:visited,
.carousel-body a:focus {
    color: #3e92cc !important;
    text-decoration: none;
    background: transparent;
}




        .carousel-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .carousel-body ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .carousel-body li {
            margin-bottom: 0.6rem;
            padding-left: 1.2rem;
            position: relative;
            font-size: 0.85rem;
            line-height: 1.3;
            color: #1a3a54;
        }

        .carousel-body li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #8b6e4b;
            font-weight: bold;
        }


 /* Speziell für den Hugging Face Link in Slide 4 */
.carousel-body li a[href*="huggingface.co"] {
    word-break: break-all;
    display: inline-block;
    max-width: 100%;
}




        .carousel-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            padding: 1rem 1.2rem 1.2rem;
            border-top: 2px solid #c0a87b;
        }

        .carousel-tag {
            background: #2c4b6b;
            color: #f0e6d2;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 400;
            font-family: 'Courier New', monospace;
            border: 1px solid #8b6e4b;
        }

        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.7);
            border: 2px solid #3e92cc;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 20;
            color: #0a3d62;
            backdrop-filter: blur(5px);
        }

        .carousel-button:hover {
            background: #3e92cc;
            color: white;
            transform: translateY(-50%) scale(1.1);
            border-color: white;
        }

        .carousel-button.prev {
            left: 10px;
        }

        .carousel-button.next {
            right: 10px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
            position: relative;
            z-index: 15;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #3e92cc;
            backdrop-filter: blur(2px);
        }

        .carousel-dot.active {
            background: #3e92cc;
            transform: scale(1.3);
            box-shadow: 0 0 15px #3e92cc;
        }

        /* Slide-Breiten */
        .carousel-slide {
            width: calc(33.333% - 2px);
            flex: 0 0 auto;
            transition: transform 0.3s ease;
            position: relative;
            border-right: 2px solid #ff8c42;
            box-sizing: border-box;
              min-width: 280px;
    max-width: 380px;
        }


/* ========================================
   CONTACT SECTION
   ======================================== */
/* ===== CONTACT SECTION - BASIS LAYOUT ===== */
.contact {
    background: linear-gradient(120deg, #f9f5f0 0%, #f2eae3 100%);
    position: relative;
    overflow: hidden;
    /*padding-bottom: 0 !important;*/
}

.contact::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(220, 200, 180, 0.08) 0%, rgba(220, 200, 180, 0) 70%);
    top: -250px;
    right: -200px;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
}

.contact::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(190, 200, 220, 0.05) 0%, rgba(190, 200, 220, 0) 70%);
    bottom: -200px;
    left: -150px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

/* Informationen innerhalb Container, section außerhalb */
.contact .container {
    position: relative;
    z-index: 1;
    /*padding: 2rem 0;*/
}

/* Entfernt den orangenen Standard-Fokus-Rahmen */
:focus {
    outline: none;
}

/* ===== CONTACT LAYOUT ===== */
.contact-layout {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-left-column {
    flex: 1;
    padding-right: 2rem;
    min-width: 300px;
}

.contact-right-column {
    flex: 1;
    min-width: 300px;
}

/* ===== CONTACT TEXTBOXES ===== */
.contact-textbox {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-textbox h3 {
    margin-top: 0;
    color: #0a3d62;
    border-bottom: 2px solid #0a3d62;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.contact-content p {
    margin: 0.5rem 0;
   text-align: left;
}


/*  KONTAKT-LINKS BEI SCHMALEN Ansichten */
    .contact-content a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-all;
        hyphens: auto;
        display: inline-block;
        max-width: 100%;
        white-space: normal;
    }


.contact-box {
    text-align: left;
}

.contact-box h3 {
    text-align: center;
}


/* ===== CONTACT FORM ===== */
.contact-form-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.contact-form .btn-primary {
    display: none !important;
}

/* ===== SPEZIELLE FORM-ELEMENTE ===== */
/* Für label[for="contact-message"] */
label[for="contact-message"] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Für .futuristic-badge (im Label) */
.futuristic-badge {
    display: inline-block;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: white;
    padding: 4px 12px;
    font-size: 0.75rem;
    border-radius: 20px;
    box-shadow: 0 0 8px rgba(0, 198, 255, 0.7);
}

/* Für textarea - SPEZIFISCHES STYLING BEIBEHALTEN */
.contact-form textarea {
    width: 100%;
   background: #1a4a7a; 
    border: 1px solid #0a3d62;
    color: #e0f7ff;
    height: 140px;
    padding: 12px;
    padding-top: 35px;
    border-radius: 6px;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    line-height: 2.2;
    resize: none !important;  /* Verhindert manuelle Vergrößerung */
}

.contact-form textarea:focus {
    box-shadow: 0 0 10px #00c6ff;
    border-color: #00c6ff;
}

.contact-form textarea::placeholder {
    color: #a0c0e0;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Für .encryption-status */
.encryption-status {
    margin-top: 5px;
    font-size: 0.8rem;
    color: #1a4a7a;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.encryption-status .dot {
    width: 8px;
    height: 8px;
    background: #0a66c2;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

.encryption-status .faux-percentage {
    margin-left: auto;
    color: #5e9fd6;
    font-weight: 600;
}

/* Für .input-wrapper */
.input-wrapper {
    display: flex;
    align-items: center;
    background: #1a4a7a;
    border: 1px solid #0a3d62;
    border-radius: 6px;
    overflow: hidden;
}

.input-wrapper .prefix {
    padding: 0 10px;
    background: #0a3d62;
    color: #a8d8ff;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.input-wrapper input {
    border: none;
    background: transparent;
    flex: 1;
    padding: 10px;
    color: #e0f7ff;
}

/* Für @keyframes pulse */
@keyframes pulse {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* ===== CAPTCHA ===== */
.captcha-container {
    background-color: transparent;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    margin: 1rem 0;
   width: 100%;
       max-width: 100%;
}



.captcha-container .captcha-question p[data-i18n="form_captcha"] {
    color: #e0f7ff !important;
    background: #1a4a7a !important;
    padding: 12px 16px !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    margin-bottom: 10px !important;
   box-sizing: border-box !important;
   width: 100% !important;     
}

.captcha-hint {
    display: block;
    margin-top: 8px;
    font-style: italic;
    color: #5e9fd6;
    font-size: 0.85rem;
    opacity: 0.8;
}

#captcha-answer {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 60px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #1a4a7a;
   width: 100% !important;
   box-sizing: border-box !important;
}

/* ===== MAP SECTION ===== */
.map-container {
    width: 100%;
    height: 400px;
    margin-top: 30px;
}

.map-container h3 {
    margin-bottom: 15px;
    text-align: center;
}


.map-section {
    /*margin-top: 2rem;*/
    width: 100%;
}

.map-section h3 {
    color: #0a3d62;
    border-bottom: 2px solid #0a3d62;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.google-map-placeholder {
    background-color: #e9ecef;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-align: center;
}

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

footer {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 2rem 0;
    margin-top: 0;
}

footer p {
    color: var(--light-text-color);
    margin-bottom: 0;
}














