* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    background: #000;
}

.background {
    position: fixed;
    inset: 0;
    background: url("Bilder/profilbild.jpg") center/cover no-repeat;
    filter: blur(12px);
    transform: scale(1.1);
    animation: bgMove 20s ease-in-out infinite alternate;
    z-index: -1;
}
@keyframes bgMove {
    0% { transform: scale(1.1) translate(0,0); }
    100% { transform: scale(1.2) translate(-20px,-20px); }
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    text-align: center;
    margin: 60px 0 40px;
    letter-spacing: 0.05em;
}

.container { display: flex; align-items: center; gap: 40px; padding: 20px 10%; }
.left, .right { flex: 1; }
.left img { max-width: 280px; width: 100%; border-radius: 50%; display: block; margin: 0 auto; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.contact { margin-top: 28px; text-align: center; font-family: 'Playfair Display', serif; }
.contact h3 { font-size: 1.15rem; font-weight: 600; color: #e6e6e6; margin-bottom: 10px; text-transform: uppercase; }
.contact p { font-size: 1.2rem; color: #fff; }

.right h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 20px; }
.right p { font-size: 1rem; line-height: 1.7; color: #f0f0f0; }

.content-section { display: flex; gap: 40px; padding: 60px 10%; flex-wrap: wrap; align-items: flex-start; }
.statement { flex: 1 1 45%; font-family: 'Playfair Display', serif; color: #fff; line-height: 1.7; }
.statement h2 { font-size: 2rem; margin-bottom: 20px; text-align: center; }
.statement p { font-size: 1.1rem; margin-bottom: 16px; }
.statement .author { font-size: 1rem; font-weight: 500; margin-top: 20px; text-align: right; }

.gallery-section { flex: 1 1 45%; text-align: center; }
.gallery-section h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 30px; }
.gallery { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.gallery img {
    width: 260px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.gallery img:not(.fullscreen):hover { transform: scale(1.05); }

.gallery-img.fullscreen {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90vw;
    height: 85vh;
    transform: translate(-50%, -50%);
    object-fit: contain;
    border-radius: 0;
    z-index: 1001;
    box-shadow: 0 30px 90px rgba(0,0,0,0.85);
    cursor: zoom-out;
    opacity: 1;
    transition: none;
}

#lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    display: none;
}
#lightbox-overlay.active { display: block; }

.banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: rgba(0,0,0,0.88);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1010;
}
.banner span {
    display: inline-block;
    white-space: nowrap;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    transform: translateX(100%);
}

@keyframes scrollBanner {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@media (max-width: 900px) {
    .container { flex-direction: column; text-align: center; padding: 60px 6%; }
    .right h2 { font-size: 1.8rem; }
    .content-section { flex-direction: column; padding: 40px 5%; gap: 30px; }
    .statement, .gallery-section { width: 100%; }
}
@media (max-width: 600px) {
    .site-title { font-size: 2rem; }
    .statement h2 { font-size: 1.6rem; }
    .statement p { font-size: 1rem; }
    .banner span { font-size: 1.05rem; }
}