/* Globale Stile */
:root {
    --primary-color: #6d8d79;
    --secondary-color: #333;
    --accent-color: #576470;
    --light-bg: #95b495;
    font-family: Verdana;
}


<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lobster">

body {
    font-family: 'Lobster';font-size: 22px;
    margin: 0;
    padding: 0;
    color: #cbcec5;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation */
nav {
    font-family: 'Lobster';
    background: #cbcec5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--secondary-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s, scale(0.1);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero-Bereich */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(pics/clem-onojeghuo-zlABb6Gke24-unsplash.jpg);
    background-size: cover;
    background-position: top;
    color: white;
    text-align: center;
    padding: 10rem 0;
    margin-top: 30px;
}

/* Hero2-Bereich */
.hero2 {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7))
    background-size: cover;
    background-position: center;
    color: grey;
    text-align: center;
    padding: 10rem 0;
    margin-top: 30px;
}

.hero h1 {
    font-family: 'Lobster', Verdana;    
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero h1 span {
    color: var(--accent-color);
}

.hero p {
    font-family: Verdana;     
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-family: Verdana;     
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #333;
}

/* Leistungen */
.services {
    padding: 5rem 0;
    background: var(--primary-color);
}
.services2 {
    padding: 5rem 0;
    background: var(--light-bg);
}

.services h2 {
    font-family: 'Lobster', sans-serif; 
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.services2 h2 {
    font-family: 'Lobster', sans-serif; 
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fcf3cf;    
    /*background: white;*/
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    /*text-align: center;*/
    transition: transform 0.3s;
}

.service-card:hover {
    /*transform: translateY(-10px);*/
    transform: scale(1.05, 1.05);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Lobster', sans-serif;    
    margin-bottom: 1rem;
}

/* Über mich & Kontakt */
.about {
    background: var(--light-bg);    
    padding: 5rem 0;
    font-family: Verdana;
    text-align: center;
}

.about h2 {
    font-family: 'Lobster', sans-serif; 
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
}

/* Kontakt */
.contact {
    background: var(--primary-color);    
    padding: 5rem 0;
    font-family: Verdana;
    text-align: center;
}

.contact h2 {
    font-family: 'Lobster', sans-serif; 
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.contact form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
   

}

.contact input, .contact textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: Verdana;
}

.contact textarea {
    min-height: 150px;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: #cbcec5;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: white;
    font-size: 1.5rem;
}

footer p {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }
}