/* styles.css für Smulski IT-Service & Impressum */


/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Grundlegende Typografie */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

a {
    color: #004085;
    text-decoration: none;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
}


/* Header & Navigation */

header {
    background-color: #004085;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #fff;
    font-weight: bold;
}


/* Hero Section */

.hero {
    background: url('assets/images/hero-bg.jpg') no-repeat center center/cover;
    color: #333;
    text-align: center;
    padding: 100px 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #ffa500;
    color: #004085;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 5px;
}

.btn:hover {
    background-color: #ff8c00;
}


/* Sections */

section {
    padding: 60px 0;
}


/* Services */

.services {
    background-color: #fff;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-item {
    background-color: #e9ecef;
    padding: 20px;
    border-radius: 8px;
}

.service-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}


/* About & Impressum */

.about {
    background-color: #f1f1f1;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: left;
}


/* Kontakt */

.contact {
    background-color: #fff;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact label {
    font-weight: bold;
}

.contact input,
.contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
}

.contact button {
    width: 150px;
    align-self: flex-start;
}

.contact p {
    text-align: center;
    font-size: 1rem;
}


/* Footer */

footer {
    background-color: #004085;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    font-size: 0.9rem;
    margin: 5px 0;
}