/* style.css – Soul Informatik GmbH */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    background: #f5f5f7;
    color: #222;
    line-height: 1.6;
}

/* Container */

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header & Navigation */

header {
    background: #111827;
    color: #fff;
    padding: 0.75rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
}

nav a {
    color: #d1d5db;
    margin-left: 1.5rem;
    text-decoration: none;
    font-size: 0.95rem;
}

nav a:hover,
nav a.active {
    color: #ffffff;
}

/* Hero */

.hero {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
    padding: 4rem 0 3rem;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero p {
    max-width: 600px;
    margin-bottom: 1.5rem;
    color: #e5e7eb;
}

.hero .slogan {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

/* Buttons */

.btn,
.btn-outline {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn {
    background: #3b82f6;
    color: #fff;
}

.btn:hover {
    background: #2563eb;
}

.btn-outline {
    background: transparent;
    color: #111827;
    border-color: #111827;
}

.btn-outline:hover {
    background: #111827;
    color: #fff;
}

/* Services */

.services {
    padding: 3rem 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-card h3 {
    margin-bottom: 0.5rem;
}

/* CTA */

.cta {
    padding: 2.5rem 0 3rem;
    background: #e5e7eb;
    text-align: center;
}

/* Page Header */

.page-header {
    padding: 3rem 0 1.5rem;
    background: #e5e7eb;
}

.page-header h1 {
    font-size: 1.8rem;
}

/* Content */

.content {
    padding: 2rem 0 3rem;
}

.content h2, .content h3 {
    margin: 1.2rem 0 0.4rem;
}

.content p {
    margin-bottom: 0.7rem;
}

.content ul {
    margin-left: 1.2rem;
    margin-bottom: 1rem;
}

.content li {
    margin-bottom: 0.4rem;
}

/* Kontakt */

.contact-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.5fr);
    gap: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-form {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Formulare */

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.6rem 0.7rem;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px rgba(59,130,246,0.3);
}

/* Alerts */

.alert {
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.alert.success {
    background: #dcfce7;
    border: 1px solid #16a34a;
    color: #166534;
}

.alert.error {
    background: #fee2e2;
    border: 1px solid #dc2626;
    color: #991b1b;
}

/* Footer */

footer {
    background: #111827;
    color: #9ca3af;
    padding: 1rem 0;
    font-size: 0.85rem;
    margin-top: 2rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer a {
    color: #e5e7eb;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

/* Responsive */

@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 3rem;
    }
	body {
        font-size: 16px; /* Basis etwas größer halten */
    }

    .container {
        padding: 0 1.25rem;
    }

    .hero h1 {
        font-size: 1.8rem; /* etwas prominenter auf dem Handy */
    }

    .btn,
    .btn-outline {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
}

