/* === RESET & BASIS === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #faf9f7;
    --color-surface: #ffffff;
    --color-text: #2c2c2c;
    --color-text-muted: #8a8580;
    --color-accent: #b8860b;
    --color-accent-hover: #9a7209;
    --color-border: #e8e4df;
    --color-overlay: rgba(20, 18, 15, 0.92);
    --color-error: #c0392b;
    --color-success: #27ae60;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --max-width: 1400px;
    --nav-height: 72px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--color-accent-hover);
}

/* === NAVIGATION === */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    height: var(--nav-height);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.nav-logo:hover {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text);
    border-bottom-color: var(--color-accent);
}

.nav-admin {
    color: var(--color-accent) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s;
}

/* === HERO === */
.hero {
    margin-top: var(--nav-height);
    padding: 5rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, #f5f0eb 0%, var(--color-bg) 100%);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--color-accent);
    margin: 0 auto 1.5rem;
}

.hero-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* === GALERIEWAND-SZENE === */
.wall-scene {
    max-width: 1100px;
    margin: 2rem auto 2.5rem;
    padding: 0 1rem;
}

.admin-wall-img {
    margin-top: 1rem;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.admin-wall-img img {
    width: 100%;
    height: auto;
    display: block;
}

.wall-scene-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    display: block;
}

.hero-small {
    padding: 5rem 2rem 3rem;
}

.hero-small h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}

/* === GALERIE === */
.gallery-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 2rem 6rem;
}

.gallery-grid {
    display: columns;
    columns: 3;
    column-gap: 1.5rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

.gallery-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    background: var(--color-surface);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
}

.gallery-item-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.gallery-item-inner img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item-inner:hover img {
    transform: scale(1.03);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item-inner:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.gallery-item-overlay p {
    font-size: 0.85rem;
    opacity: 0.85;
    line-height: 1.4;
}

.gallery-year {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 0.5rem;
    display: inline-block;
}

.empty-gallery {
    text-align: center;
    padding: 6rem 2rem;
    color: var(--color-text-muted);
}

.empty-gallery p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--color-overlay);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 2px;
}

.lightbox-info {
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.2s;
    z-index: 1001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: #fff;
}

.lightbox-close {
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    padding: 1rem;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background: var(--color-accent-hover);
    color: #fff;
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* === FORMULARE === */
.form-group {
    margin-bottom: 1.2rem;
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--color-text);
}

.form-group label small {
    font-weight: 300;
    color: var(--color-text-muted);
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--color-surface);
    transition: border-color 0.2s;
    color: var(--color-text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

/* === DATEI-UPLOAD === */
.file-upload {
    position: relative;
    border: 2px dashed var(--color-border);
    border-radius: 6px;
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
}

.file-upload:hover,
.file-upload.dragover {
    border-color: var(--color-accent);
    background: rgba(184, 134, 11, 0.03);
}

.file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    display: block;
    font-size: 2rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.file-upload-text {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.file-upload-preview {
    margin-top: 1rem;
}

.file-upload-preview img {
    max-height: 200px;
    margin: 0 auto;
    border-radius: 4px;
}

.file-upload.has-preview .file-upload-label {
    display: none;
}

/* === ALERTS === */
.alert {
    padding: 1rem 1.2rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-error {
    background: #fdf0ef;
    color: var(--color-error);
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #eafaf1;
    color: var(--color-success);
    border: 1px solid #a9dfbf;
}

/* === LOGIN === */
.login-page {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f0eb 0%, #e8e0d8 100%);
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 2rem;
}

.login-card {
    background: var(--color-surface);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.login-card h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.login-subtitle {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.login-card .form-group {
    text-align: left;
}

.login-back {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* === ADMIN === */
.admin-page {
    padding-top: var(--nav-height);
}

.admin-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.admin-container h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.admin-section {
    background: var(--color-surface);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.admin-section h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--color-border);
}

.admin-gallery {
    display: grid;
    gap: 1rem;
}

.admin-gallery-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    border-radius: 6px;
    background: var(--color-bg);
    transition: background 0.2s;
}

.admin-gallery-item:hover {
    background: #f0ece7;
}

.admin-gallery-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
    flex-shrink: 0;
}

.admin-gallery-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.admin-gallery-info strong {
    font-size: 0.95rem;
}

.admin-gallery-info span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.btn-delete {
    background: none;
    border: 1px solid #e0d5cc;
    color: var(--color-text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-delete:hover {
    background: var(--color-error);
    border-color: var(--color-error);
    color: #fff;
}

/* Admin Gallery Actions */
.admin-gallery-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-toggle {
    background: none;
    border: 1px solid #e0d5cc;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
}

.btn-toggle.is-on {
    color: var(--color-success);
    border-color: var(--color-success);
}

.btn-toggle.is-on:hover {
    background: var(--color-success);
    color: #fff;
}

.btn-toggle.is-off {
    color: var(--color-text-muted);
}

.btn-toggle.is-off:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.admin-gallery-item.is-inactive {
    opacity: 0.5;
}

.admin-gallery-item.is-inactive img {
    filter: grayscale(60%);
}

.status-badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    font-weight: 500;
    letter-spacing: 0.03em;
    vertical-align: middle;
    margin-left: 0.3rem;
}

.status-active {
    background: #eafaf1;
    color: var(--color-success);
}

.status-inactive {
    background: #fdf0ef;
    color: var(--color-error);
}

.status-details {
    background: #f5efe0;
    color: var(--color-accent);
}

/* Details-Button im Admin */
.btn-details {
    background: none;
    border: 1px solid #e0d5cc;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--color-accent);
    font-size: 1.2rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-details:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

/* Admin Details-Seite */
.admin-detail-parent {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.admin-detail-parent img {
    width: 140px;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    background: var(--color-bg);
    border-radius: 4px;
    flex-shrink: 0;
}

.admin-detail-parent p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.admin-detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.admin-detail-item {
    position: relative;
    background: var(--color-bg);
    border-radius: 6px;
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-detail-item img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
}

.admin-detail-caption input {
    width: 100%;
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    font-size: 0.85rem;
    background: var(--color-surface);
}

.admin-detail-item .btn-delete {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
}

/* Lightbox — Detail-Badge in Galerie */
.gallery-details-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 10px;
    letter-spacing: 0.03em;
}

/* Lightbox — Detail-Thumbnail-Leiste */
.lightbox-details {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 90vw;
    margin-top: 0.8rem;
    padding: 0 1rem;
}

.lightbox-detail-thumb {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 0.25rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.2s;
    max-width: 120px;
}

.lightbox-detail-thumb:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

.lightbox-detail-thumb.is-active {
    border-color: var(--color-accent);
    background: rgba(184, 134, 11, 0.2);
}

.lightbox-detail-thumb img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    display: block;
}

.lightbox-detail-thumb span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.lightbox-detail-caption {
    font-style: italic;
    color: var(--color-accent);
    font-size: 0.95rem;
}

/* Galerie: inaktive Bilder für Admin */
.gallery-item-inactive {
    position: relative;
}

.gallery-item-inactive .gallery-item-inner {
    opacity: 0.45;
    border: 2px dashed var(--color-text-muted);
}

.gallery-item-inactive::after {
    content: 'Inaktiv';
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: rgba(192, 57, 43, 0.85);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    letter-spacing: 0.05em;
    z-index: 2;
}

.text-muted {
    color: var(--color-text-muted);
}

/* === FOOTER === */
.site-footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-login {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-border);
    transition: color 0.2s;
}

.footer-login:hover {
    color: var(--color-text-muted);
}

.footer-legal {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.footer-legal a {
    color: var(--color-text-muted);
}

.footer-legal a:hover {
    color: var(--color-accent);
}

.footer-credit {
    margin-top: 0.8rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.03em;
}

.footer-credit a {
    color: var(--color-text-muted);
    transition: color 0.2s;
}

.footer-credit a:hover {
    color: var(--color-accent);
}

/* === LEGAL PAGES === */
.legal-page {
    margin-top: var(--nav-height);
    padding: 4rem 2rem 6rem;
}

.legal-container {
    max-width: 750px;
    margin: 0 auto;
}

.legal-container h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-container h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-container p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.legal-container ul {
    margin: 0.5rem 0 1rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.legal-container a {
    color: var(--color-accent);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .gallery-grid {
        columns: 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(250, 249, 247, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--color-border);
        text-align: center;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 6rem 1.5rem 4rem;
    }

    .hero-small {
        padding: 4rem 1.5rem 2rem;
    }

    .gallery-grid {
        columns: 1;
        column-gap: 1rem;
    }

    .gallery-item {
        margin-bottom: 1rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .lightbox-prev { left: 0.3rem; }
    .lightbox-next { right: 0.3rem; }

    .login-card {
        padding: 2rem;
    }
}

/* === ANIMATIONEN === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item {
    animation: fadeInUp 0.6s ease both;
}

.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.3s; }
.gallery-item:nth-child(5) { animation-delay: 0.15s; }
.gallery-item:nth-child(6) { animation-delay: 0.25s; }

/* === ÜBER MICH === */
.about-page {
    margin-top: var(--nav-height);
    padding: 4rem 2rem 6rem;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-photo {
    flex: 0 0 280px;
}

.about-photo img {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.about-photo-placeholder {
    width: 280px;
    height: 350px;
    background: linear-gradient(135deg, #e8e0d8 0%, #d5cbc0 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.about-photo-placeholder span {
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
}

.about-intro {
    flex: 1;
}

.about-intro h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.about-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.about-divider {
    width: 60px;
    height: 2px;
    background: var(--color-accent);
}

.about-content {
    margin-bottom: 3rem;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Zitat */
.about-quote {
    margin: 3rem 0;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, #f5f0eb 0%, #ebe5dd 100%);
    border-left: 4px solid var(--color-accent);
    border-radius: 0 8px 8px 0;
}

.about-quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 0.8rem;
}

.about-quote cite {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Meilensteine / Timeline */
.about-milestones {
    margin-top: 4rem;
}

.about-milestones h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    padding: 0 0 2rem 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.45rem;
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translateX(-5px);
}

.timeline-year {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 0.3rem;
}

.timeline-text {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.5;
}

/* Admin About */
.about-photo-edit {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.about-photo-current img {
    width: 150px;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

.about-photo-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.textarea-large {
    min-height: 300px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.milestone-row {
    align-items: flex-end;
    margin-bottom: 0.5rem;
}

.milestone-row .btn-delete {
    margin-bottom: 1.2rem;
}

.admin-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.btn-outline {
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.btn-outline:hover {
    background: var(--color-accent);
    color: #fff;
}

.btn-danger {
    background: var(--color-error);
}

.btn-danger:hover {
    background: #a93226;
}

/* Style Chooser */
.style-chooser {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.style-option {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 180px;
    cursor: pointer;
}

.style-option input[type="radio"] {
    display: none;
}

.style-card {
    padding: 1.2rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s;
}

.style-card:hover {
    border-color: var(--color-accent);
}

.style-active .style-card {
    border-color: var(--color-accent);
    background: rgba(184, 134, 11, 0.05);
    box-shadow: 0 0 0 1px var(--color-accent);
}

.style-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.style-card strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.style-card span {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

@media (max-width: 480px) {
    .style-chooser {
        flex-direction: column;
    }
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-accent);
    cursor: pointer;
}

.password-hint {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Responsive About */
@media (max-width: 768px) {
    .about-hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .about-photo {
        flex: none;
    }

    .about-photo img,
    .about-photo-placeholder {
        width: 200px;
        height: 250px;
        margin: 0 auto;
    }

    .about-divider {
        margin: 0 auto;
    }

    .about-quote {
        padding: 1.5rem 2rem;
    }

    .about-quote p {
        font-size: 1.1rem;
    }

    .about-photo-edit {
        flex-direction: column;
    }
}
