
/* ===================================== Hero Section =========================================== */ 


     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ==================== HERO SECTION ==================== */
        .kandidaten-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Animated Background Elements */
        .hero-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }

        .hero-circle-1 {
            width: 500px;
            height: 500px;
            top: -250px;
            right: -150px;
            animation-delay: 0s;
        }

        .hero-circle-2 {
            width: 350px;
            height: 350px;
            bottom: -175px;
            left: -100px;
            animation-delay: 2s;
        }

        .hero-circle-3 {
            width: 250px;
            height: 250px;
            top: 50%;
            right: 15%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-30px) scale(1.1);
            }
        }

        /* Floating Icons */
        .floating-icon {
            position: absolute;
            color: rgba(255, 255, 255, 0.12);
            animation: floatIcon 6s ease-in-out infinite;
        }

        .floating-icon-1 {
            font-size: 4rem;
            top: 20%;
            left: 8%;
            animation-delay: 0s;
        }

        .floating-icon-2 {
            font-size: 3.5rem;
            top: 65%;
            right: 10%;
            animation-delay: 2s;
        }

        .floating-icon-3 {
            font-size: 3rem;
            top: 35%;
            right: 25%;
            animation-delay: 4s;
        }

        .floating-icon-4 {
            font-size: 2.5rem;
            bottom: 25%;
            left: 20%;
            animation-delay: 1s;
        }

        @keyframes floatIcon {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }

        /* Hero Content */
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
            text-align: center;
        }

        /* Back Button */
        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.4s ease;
            margin-bottom: 40px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            animation: slideInDown 0.8s ease-out;
        }

        .back-button:hover {
            background: white;
            color: #667eea;
            transform: translateX(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .back-button i {
            transition: transform 0.3s ease;
        }

        .back-button:hover i {
            transform: translateX(-5px);
        }

        /* Hero Text */
        .hero-text {
            color: white;
            margin-bottom: 50px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 30px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            animation: slideInDown 0.8s ease-out 0.2s both;
        }

        .hero-badge i {
            font-size: 1.2rem;
            color: #fbbf24;
        }

        .hero-text h1 {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 25px;
            animation: slideInUp 0.8s ease-out 0.4s both;
        }

        .hero-text h1 span {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .hero-text p {
            font-size: 1.4rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.95);
            max-width: 800px;
            margin: 0 auto 40px;
            animation: slideInUp 0.8s ease-out 0.6s both;
        }

        /* Stats Cards */
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            animation: fadeIn 1s ease-out 0.8s both;
        }

        .hero-stat-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 35px 25px;
            border-radius: 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .hero-stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .hero-stat-card:hover::before {
            opacity: 1;
        }

        .hero-stat-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .stat-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            display: block;
            opacity: 0.9;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            display: block;
            margin-bottom: 10px;
            color: white;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .stat-label i {
            font-size: 1.2rem;
        }

        /* Animations */
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .hero-text p {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .kandidaten-hero {
                padding: 80px 20px;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-text p {
                font-size: 1.1rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .hero-stat-card {
                padding: 30px 20px;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .floating-icon-1,
            .floating-icon-2,
            .floating-icon-3,
            .floating-icon-4 {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .kandidaten-hero {
                padding: 60px 15px;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

            .hero-badge {
                font-size: 0.9rem;
                padding: 10px 20px;
            }

            .back-button {
                font-size: 0.9rem;
                padding: 10px 20px;
            }

            .stat-icon {
                font-size: 2.5rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 1rem;
            }
        }






 /* ==================== GLOBAL STYLES Konditaten  ==================== */
   
        



 

  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf3 100%);
            min-height: 100vh;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 40px 20px;
            text-align: center;
            color: white;
            box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
        }

        .header h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .header p {
            font-size: 1.1rem;
            opacity: 0.95;
        }

        /* Filter Section */
        .filter-section {
            padding: 30px 20px;
            background: white;
            border-bottom: 1px solid #e5e7eb;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .filter-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }

        .filter-label {
            font-weight: 700;
            color: #374151;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-label i {
            color: #667eea;
        }

        .filter-select {
            padding: 12px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            background: white;
            color: #374151;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            min-width: 200px;
        }

        .filter-select:hover,
        .filter-select:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            outline: none;
        }

        /* Main Content */
        .main-content {
            padding: 50px 20px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Kandidaten Grid */
        .kandidaten-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        /* Kandidaten Card */
        .kandidaten-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .kandidaten-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
        }

        .profil-image {
            position: relative;
            width: 100%;
            height: 280px;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .profil-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .kandidaten-card:hover .profil-image img {
            transform: scale(1.08);
        }

        .status-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(16, 185, 129, 0.95);
            backdrop-filter: blur(10px);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .profil-content {
            padding: 28px;
        }

        .profil-name {
            font-size: 1.5rem;
            color: #111827;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .profil-beruf {
            font-size: 1rem;
            color: #667eea;
            font-weight: 600;
            margin-bottom: 15px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 14px;
            background: rgba(102, 126, 234, 0.08);
            border-radius: 20px;
        }

        .profil-info {
            font-size: 0.95rem;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 20px;
            min-height: 48px;
        }

        .profil-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f0f0f0;
        }

        .skill-tag {
            background: #f9fafb;
            color: #4b5563;
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 1px solid #e5e7eb;
            transition: all 0.2s ease;
        }

        .skill-tag:hover {
            background: #667eea;
            color: white;
            border-color: #667eea;
            transform: translateY(-2px);
        }

        .button-group {
            display: flex;
            gap: 12px;
        }

        .profil-button {
            flex: 1;
            padding: 12px 20px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
        }

        .profil-button.primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .profil-button.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        .profil-button.secondary {
            background: white;
            color: #667eea;
            border: 2px solid #667eea;
        }

        .profil-button.secondary:hover {
            background: #667eea;
            color: white;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(5px);
            overflow-y: auto;
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: white;
            margin: 40px auto;
            max-width: 900px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #374151;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .close-btn:hover {
            background: #667eea;
            color: white;
            transform: rotate(90deg);
        }

        .detail-header {
            position: relative;
            height: 400px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .detail-header img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .detail-badge {
            position: absolute;
            bottom: 25px;
            right: 25px;
            background: rgba(16, 185, 129, 0.95);
            backdrop-filter: blur(10px);
            color: white;
            padding: 12px 28px;
            border-radius: 25px;
            font-size: 0.95rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
        }

        .detail-body {
            padding: 50px;
            background: #fafbfc;
        }

        .detail-name {
            font-size: 2.5rem;
            color: #111827;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .detail-beruf {
            font-size: 1.3rem;
            color: #667eea;
            font-weight: 600;
            margin-bottom: 35px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 20px;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 25px;
            border: 2px solid rgba(102, 126, 234, 0.2);
        }

        .detail-section {
            margin-bottom: 35px;
            padding: 35px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .detail-section h3 {
            font-size: 1.3rem;
            color: #111827;
            margin-bottom: 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .detail-section h3 i {
            color: #667eea;
            font-size: 1.4rem;
        }

        .detail-section p {
            font-size: 1.05rem;
            color: #4b5563;
            line-height: 1.8;
        }

        .detail-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .detail-skill-tag {
            background: #f9fafb;
            color: #4b5563;
            padding: 10px 18px;
            border-radius: 20px;
            font-size: 0.95rem;
            font-weight: 600;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }

        .detail-skill-tag:hover {
            background: #667eea;
            color: white;
            border-color: #667eea;
            transform: translateY(-3px);
        }

        .detail-info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 15px;
        }

        .info-item {
            padding: 20px;
            background: #f9fafb;
            border-radius: 12px;
            border-left: 4px solid #667eea;
        }

        .info-label {
            font-size: 0.85rem;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .info-value {
            font-size: 1.2rem;
            color: #111827;
            font-weight: 700;
        }

        .detail-actions {
            display: flex;
            gap: 15px;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 2px solid #e5e7eb;
        }

        /* No Results */
        .no-results {
            text-align: center;
            padding: 80px 20px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .no-results i {
            font-size: 4rem;
            color: #d1d5db;
            margin-bottom: 20px;
        }

        .no-results h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #374151;
            font-weight: 700;
        }

        .no-results p {
            color: #6b7280;
            font-size: 1.05rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .kandidaten-grid {
                grid-template-columns: 1fr;
            }

            .detail-info-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }

            .profil-content {
                padding: 20px;
            }

            .detail-body {
                padding: 30px 20px;
            }

            .detail-name {
                font-size: 2rem;
            }

            .detail-section {
                padding: 25px;
            }

            .button-group {
                flex-direction: column;
            }

            .detail-actions {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .kandidaten-grid {
                grid-template-columns: 1fr;
            }

            .filter-container {
                flex-direction: column;
            }

            .filter-select {
                width: 100%;
            }

            .profil-image {
                height: 220px;
            }

            .detail-header {
                height: 280px;
            }
        }