/*
Theme Name: Duratos Theme
Theme URI: https://duratos.de
Author: Dein Name
Description: WordPress Theme für Duratos GmbH - Datenschutzberatung
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
*/

/* Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

/* Header */
.site-header {
    background-color: #1a1a1a;
}

.header-top {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
    padding: 10px 0;
}

.header-contact {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-contact a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
}

.site-logo a {
    display: block;
}

.logo-img {
    max-height: 50px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.main-navigation a:hover {
    color: #d9531e;
}

/* Hero Section */
.hero-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #d9531e;
}

.brand-squares {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #d9531e 50%, #ff6b35 50%);
    margin: 30px auto;
    transform: rotate(45deg);
}

/* Services */
.services-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.service-card h4 {
    font-size: 1.1em;
    color: #d9531e;
    margin-bottom: 15px;
}

.service-card a {
    display: inline-block;
    margin-top: 20px;
    color: #d9531e;
    text-decoration: none;
    font-weight: 600;
}

/* Blog Section */
.blog-section {
    background: #f5f5f5;
    padding: 80px 20px;
}

.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.blog-card h3 {
    margin-top: 10px;
}

.blog-card h3 a {
    color: #1a1a1a;
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: #d9531e;
}

.blog-date {
    color: #999;
    font-size: 14px;
}

/* Reasons Section */
.reasons-section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.reasons-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.reasons-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 1.1em;
}

.reasons-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
    list-style: none;
    padding: 0;
}

.reasons-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.reasons-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d9531e;
    font-weight: bold;
}

/* Partners & Footer */
.partners-section {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px;
}

.partners-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.partner-block h3 {
    color: #fff;
    margin-bottom: 20px;
}

.partner-logos a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    opacity: 0.8;
}

.partner-logos a:hover {
    opacity: 1;
}

.site-footer {
    background: #111;
    color: #999;
    padding: 40px 20px;
    text-align: center;
}

.site-footer a {
    color: #d9531e;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2em;
    }
    .reasons-list {
        grid-template-columns: 1fr;
    }
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .header-contact {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
    }
    .header-main {
        flex-direction: column;
        gap: 20px;
    }
}