/* Reset & Basis */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #111;
    background-color: #fff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.7;
}

/* Zentrales Layout: Verhindert Kleben an den Rändern und zentriert */
header, main, .footer-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Header Styling */
header {
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    list-style: none;
}

.social-links img {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
}

.site-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.site-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: #444;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.main-nav a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    padding-bottom: 2px;
}

.main-nav a.active {
    border-bottom: 2px solid #111;
}

/* Main Content */
main {
    flex: 1;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.content-block {
    margin-bottom: 2rem;
}

.content-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #111;
}

.content-block h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Hero Section (Startseite) */
.hero-section {
    text-align: center;
}

.hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.hero-image-wrapper img {
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3; /* Seitenverhältnis des Fotos (2803x4204 px) */
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 2px;
}

/* Video-Reel: lädt erst beim Klick */
.reel-section {
    margin-top: 2rem;
}

.video-reel {
    position: relative;
    max-width: 700px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    background-color: #000;
    overflow: hidden;
    border-radius: 2px;
}

.video-reel video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background-color: #000;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, transform 0.2s;
}

.play-button:hover {
    background-color: #fff;
    transform: translate(-50%, -50%) scale(1.05);
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #111;
    margin-left: 4px;
}

.image-caption {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.75rem;
}

/* Footer Styling */
footer {
    background-color: #fafafa;
    border-top: 1px solid #eee;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    font-size: 0.85rem;
    color: #555;
}

@media (min-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-info h3 {
    color: #111;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-info a {
    text-decoration: underline;
}

.copyright-notice p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
