/*
Theme Name: NRW Entrümpelung Swiss
Theme URI: https://entruempelung-nrw-service.de
Author: Manus AI
Author URI: https://manus.im
Description: A custom, high-performance WordPress theme designed with Swiss Style principles for maximum conversion and SEO.
Version: 2.0.0
Text Domain: nrw-swiss
*/

:root {
    --color-primary: #DA291C; /* Swiss Red */
    --color-black: #111111;
    --color-dark-gray: #333333;
    --color-light-gray: #F4F4F4;
    --color-white: #FFFFFF;
    --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --spacing-unit: 1rem;
    --container-width: 1200px;
}

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--font-body);
    color: var(--color-black);
    line-height: 1.6;
    background-color: var(--color-white);
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

a { color: var(--color-primary); text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--color-black); }

img { max-width: 100%; height: auto; display: block; }

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* Components */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-outline {
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* Header */
.site-header {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.98);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-branding {
    flex: 0 0 auto;
}

.custom-logo {
    height: 60px;
    width: auto;
}

.main-navigation {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-nav-ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.main-nav-ul li a {
    color: var(--color-black);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.header-cta {
    margin-left: 2rem;
}

/* Mobile Menu */
@media (max-width: 992px) {
    .header-inner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation {
        width: 100%;
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .main-nav-ul {
        gap: 1rem;
        white-space: nowrap;
    }
    
    .header-cta {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    
    .header-cta .btn {
        width: 100%;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 0 8rem;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 { 
    margin-bottom: 1.5rem; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p { 
    font-size: 1.25rem; 
    margin-bottom: 2.5rem; 
    opacity: 0.95; 
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Trust Bar */
.trust-bar {
    background: var(--color-light-gray);
    padding: 1.5rem 0;
    border-bottom: 1px solid #ddd;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Content Sections */
.content-section { padding: 5rem 0; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-primary);
}

/* Services Grid */
.service-card {
    background: var(--color-light-gray);
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--color-primary);
    height: 100%;
}

.service-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.service-card h3 { margin-bottom: 1rem; }

/* Before/After */
.before-after { padding: 5rem 0; background: var(--color-black); color: var(--color-white); }
.comparison-container { position: relative; }

/* Footer */
.site-footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-widget h3 {
    color: var(--color-white);
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 0.75rem;
}

.footer-widget a {
    color: #ccc;
}

.footer-widget a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}
