/* HENX3D - Minimal Theme: SWISS EDITORIAL */

/* SCOPED Variables - nur aktiv wenn theme-minimal */
.theme-minimal {
    --swiss-black: #0a0a0a;
    --swiss-white: #fafafa;
    --swiss-red: #ff0033;
    --swiss-gray: #666666;
    --swiss-light: #f0f0f0;
    --swiss-border: #e0e0e0;


    
    /* Customer Dashboard Kompatibilität */
    --card-bg: #fafafa;
    --text-color: #18181b;
    --text-muted: #71717a;
    --border-color: #e4e4e7;
    --light-bg: #f4f4f5;
    --primary-color: #18181b;
    --color-primary: #18181b;

    background: var(--swiss-white);
    color: var(--swiss-black);
    font-family: "Work Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.theme-minimal * { border-radius: 0 !important; }

.theme-minimal main {
    background-color: var(--swiss-white) !important;
}

/* TYPOGRAPHY */
.theme-minimal h1, .theme-minimal h2, .theme-minimal h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--swiss-black);
}

.theme-minimal h1 { font-size: clamp(3rem, 8vw, 6rem); font-style: italic; }
.theme-minimal h2 { font-size: clamp(2rem, 5vw, 3.5rem); }

.theme-minimal p {
    font-family: "Work Sans", sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--swiss-gray);
}

.theme-minimal .section-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--swiss-red);
    border-bottom: 2px solid var(--swiss-red);
    padding-bottom: 0.25rem;
    display: inline-block;
}

/* HERO */
.theme-minimal .hero-title {
    color: var(--swiss-black);
    position: relative;
    display: inline-block;
}

.theme-minimal .hero-title::after {
    content: "";
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 1.5em;
    height: 0.15em;
    background: var(--swiss-red);
}

/* CARDS */
.theme-minimal .card, .theme-minimal .service-card {
    background: var(--swiss-white);
    border: 1px solid var(--swiss-black);
    padding: 2rem;
    transition: all 0.2s ease;
    position: relative;
}

.theme-minimal .card::before, .theme-minimal .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--swiss-red);
    transition: height 0.3s ease;
}

.theme-minimal .card:hover, .theme-minimal .service-card:hover {
    box-shadow: 8px 8px 0 var(--swiss-black);
    transform: translate(-4px, -4px);
}

.theme-minimal .card:hover::before, .theme-minimal .service-card:hover::before {
    height: 100%;
}

/* BUTTONS */
.theme-minimal .btn-primary, .theme-minimal .cta-btn {
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--swiss-black);
    color: var(--swiss-white);
    border: 2px solid var(--swiss-black);
    padding: 1rem 2rem;
    transition: all 0.2s ease;
}

.theme-minimal .btn-primary:hover, .theme-minimal .cta-btn:hover {
    background: var(--swiss-red);
    border-color: var(--swiss-red);
    box-shadow: 4px 4px 0 var(--swiss-black);
    transform: translate(-2px, -2px);
}

.theme-minimal .btn-secondary, .theme-minimal .btn-outline {
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: transparent;
    color: var(--swiss-black);
    border: 2px solid var(--swiss-black);
}

.theme-minimal .btn-secondary:hover, .theme-minimal .btn-outline:hover {
    background: var(--swiss-black);
    color: var(--swiss-white);
}

/* NAVIGATION */
.theme-minimal .nav-link {
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--swiss-gray);
    position: relative;
}

.theme-minimal .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--swiss-red);
    transition: all 0.2s ease;
    transform: translateX(-50%);
}

.theme-minimal .nav-link:hover { color: var(--swiss-black); }
.theme-minimal .nav-link:hover::after { width: 100%; }
.theme-minimal .nav-link.active { color: var(--swiss-black); font-weight: 700; }
.theme-minimal .nav-link.active::after { width: 100%; background: var(--swiss-black); }

/* FORMS */
.theme-minimal input, .theme-minimal textarea, .theme-minimal select {
    font-family: "Work Sans", sans-serif;
    background: var(--swiss-white);
    border: 2px solid var(--swiss-border);
    color: var(--swiss-black);
}

.theme-minimal input:focus, .theme-minimal textarea:focus {
    border-color: var(--swiss-black);
    outline: none;
}

/* STATS */
.theme-minimal .stat-number {
    font-family: "Playfair Display", serif;
    font-size: 5rem;
    font-weight: 700;
    font-style: italic;
    color: var(--swiss-black);
}

.theme-minimal .stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--swiss-gray);
}

/* FOOTER */
.theme-minimal .site-footer {
    background: var(--swiss-light);
    border-top: 1px solid var(--swiss-border);
}

/* SCROLLBAR */
.theme-minimal::-webkit-scrollbar { width: 8px; }
.theme-minimal::-webkit-scrollbar-track { background: var(--swiss-white); }
.theme-minimal::-webkit-scrollbar-thumb { background: var(--swiss-black); }
.theme-minimal::-webkit-scrollbar-thumb:hover { background: var(--swiss-red); }

.theme-minimal hr {
    border: none;
    height: 2px;
    background: var(--swiss-black);
}

.theme-minimal blockquote {
    font-family: "Playfair Display", serif;
    font-size: 1.75rem;
    font-style: italic;
    border-left: 4px solid var(--swiss-red);
    padding-left: 2rem;
    color: var(--swiss-black);
}

@media (max-width: 768px) {
    .theme-minimal h1 { font-size: clamp(2rem, 10vw, 3.5rem); }
    .theme-minimal .stat-number { font-size: 3.5rem; }
}
