@font-face {
    font-family: "Open Sans";
    src: url("content/font/open-sans/OpenSans-VariableFont_wdth,wght.ttf") format("truetype");
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans";
    src: url("content/font/open-sans/OpenSans-Italic-VariableFont_wdth,wght.ttf") format("truetype");
    font-weight: 300 800;
    font-style: italic;
    font-display: swap;
}

:root {
    --ink: #231f20;
    --forest: #2e7d32;
    --leaf: #39b54a;
    --mist: #f2f5f0;
    --card: #ffffff;
}

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

body {
    font-family: "Open Sans", sans-serif;
    color: var(--ink);
    background: linear-gradient(140deg, #ffffff 0%, #f7f8f2 40%, #e7efe5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.impressum-page {
    padding: 40px 20px;
    text-align: center;
}

.page-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(30% 30% at 15% 10%, rgba(57, 181, 74, 0.12), transparent 60%),
        radial-gradient(40% 40% at 85% 15%, rgba(46, 125, 50, 0.12), transparent 55%),
        radial-gradient(45% 45% at 10% 85%, rgba(57, 181, 74, 0.1), transparent 60%),
        radial-gradient(50% 50% at 90% 80%, rgba(46, 125, 50, 0.08), transparent 60%);
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
    width: min(92vw, 680px);
    text-align: center;
    padding: 40px 20px 50px;
}

.eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest);
    font-weight: 700;
    margin-bottom: 14px;
}

.hero-title {
    font-family: "Open Sans", sans-serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-copy {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 26px;
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 28px;
}

.trust-pill {
    border: 1px solid rgba(35, 31, 32, 0.1);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    background: var(--mist);
}

.logo-container {
    margin-bottom: 18px;
}

.logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 18px rgba(35, 31, 32, 0.18));
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
}

.logo:hover {
    transform: translateY(-6px) scale(1.03);
    filter: drop-shadow(0 16px 26px rgba(35, 31, 32, 0.22));
}

.business-card {
    background: var(--card);
    border-radius: 14px;
    padding: 38px 30px;
    box-shadow: 0 25px 45px rgba(35, 31, 32, 0.12);
    border-left: 6px solid var(--leaf);
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.business-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 20% 0%, rgba(57, 181, 74, 0.08), transparent 40%);
    pointer-events: none;
}

.company-name {
    font-family: "Open Sans", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 6px;
}

.sub-tagline {
    color: var(--forest);
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info {
    border-top: 1px solid #e5e8e2;
    padding-top: 18px;
    display: grid;
    gap: 8px;
    justify-items: center;
}

.contact-info a {
    color: var(--ink);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--forest);
    text-decoration: underline;
}

.label {
    color: var(--leaf);
    font-weight: 700;
    margin-right: 6px;
}

.business-details {
    border-top: 1px solid #e1e4df;
    padding-top: 12px;
    margin-top: 12px;
    font-size: 0.95rem;
    opacity: 0.85;
}

.contact-btn {
    background: var(--forest);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 1.1rem;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.35);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(46, 125, 50, 0.42);
}

.response-note {
    margin-top: 8px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.impressum-link,
.back-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(35, 31, 32, 0.35);
    padding-bottom: 3px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.impressum-link:hover,
.back-link:hover {
    color: var(--forest);
    border-color: var(--forest);
}

.reveal {
    animation: fadeUp 0.8s ease both;
}

.reveal-delay-1 {
    animation-delay: 0.1s;
}

.reveal-delay-2 {
    animation-delay: 0.2s;
}

.reveal-delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .business-card {
        padding: 28px 22px;
    }

    .company-name {
        font-size: 2rem;
    }

    .logo {
        max-width: 260px;
    }
}

/* Impressum */
.card {
    position: relative;
    z-index: 1;
    width: min(90vw, 680px);
    background: var(--card);
    border-radius: 14px;
    box-shadow: 0 20px 38px rgba(35, 31, 32, 0.12);
    padding: 32px;
    border-left: 6px solid var(--forest);
}

.card h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.card h2 {
    font-size: 1.1rem;
    margin: 18px 0 8px;
    color: var(--forest);
    font-weight: 700;
}

.card p {
    margin-bottom: 6px;
    line-height: 1.6;
}
