/* Grundlayout & Typografie */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #F9F4EF;
    color: #1A1A1A;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 0;
}

/* Header / Navigation */

header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: #FFFFFFE6;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    letter-spacing: 1px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #1A1A1A;
    font-size: 14px;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero-Bereich */

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 60px;
    background: linear-gradient(to bottom right, #F9F4EF, #E8D7CE);
}

.hero-content {
    max-width: 700px;
    text-align: center;
}

.hero-tagline {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 38px;
    margin-bottom: 16px;
}

.hero-text {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 25px;
}

.cta {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 28px;
    background: #D8B878;
    border-radius: 999px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* Sektionen */

.section {
    padding: 70px 20px;
}

.section-alt {
    background: #F1E6DD;
}

.section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 15px;
}

/* Grids & Cards */

.grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.grid-3 .card {
    max-width: 260px;
}

.card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    flex: 1 1 260px;
    min-width: 240px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Portfolio-Elemente */

.portfolio-item {
    position: relative;
}

.pill {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #D8B878;
    color: #FFFFFF;
    margin-bottom: 10px;
}

/* Kontaktformular */

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    border-radius: 8px;
    border: 1px solid #CBB9A4;
    padding: 10px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: #FBF7F2;
}

.contact-form button {
    border: none;
    border-radius: 999px;
    padding: 12px;
    background: #D8B878;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.contact-form button:hover {
    opacity: 0.95;
}

/* Footer */

footer {
    text-align: center;
    padding: 20px;
    background: #FFFFFF;
    font-size: 13px;
}

/* Responsives Design */

@media (max-width: 768px) {
    header {
        padding: 14px 18px;
    }

    nav a {
        margin-left: 10px;
        font-size: 12px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero {
        padding-top: 100px;
    }
}