/* ============================================
   STORKLAND.EU – STYLES
============================================ */

@font-face {
    font-family: 'Freundschaft';
    src: url('../fonts/freundschafttt-regular-webfont.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* Besuchte Links – alle Browser */
a:visited { color: #C62828 !important; }

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    height: 100%;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

body {
    width: 100%;
    background: #000;
    font-family: 'Freundschaft', Georgia, serif;
}

/* ============================================
   BILD-SECTION
============================================ */
.bild-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    scroll-snap-align: start;
}

/* ============================================
   VIDEO SECTION
============================================ */
.video-section {
    overflow: hidden;
}

.video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.video-section .mitte {
    z-index: 2;
}










/* ============================================
   TITEL + TEXT (auf Video)
============================================ */
.mitte {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.site-title {
    font-family: 'Freundschaft', Georgia, serif;
    font-size: clamp(2rem, 6vw, 6rem);
    font-weight: normal;
    color: #fff;
    letter-spacing: 0.08em;
    margin-bottom: clamp(24px, 4vw, 48px);
}

.trennlinie {
    width: clamp(40px, 6vw, 80px);
    height: 1px;
    background: rgba(255,255,255,0.5);
    margin: 0 auto clamp(24px, 4vw, 48px);
}

.text-de {
    font-family: 'Freundschaft', Georgia, serif;
    font-size: clamp(0.9rem, 2vw, 1.6rem);
    font-weight: normal;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.02em;
    margin-bottom: clamp(8px, 1.2vw, 16px);
}

.text-en {
    font-family: 'Freundschaft', Georgia, serif;
    font-size: clamp(0.75rem, 1.4vw, 1.1rem);
    font-style: italic;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.02em;
}

/* ============================================
   BILDUNTERSCHRIFT
============================================ */
.bild-caption {
    position: absolute;
    bottom: clamp(16px, 2.5vw, 32px);
    right: clamp(16px, 2.5vw, 32px);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1rem, 1.8vw, 1.6rem);
    font-weight: normal;
    color: rgba(255,255,255,0.85);
    text-align: right;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

/* ============================================
   ABOUT BUTTON
============================================ */
.about-btn {
    position: fixed;
    top: clamp(16px, 2.5vw, 32px);
    right: clamp(16px, 2.5vw, 32px);
    z-index: 500;
    background: none;
    border: none;
    font-family: 'Freundschaft', Georgia, serif;
    font-size: clamp(0.8rem, 1.2vw, 1.1rem);
    font-weight: normal;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: color 0.2s;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.about-btn:hover { color: #fff; }

/* ============================================
   ABOUT PANEL
============================================ */
.about-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(480px, 92vw);
    height: 100vh;
    background: rgba(0,0,0,0.96);
    z-index: 800;
    overflow-y: auto;
    transition: right 0.4s ease;
    padding: clamp(32px, 5vw, 60px) clamp(24px, 4vw, 48px) 120px;
    border-left: 1px solid rgba(255,255,255,0.08);
}
.about-panel.aktiv { right: 0; }

.about-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}
.about-close:hover { color: #fff; }

.about-inhalt { margin-top: 16px; }

.about-foto { margin-bottom: clamp(20px, 3vw, 32px); }
.about-foto img { width: 100%; height: auto; display: block; }
.about-foto figcaption {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
    text-align: right;
    margin-top: 4px;
    font-style: italic;
}

.about-text h2 {
    font-family: 'Freundschaft', Georgia, serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: normal;
    color: #fff;
    letter-spacing: 0.06em;
    margin-bottom: clamp(16px, 2vw, 24px);
}
.about-text p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 12px;
}
.about-text p em { font-style: italic; }

.about-impressum {
    margin-top: clamp(28px, 4vw, 40px);
    padding-top: clamp(20px, 3vw, 28px);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.about-impressum h3 {
    font-family: 'Freundschaft', Georgia, serif;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    font-weight: normal;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}
.about-impressum p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(0.75rem, 0.9vw, 0.85rem);
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 8px;
}
.about-impressum a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: color 0.2s;
}
.about-impressum a:hover { color: #fff; }

.about-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 700;
}
.about-overlay.aktiv { display: block; }

.zentral-btn {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    width: clamp(60px, 8vw, 90px);
    height: clamp(60px, 8vw, 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: rgba(255,255,255,0.9);
    cursor: pointer;
    transition: opacity 0.6s ease, background 0.2s;
    opacity: 1;
}
.zentral-btn:hover {
    background: rgba(255,255,255,0.22);
}

/* ============================================
   SPRACHUMSCHALTER
============================================ */
.lang-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 6px;
    margin-bottom: clamp(16px, 2.5vw, 24px);
    padding-bottom: clamp(12px, 2vw, 18px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lang-btn {
    background: none;
    border: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    cursor: pointer;
    padding: 2px 4px;
    transition: color 0.2s;
    letter-spacing: 0.04em;
}
.lang-btn:hover {
    color: rgba(255,255,255,0.8);
}
.lang-btn.aktiv {
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
