/* Grundlayout */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f3f3ed;
    color: #333;
}

/* Header */
header {
    background: linear-gradient(90deg, #2f4f2f, #3f5f3f);
    padding: 20px;
    text-align: center;
    color: white;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

/* Navigation */
nav {
    margin-top: 15px;
}

nav a {
    color: #e6f0e6;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Aktiver Menüpunkt */
nav a.active {
    color: #cce0cc;
    text-decoration: underline;
}

/* Seiteninhalt */
section {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 15px;
}

/* Buchungsbutton – Hirschgeweih-Design */
.booking-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #2e5c2e; /* Waldgrün */
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hirschgeweih-Symbol links vom Text */
.booking-button::before {
    content: "🦌";
    font-size: 1.3em;
    line-height: 1;
}

/* Hover-Effekt */
.booking-button:hover {
    background-color: #3f7a3f;
    transform: translateY(-2px);
}

/* Buchungsbutton – Hirschgeweih-Design (braunes SVG) */
.booking-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #2e5c2e; /* Waldgrün */
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hirschgeweih-Symbol links vom Text */
.booking-button::before {
    content: "";
    width: 26px;
    height: 26px;
    background-image: url("hirschgeweih.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Hover-Effekt */
.booking-button:hover {
    background-color: #3f7a3f;
    transform: translateY(-2px);
}/* Mini-Harz-Erlebnis-Sektion */
.harz-mini {
    margin-top: 40px;
    padding: 20px;
    background: #f7f7f2;
    border-radius: 10px;
}

.harz-mini h3 {
    margin-top: 0;
    color: #2e5c2e;
}

.harz-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.harz-item {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.harz-item:hover {
    transform: translateY(-3px);
}

.harz-item h4 {
    margin-top: 0;
    color: #3f7a3f;
}

