/* FONT */
@font-face {
    font-family: 'Mako';
    src: url('mako.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

/* RESET */
body {
    margin: 0;
    font-family: 'Mako', sans-serif;
    background: #FFFEFE url("hg.jpg") no-repeat bottom center;
    background-size: cover;
    min-height: 100vh;
}

a {
    color: #e15c17;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #E97F02;
    text-decoration: underline;
}

/* HEADER */
.header {
    width: 100%;
}

.header-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(to top, rgba(255,255,255,0.85) 0%, transparent 80%), url("1.jpg") center center / cover no-repeat;
    min-height: 160px;
    display: flex;
    align-items: flex-end;
}

/* MAIN */
.main {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px 20px 20px;
    background-color: rgba(255, 255, 255, 0.75);
}

/* CONTENT LAYOUT */
.content {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* IMAGE */
.image img {
    width: 100%;
    border-radius: 10px;
}

/* TEXT */
.text h1 {
    color: #e15c17;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.text h2 {
    color: #E97F02;
    font-weight: 300;
}

.text p {
    line-height: 1.5;
}

.text a {
    color: #e15c17;
    text-decoration: none;
    transition: color 0.2s;
}

.text a:hover {
    color: #E97F02;
    text-decoration: underline;
}

/* HERO */
.hero {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #fff;
}

.hero-overlay h1 {
    margin: 0 0 6px 0;
    font-size: 1.6em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
}

.hero-overlay p {
    margin: 0 0 18px 0;
    font-size: 1em;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background-color: #e15c17;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 0.95em;
    text-decoration: none !important;
    align-self: flex-start;
    transition: background-color 0.2s;
}

.btn:hover {
    background-color: #E97F02;
}

/* FEATURES */
.features {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.feature {
    flex: 1;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(225, 92, 23, 0.2);
    border-radius: 8px;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.feature-icon {
    font-size: 1.6em;
    color: #e15c17;
    margin-bottom: 4px;
}

.feature strong {
    font-size: 0.95em;
    color: #333;
}

.feature span {
    font-size: 0.82em;
    color: #666;
    line-height: 1.3;
}

/* BESCHREIBUNG */
.description {
    margin-top: 28px;
    line-height: 1.7;
    color: #333;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* HINWEIS */
.notice {
    margin-top: 24px;
    padding: 16px 24px;
    background: rgba(225, 92, 23, 0.08);
    border-left: 3px solid #e15c17;
    border-radius: 4px;
    font-size: 0.92em;
    line-height: 1.6;
    color: #444;
}

/* TEASER */
.teaser {
    margin-top: 20px;
    text-align: center;
    font-size: 0.92em;
    color: #555;
}

/* FOOTER */
.footer {
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #e15c17;
    text-align: center;
    font-size: 13px;
    color: #333;
}

.footer-links {
    margin-top: 10px;
}

.footer a {
    color: #e15c17;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.2s;
}

.footer a:hover {
    color: #E97F02;
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
    }

    .header-inner {
        justify-content: center;
    }

    .hero img {
        height: 260px;
    }

    .hero-overlay h1 {
        font-size: 1.2em;
    }

    .features {
        flex-direction: column;
    }

    .btn {
        align-self: center;
    }
}
