/*
 * MensenHelpen Main Stylesheet
 * Professional & Premium Redesign 1.1
 */

:root {
    --primary-color: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #ccfbf1;
    --secondary-color: #6366f1;
    --text-dark: #0f172a;
    --text-main: #334155;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success: #10b981;
    --error: #ef4444;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --radius-lg: 16px;
    --radius-md: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { color: var(--text-dark); font-weight: 700; letter-spacing: -0.025em; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-padding { padding: 100px 0; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary { background: var(--primary-color); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(13, 148, 136, 0.2); }

.btn-outline { background: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); }
.btn-outline:hover { background: var(--primary-color); color: white; }

.btn-text { color: var(--text-main); font-weight: 500; }
.btn-text:hover { color: var(--primary-color); }

/* Header */
.site-header {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.site-header-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.header-logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.header-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.main-navigation ul { display: flex; list-style: none; gap: 32px; }
.main-navigation a { font-weight: 500; font-size: 0.95rem; color: var(--text-dark); opacity: 0.8; transition: opacity 0.2s; }
.main-navigation a:hover { color: var(--primary-color); opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 16px; }

/* Hero Section */
.hero-section {
    background: radial-gradient(circle at top right, #f0fdfa 0%, #ffffff 50%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-title { font-size: 4rem; line-height: 1.1; margin-bottom: 24px; color: var(--text-dark); }
.hero-subtitle { font-size: 1.25rem; color: var(--text-main); margin-bottom: 48px; max-width: 600px; }

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.category-card {
    position: relative;
    height: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    color: white;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.category-card:hover { transform: scale(1.02); }

.category-card h3 {
    position: relative;
    z-index: 2;
    color: white;
    margin-bottom: 4px;
    font-size: 1.5rem;
}

.category-card .cat-count {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer Re-Design */
.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 100px 0 40px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.site-footer .widget-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #94a3b8; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary-color); }

.site-info {
    border-top: 1px solid #1e293b;
    padding-top: 40px;
    text-align: center;
    font-size: 0.9rem;
}

/* Testimonials */
.trust-section { background: #f8fafc; padding: 120px 0; }
.trust-section .section-title { margin-bottom: 64px; }

.testimonial-card {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-content { font-size: 1.5rem; font-weight: 500; color: var(--text-dark); line-height: 1.4; margin-bottom: 32px; font-style: italic; }
.testimonial-author { font-weight: 700; color: var(--primary-color); font-size: 1.1rem; font-style: normal; }

/* Responsive */
@media (max-width: 991px) {
    .footer-widgets { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .footer-widgets { grid-template-columns: 1fr; }
    .main-navigation { display: none; }
    .hero-section { padding: 80px 0; text-align: center; }
    .hero-subtitle { margin-inline: auto; }
    .hero-cta-group { justify-content: center; }
}
