/* HR COACH FRAMEWORK - DARK GLASSMORPHISM THEME */

body {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    min-height: 100vh;
    color: #e2e8f0;
}

.navbar {
    background: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.nav-name { color: #fff !important; }
.nav-menu a { color: rgba(255, 255, 255, 0.8) !important; }
.nav-menu a:hover { color: #fff !important; }

.framework-hero {
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.framework-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.framework-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #c7d2fe;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.framework-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #a5b4fc;
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.area-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.area-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.area-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.area-card h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.area-card p {
    color: #c7d2fe;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.area-progress {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.area-progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.area-progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #a5b4fc;
}

.icon-analytics { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.icon-strategie { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.icon-recruiting { background: linear-gradient(135deg, #06b6d4, #0ea5e9); }
.icon-onboarding { background: linear-gradient(135deg, #10b981, #14b8a6); }
.icon-admin { background: linear-gradient(135deg, #f59e0b, #eab308); }
.icon-performance { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.icon-compensation { background: linear-gradient(135deg, #f97316, #fb923c); }
.icon-learning { background: linear-gradient(135deg, #14b8a6, #22d3d8); }
.icon-leadership { background: linear-gradient(135deg, #ef4444, #f97316); }
.icon-wellbeing { background: linear-gradient(135deg, #22c55e, #84cc16); }

.yoga-teppich-section {
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

#yogaTeppichSVG {
    max-width: 800px;
    margin: 0 auto;
}

#yogaTeppichSVG svg {
    width: 100%;
    height: auto;
}

.yoga-segment {
    cursor: pointer;
    transition: all 0.3s ease;
}

.yoga-segment:hover {
    filter: brightness(1.2);
}

.overall-progress {
    padding: 3rem 0 5rem;
    position: relative;
    z-index: 2;
}

#overallProgressCard {
    background: rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
    text-align: center;
}

#overallProgressCard h2 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

#overallProgressCard .btn-export {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

#overallProgressCard .btn-export:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

@media (max-width: 768px) {
    .framework-hero h1 {
        font-size: 2.5rem;
    }
    .areas-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.5rem;
    }
}
