@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #5865F2; /* Discord-ähnliches Lila/Blau */
    --dark-bg: #23272A;
    --dark-bg-light: #2C2F33;
    --text-color: #ffffff;
    --text-muted-color: #99AAB5;
    --bs-dark-rgb: 35, 39, 42; /* Überschreibt Bootstrap Dark für bessere Harmonie */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
}

/* --- Hero Section --- */
.hero-section {
    min-height: 70vh;
    background: linear-gradient(-45deg, #0d1117, #23272A, #2c3e50, #16222A);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    position: relative;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Navbar --- */
.navbar-brand, .nav-link {
    font-weight: 600;
}
.nav-link:hover {
    color: var(--primary-color) !important;
}

/* --- General Components --- */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: #4752C4;
    border-color: #4752C4;
}

.section-title {
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* --- Cards and Lists --- */
.card, .list-group-item, .form-control {
    background-color: var(--dark-bg-light);
    color: var(--text-color);
    border: 1px solid #444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.form-control {
    background-color: #33383d;
}

.form-control:focus {
    background-color: #33383d;
    color: var(--text-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(88, 101, 242, 0.25);
}

.bg-light-dark {
    background-color: var(--dark-bg-light);
}

.step-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    margin-right: 15px;
}

/* --- Scroll Animation --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Form --- */
#submit-bug-btn .spinner-border {
    margin-right: 5px;
}
