/* Künstlerisch (A) - Spezifische Styles */

/* Light Theme - Schwarze Schrift auf hellem Hintergrund */
body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #1a1a1a !important;
}

.hero-section {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    color: white;
}

.hero-text {
    color: white;
}

.hero-title, .hero-subtitle, .hero-description {
    color: white;
}

.main-content {
    background: #ffffff;
    color: #1a1a1a !important;
}

.question-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #1a1a1a !important;
}

.question-title {
    color: #1a1a1a !important;
}

.question-description {
    color: #1a1a1a !important;
}

.question-hints {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #1a1a1a !important;
}

.question-hints h4 {
    color: #1a1a1a !important;
}

.hint-slider label {
    color: #1a1a1a !important;
    font-weight: 500;
}

.slider-container {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(156, 39, 176, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.slider-container label {
    display: block;
    margin-bottom: var(--spacing-sm);
    color: #1a1a1a !important;
    font-weight: var(--font-weight-medium);
    font-size: 0.95rem;
}

/* Slider Styles */
.slider-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.importance-slider, .hint-slider-input {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.importance-slider::-webkit-slider-thumb, .hint-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #9C27B0;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.importance-slider::-moz-range-thumb, .hint-slider-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #9C27B0;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.slider-value {
    background: #9C27B0;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    font-size: 0.9rem;
}

/* Hint Sliders */
.hints-sliders {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.hint-slider {
    padding: var(--spacing-sm);
    background: rgba(156, 39, 176, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(156, 39, 176, 0.2);
}

.hint-slider label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: #1a1a1a !important;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Textarea Styles */
textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1a1a1a !important;
    background: #ffffff;
    resize: vertical;
    transition: border-color 0.3s ease;
}

textarea:focus {
    outline: none;
    border-color: #1a1a1a !important;
    box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.1);
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7B1FA2 0%, #6A1B9A 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

.btn-secondary {
    background: #f8f9fa;
    color: #1a1a1a !important;
    border: 2px solid #9C27B0;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #9C27B0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

/* Navigation Buttons */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: #f8f9fa;
    border-radius: var(--radius-lg);
    border: 1px solid #e0e0e0;
}

/* Sidebar Styles */
.sidebar {
    background: #f8f9fa;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid #e0e0e0;
}

.sidebar h3 {
    color: #1a1a1a !important;
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.tip-section {
    margin-bottom: var(--spacing-lg);
}

.tip-section h4 {
    color: #1a1a1a !important;
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.tip-section ul {
    list-style: none;
    padding: 0;
}

.tip-section li {
    padding: var(--spacing-xs) 0;
    color: #1a1a1a !important;
    border-bottom: 1px solid #e0e0e0;
}

.tip-section li:last-child {
    border-bottom: none;
}

.tip-section a {
    color: #1a1a1a !important;
    text-decoration: none;
    font-weight: 500;
}

.tip-section a:hover {
    text-decoration: underline;
}

/* Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    top: 0.75rem;
    font-size: 1.1rem;
    right: 0;
    z-index: 1000;
    background: white;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid #e0e0e0;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9C27B0 0%, #7B1FA2 100%);
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: var(--spacing-xs);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navigation-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .hints-sliders {
        gap: var(--spacing-md);
    }
    
    .hint-slider {
        padding: var(--spacing-md);
    }
}

/* Animation for form elements */
.question-card {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects */
.question-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.15);
}

.hint-slider:hover {
    background: rgba(156, 39, 176, 0.1);
    border-color: rgba(156, 39, 176, 0.4);
}


/* Hint Sliders */
.hints-sliders {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.hint-slider {
    padding: var(--spacing-sm);
    background: rgba(96, 125, 139, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(96, 125, 139, 0.2);
    margin-bottom: var(--spacing-sm);
}

.hint-slider label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: #1a1a1a !important;
    font-weight: 500;
    font-size: 0.9rem;
}

.hint-slider-input {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.hint-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #9C27B0;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hint-slider-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #9C27B0;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}


/* Enhanced Navigation Buttons */
.navigation-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Enhanced Sidebar */
.sidebar {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-xl) calc(var(--spacing-xl) + 1rem);
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 2rem;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.tip-section {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tip-section h3, .tip-section h4 {
    margin-bottom: var(--spacing-md);
    color: #1a1a1a !important;
    font-weight: 600;
}

.tip-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip-section li {
    padding: var(--spacing-sm) 0;
    color: #1a1a1a !important;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
    padding-left: var(--spacing-md);
}

.tip-section li:before {
    content: '•';
    color: #9C27B0;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.75rem;
    font-size: 1.1rem;
}

.tip-section li:last-child {
    border-bottom: none;
}

.tip-section a {
    color: #9C27B0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.tip-section a:hover {
    color: #7B1FA2;
    text-decoration: underline;
}


/* Enhanced Navigation Buttons - Beautiful Design */
.navigation-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    color: white;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #666;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #1a1a1a !important;
    color: #1a1a1a !important;
}

/* Beautiful Sidebar Design */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-xl) calc(var(--spacing-xl) + 1rem);
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 2rem;
}

.sidebar-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #9C27B0;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a !important;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-card li {
    padding: 0.75rem 0;
    color: #1a1a1a !important;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}
.sidebar-card li:before {
    content: '•';
    color: #9C27B0;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.75rem;
    font-size: 1.1rem;
}

.sidebar-card li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0.5rem;
}
.sidebar-card a {
    color: #9C27B0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sidebar-card a:hover {
    color: #7B1FA2;
    text-decoration: underline;
}
