/* ===== Variablen ===== */
:root {
    --beige: #e8e0d5;
    --beige-dunkel: #d4c9b8;
    --weiss: #ffffff;
    --schwarz: #1a1a1a;
    --schwarz-weich: #2d2d2d;
    --text: #1a1a1a;
    --text-hell: #5c5c5c;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', sans-serif;
}

/* ===== Reset & Basis ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--beige);
}

.nav__list {
    list-style: none;
    margin: 0;
    padding: 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
}

.nav__list a {
    font-weight: 500;
    color: var(--schwarz);
}

.nav__list a:hover {
    color: var(--beige-dunkel);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--weiss) 0%, var(--beige) 100%);
}

.hero__images {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
}

.hero__img {
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hero__img-placeholder,
.img-placeholder {
    aspect-ratio: 3/4;
    background: var(--beige-dunkel);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-hell);
    font-size: 0.9rem;
    border-radius: 8px;
}

.hero__img--main:not([style*="display: none"]) + .hero__img-placeholder {
    display: none;
}

.hero__content {
    flex: 1;
    min-width: 280px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--schwarz);
}

.hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-hell);
    margin: 0 0 2rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.btn--primary {
    background: var(--schwarz);
    color: var(--weiss);
}

.btn--primary:hover {
    background: var(--schwarz-weich);
}

.btn--secondary {
    background: var(--weiss);
    color: var(--schwarz);
    border: 2px solid var(--weiss);
}

.btn--secondary:hover {
    background: transparent;
    color: var(--weiss);
}

/* ===== Sections ===== */
.section {
    padding: 4rem 2rem;
}

.section--white {
    background: var(--weiss);
}

.section--beige {
    background: var(--beige);
}

.section--black {
    background: var(--schwarz);
    color: var(--weiss);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    margin: 0 0 2rem;
    text-align: center;
}

.section__title--light {
    color: var(--weiss);
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

/* Über mich */
.ueber-mich__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 700px) {
    .ueber-mich__grid {
        grid-template-columns: 1fr;
    }
}

.ueber-mich__image {
    position: relative;
}

.ueber-mich__image img {
    border-radius: 8px;
}

.ueber-mich__image img:not([style*="display: none"]) + .img-placeholder {
    display: none;
}

.ueber-mich__image .img-placeholder {
    aspect-ratio: 4/5;
}

.ueber-mich__text p {
    margin: 0;
    color: var(--text);
}

/* Leistungen */
.leistungen__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leistungen__list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.leistungen__list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--schwarz);
}

/* So arbeitest Du */
.arbeit__highlight {
    background: var(--weiss);
    padding: 1.2rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.arbeit__content p {
    margin: 0 0 1rem;
}

.arbeit__images {
    margin-top: 2rem;
}

.arbeit__images img {
    border-radius: 8px;
}

.arbeit__images img:not([style*="display: none"]) + .img-placeholder {
    display: none;
}

.arbeit__images .img-placeholder {
    aspect-ratio: 16/9;
}

/* Buch */
.buch__content p {
    margin: 0 0 1.5rem;
    opacity: 0.9;
}

.buch__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Calendly / Termin */
.termin__intro {
    text-align: center;
    margin-bottom: 2rem;
}

.calendly-placeholder {
    text-align: center;
    padding: 2rem;
    background: var(--beige);
    border-radius: 8px;
}

.calendly-placeholder p {
    margin: 0 0 1rem;
}

.calendly-placeholder code {
    font-size: 0.85em;
}

/* Footer */
.footer {
    background: var(--schwarz);
    color: var(--weiss);
    padding: 2rem;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}
