/* ==================== STARTSEITE STYLES ==================== */

.start-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Box 1: Begrüßung */
.welcome-box {
    background: linear-gradient(135deg, #d52b1e 0%, #a02318 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(213, 43, 30, 0.3);
    text-align: center;
}

.greeting-title {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    font-weight: bold;
}

.greeting-subtitle {
    font-size: 1.2rem;
    margin: 0 0 2rem 0;
    opacity: 0.95;
}

.quick-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-btn {
    background: white;
    color: #d52b1e;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.quick-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Box 2: Fortschritt */
.progress-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.progress-box h2 {
    margin: 0 0 1.5rem 0;
    color: #333;
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.stat-item.streak-item {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid #ff9800;
}

.stat-item.streak-hot {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid #f44336;
    animation: pulse 2s infinite;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #d52b1e;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.3rem;
}

.stat-message {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.3rem;
    font-style: italic;
}

.daily-goal {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2196f3;
}

.daily-goal h3 {
    margin: 0 0 1rem 0;
    color: #1976d2;
}

.goal-bar {
    height: 24px;
    background: #bbdefb;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.goal-fill {
    height: 100%;
    background: linear-gradient(90deg, #2196f3 0%, #1976d2 100%);
    transition: width 0.5s ease;
    border-radius: 12px;
}

.goal-text {
    margin: 0;
    color: #1976d2;
    font-weight: 500;
}

/* Box 3: Empfehlungen */
.recommendations-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.recommendations-box h2 {
    margin: 0 0 1.5rem 0;
    color: #333;
}

.recommendation-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recommendation-card {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s;
    border-left: 4px solid #ccc;
}

.recommendation-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.recommendation-card.review {
    background: #e3f2fd;
    border-left-color: #2196f3;
}

.recommendation-card.weakness {
    background: #fff3e0;
    border-left-color: #ff9800;
}

.recommendation-card.new {
    background: #e8f5e9;
    border-left-color: #4caf50;
}

.recommendation-card.streak {
    background: #ffebee;
    border-left-color: #f44336;
}

.recommendation-card.schweiz {
    background: #f3e5f5;
    border-left-color: #9c27b0;
}

.rec-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.rec-content {
    flex: 1;
}

.rec-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
}

.rec-description {
    font-size: 0.95rem;
    color: #666;
}

.rec-btn {
    background: #d52b1e;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.rec-btn:hover {
    background: #a02318;
    transform: translateY(-2px);
}

.no-recommendations {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-recommendations p {
    margin: 0.5rem 0;
}

/* Übersetzer-Seite */
.uebersetzer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.translator-header-main {
    text-align: center;
    margin-bottom: 2rem;
}

.translator-header-main h2 {
    color: #333;
    margin: 0 0 0.5rem 0;
}

.translator-main {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .start-container {
        padding: 1rem;
    }
    
    .welcome-box {
        padding: 2rem 1.5rem;
    }
    
    .greeting-title {
        font-size: 1.8rem;
    }
    
    .greeting-subtitle {
        font-size: 1rem;
    }
    
    .quick-actions {
        flex-direction: column;
    }
    
    .quick-btn {
        width: 100%;
    }
    
    .progress-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .recommendation-card {
        flex-direction: column;
        text-align: center;
    }
    
    .rec-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .progress-stats {
        grid-template-columns: 1fr;
    }
}
