
/* Global Styles - Harz Computer Hilfe */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #f7fafc;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.9rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.logo .highlight {
    color: #90cdf4;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #90cdf4;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.9), rgba(49, 130, 206, 0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,5 L15,10 L10,15 L5,10 Z M10,5 L10,0 M10,15 L10,20 M5,10 L0,10 M15,10 L20,10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero .region-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero .region-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #48bb78, #68d391);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.6);
}

/* Content Sections */
.section {
    padding: 5rem 0;
    background: white;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-alt {
    background: #edf2f7;
}

.section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3748;
    position: relative;
}

.section h2:after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #4299e1, #90cdf4);
    margin: 1.5rem auto;
    border-radius: 3px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 6px solid #4299e1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    color: #2d3748;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.service-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card .price-tag {
    background: linear-gradient(45deg, #48bb78, #68d391);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.article-card .card-image {
    height: 220px;
    background: linear-gradient(135deg, #4299e1, #90cdf4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    position: relative;
}

.article-card .card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, rgba(0,0,0,0.1));
}

.article-card .card-content {
    padding: 2.5rem;
}

.article-card .card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #2d3748;
}

.article-card .card-content p {
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.read-more {
    color: #4299e1;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: #3182ce;
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Article Page Styles */
.article-header {
    background: linear-gradient(135deg, #4299e1, #90cdf4);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.article-header h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.article-meta {
    font-size: 1.1rem;
    opacity: 0.9;
}

.article-content {
    background: white;
    padding: 5rem 0;
}

.article-content h2 {
    color: #2d3748;
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #4299e1;
}

.article-content h3 {
    color: #4a5568;
    font-size: 1.7rem;
    margin: 2.5rem 0 1.2rem 0;
}

.article-content p {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.article-content ul, .article-content ol {
    margin: 2rem 0;
    padding-left: 2.5rem;
}

.article-content li {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.highlight-box {
    background: linear-gradient(135deg, #4299e1, #90cdf4);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 12px 35px rgba(66, 153, 225, 0.3);
    position: relative;
}

.highlight-box::before {
    content: '💡';
    font-size: 2rem;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.highlight-box h3 {
    color: white !important;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.stat-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #4299e1;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #4299e1;
    display: block;
}

.stat-label {
    color: #4a5568;
    font-size: 1rem;
    margin-top: 0.8rem;
    line-height: 1.4;
}

/* Footer */
footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 4rem 0;
    margin-top: 5rem;
}

footer p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

footer a {
    color: #90cdf4;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #4299e1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

/* External Links */
.external-link {
    color: #4299e1;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.external-link:hover {
    border-bottom: 1px solid #4299e1;
    color: #3182ce;
}

/* Special Elements */
.breadcrumbs {
    background: #edf2f7;
    padding: 1.2rem 0;
    font-size: 1rem;
}

.breadcrumbs a {
    color: #4299e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #3182ce;
}

.contact-cta {
    background: linear-gradient(135deg, #48bb78, #68d391);
    color: white;
    padding: 4rem 0;
    text-align: center;
    border-radius: 20px;
    margin: 3rem 0;
}

.contact-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-cta p {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    opacity: 0.95;
}

.emergency-banner {
    background: linear-gradient(45deg, #f56565, #fc8181);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 2rem;
    border-radius: 10px;
}

.price-list {
    background: #edf2f7;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.price-list h4 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.price-list ul {
    list-style: none;
    padding: 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #cbd5e0;
}

.price-list li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.3rem;
    }

    .hero .region-tags {
        justify-content: center;
    }

    .nav-menu {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section {
        margin: 1rem 0;
        padding: 3rem 0;
        border-radius: 15px;
    }

    .article-header h1 {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #edf2f7;
}

::-webkit-scrollbar-thumb {
    background: #4299e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3182ce;
}

/* Phone number styling */
.phone-link {
    color: #48bb78;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
}

.phone-link:hover {
    color: #38a169;
}

/* WhatsApp button */
.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
}
