 :root {
     --primary: #ee7ffa;
     --primary-hover: #ee7ffa;
     --background: #0b0b0b;
     --surface: #181818;
     --text: #f1f1f1;
     --muted: #c4c4c4;
     --border: #2a2a2a;
}
 body {
     background-color: var(--background);
     color: var(--text);
     font-family: "Poppins", sans-serif;
     scroll-behavior: smooth;
}
/* Navbar */
 .navbar {
     background-color: var(--surface);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
 .navbar-brand, .nav-link {
     color: var(--text) !important;
     transition: color 0.3s ease;
}
 .nav-link:hover {
     color: var(--primary) !important;
}
 .navbar-toggler {
     background-color: var(--primary);
     border: none;
}
/* Hero mit Hintergrundbild */
 .hero {
     position: relative;
     background-image: url('img/hero-bg.jpg');
    /* <-- Pfad zu deinem Bild */
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
    /* f�r Parallax-Effekt (optional) */
     color: #fff;
     text-align: center;
     padding: 160px 0 120px;
     overflow: hidden;
}
 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.6);
    /* Dunkles Overlay f�r bessere Lesbarkeit */
     z-index: 1;
}
 .hero .container {
     position: relative;
     z-index: 2;
}
 .hero h1 {
     font-weight: 700;
     color: #fff;
}
 .hero p {
     color: #ddd;
}
 .hero .btn {
     background: var(--primary);
     color: #fff;
     border: none;
     border-radius: 30px;
     padding: 10px 25px;
     font-weight: 600;
     transition: all 0.3s ease;
}
 .hero .btn:hover {
     background: var(--primary-hover);
}
 .about-section {
     color: #fff;
     border-radius: 20px;
     overflow: hidden;
     position: relative;
}
 .section-title {
     font-size: 2.5rem;
     font-weight: 700;
     letter-spacing: 1px;
}
 .avatar-wrapper {
     display: inline-block;
     border-radius: 50%;
     padding: 6px;
     background: linear-gradient(135deg, #ee7ffa, #88468f96);
     animation: glow 3s ease-in-out infinite alternate;
}
 .avatar-img {
     width: 230px;
     height: 230px;
     border-radius: 50%;
     object-fit: cover;
     border: 3px solid #ee7ffa;
     box-shadow: 0 0 25px #ee7ffa;
}
 .social-links {
     display: flex;
     gap: 15px;
}
 .social-icon {
     font-size: 1.5rem;
     color: #ee7ffa;
     transition: all 0.3s ease;
}
 .social-icon:hover {
     color: #fff;
     transform: scale(1.2) rotate(5deg);
}
 .skill {
     margin-bottom: 15px;
}
 .skill span {
     display: block;
     margin-bottom: 5px;
     font-weight: 500;
}
 .progress {
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50px;
     overflow: hidden;
}
 .progress-bar {
     height: 10px;
     background: linear-gradient(90deg, #ee7ffa, #88468f96);
     border-radius: 50px;
     text-align: right;
     font-size: 0.75rem;
     padding-right: 5px;
     color: #fff;
     animation: growBar 2s ease-out;
}
 @keyframes growBar {
     from {
         width: 0;
    }
     to {
         width: var(--width, 80%);
    }
}
 @keyframes glow {
     0% {
         box-shadow: 0 0 10px #38bdf8, 0 0 20px #38bdf8;
    }
     100% {
         box-shadow: 0 0 20px #818cf8, 0 0 40px #818cf8;
    }
}
/* Sections */
 section {
     padding: 90px 0;
}
 .section-title {
     color: var(--primary);
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 50px;
     text-align: center;
}
/* Typography */
 p, .lead, .card-text {
     color: var(--muted);
}
 h1, h2, h3, h4, h5 {
     color: var(--text);
}
/* Cards */
 .card {
     background-color: var(--surface);
     border: 1px solid var(--border);
     color: var(--text);
     border-radius: 10px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
     transition: all 0.3s ease;
}
 .card:hover {
     transform: translateY(-5px);
     box-shadow: 0 6px 20px #ee7ffa84;
}
 .card-title {
     color: var(--text);
     font-weight: 600;
}
 .card-text {
     color: var(--muted);
}
 .btn-primary {
     background-color: var(--primary);
     border: none;
     border-radius: 30px;
     transition: all 0.3s ease;
     color: #fff;
     font-weight: 500;
}
 .btn-primary:hover {
     background-color: var(--primary-hover);
     color: #fff;
}
/* Social Icons */
 .social-icons a {
     background-color: var(--primary);
     color: #fff;
     width: 45px;
     height: 45px;
     border-radius: 50%;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     margin: 8px;
     transition: all 0.3s ease;
     font-size: 18px;
}
 .social-icons a:hover {
     transform: translateY(-4px);
     background-color: var(--primary-hover);
}
/* Footer */
 footer {
     background-color: var(--surface);
     padding: 25px 0;
     color: var(--muted);
     text-align: center;
     font-size: 14px;
     box-shadow: 0 -2px 8px rgba(0,0,0,0.6);
}
 footer a {
     color: var(--primary);
     text-decoration: none;
}
 footer a:hover {
     text-decoration: underline;
}
/* Modals */
 .modal-content {
     background-color: var(--surface);
     color: var(--text);
     border: 1px solid var(--border);
}
 .modal-header {
     border-bottom: 1px solid var(--border);
}
 .modal-body p {
     color: var(--muted);
}
 .music-btn {
     position: fixed;
     bottom: 20px;
     right: 20px;
     background: rgba(30,41,59,0.7);
     backdrop-filter: blur(8px);
     color: #fff;
     padding: 10px 15px;
     border-radius: 12px;
     cursor: pointer;
     transition: 0.3s;
     font-weight: 500;
}
 .music-btn:hover {
     background: rgba(56,189,248,0.8);
     transform: scale(1.05);
}
