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

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    background-color: #050608;
    color: #f5f5f5;
}

/* HEADER */

.site-header {
    background-color: #f5f5f5;
    color: #111111;
    border-bottom: 1px solid #e0e0e0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
}

.site-title {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 26px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

.header-side {
    font-size: 15px;
}

.header-side-left {
    text-align: left;
}

.header-side-right {
    text-align: right;
}

.header-link {
    color: #111111;
    text-decoration: none;
    font-weight: 500;
}

.header-link:hover {
    text-decoration: underline;
}

/* HERO */

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.25)
    );
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 120px;
}

.hero h1 {
    font-size: 3.1rem;
    margin: 0 0 0.3em;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 0.7em;
}

.hero-content p {
    margin: 0 0 0.3em;
    font-size: 1rem;
}

/* SECTIONS */

main {
    background: radial-gradient(circle at top, #12151b 0%, #050608 55%, #000000 100%);
}

.section-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 20px;
}

.partners {
    background-color: #0e1116;
    border-top: 1px solid #1d222b;
    border-bottom: 1px solid #1d222b;
    text-align: center;
    font-size: 0.95rem;
}

.partners strong {
    font-weight: 600;
}

/* CONTENT CARD */

.content-section {
    color: #f5f5f5;
}

.info-card {
    background: #10131a;
    border-radius: 10px;
    border: 1px solid #222733;
    padding: 28px 22px 30px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

.info-card h2 {
    margin-top: 0;
    margin-bottom: 0.6em;
    font-size: 1.6rem;
}

.info-card h3 {
    margin-top: 1.4em;
    margin-bottom: 0.4em;
    font-size: 1.25rem;
}

.info-card h4 {
    margin-top: 1.1em;
    margin-bottom: 0.2em;
    font-size: 1.05rem;
}

.info-card p {
    line-height: 1.55;
    margin-top: 0.3em;
    margin-bottom: 0.4em;
}

.info-card ul {
    padding-left: 1.2em;
    margin-top: 0.3em;
}

/* FORE/AFTER IMAGE */

#forefter h2 {
    text-align: center;
    margin-bottom: 0.8em;
}

.foreafter-image {
    display: block;
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid #222733;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.65);
    margin: 0 auto;
}

/* CONTACT */

#kontakt h2 {
    margin-top: 0;
}

#kontakt a {
    color: #e0e0ff;
    text-decoration: none;
}

#kontakt a:hover {
    text-decoration: underline;
}

 copyright {
    opacity: 0.75;
    font-size: 0.9rem;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .hero {
        min-height: 65vh;
    }

    .hero-content {
        padding-top: 70px;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.35rem;
    }
}

@media (max-width: 700px) {
    .header-inner {
        grid-template-columns: auto;
        justify-items: center;
        row-gap: 6px;
    }

    .header-side-left,
    .header-side-right {
        font-size: 14px;
    }

    .site-title {
        font-size: 22px;
    }

    .hero-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .info-card {
        padding: 22px 18px 26px;
    }
}
