:root {
    --primary: #2c3e50;
    --accent: #27ae60;
    /* Ein freundliches Grün passend zur Waldrandlage */
    --light: #f9f9f9;
    --text: #333;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    margin: 0;
    color: var(--text);
    background: #fff;
}

.www_4work_info {
    max-width: 800px;
    width: 100%;
    background-color: #f9f9f91A;
    border-radius: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin: 0% auto;
}

.www_4work_info p:last-of-type {
    font-size: 12px;
}

header {
    background: var(--primary);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

h1 {
    margin: 0;
    font-size: 2.2rem;
}

h2 {
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
    margin-top: 40px;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

/* Galerie */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery img:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Lightbox */
#overlay {
    display: none;
    position: fixed;
    top: 1rem;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-top: 1rem;
}

#overlay img {
    max-width: 90%;
    max-height: 90%;
    border: 3px solid white;
    border-radius: 4px;
}

/* Eckdaten-Box */
.highlight-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: var(--light);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid var(--accent);
    margin-top: 1rem;
}

.highlight-box div {
    font-size: 1.1rem;
}

.highlight-box strong {
    color: var(--primary);
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Kontaktformular */
.contact-section {
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-top: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-form input,
.contact-form textarea {
    font-family: "Helvetica Neue", Arial, sans-serif;
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: none;
    box-sizing: border-box;
}

.btn-submit {
    background: var(--accent);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
}

/* Downloads */

.downloads {
    margin: 40px 0;
    text-align: center;
}

.downloads h2 {
    text-align: left;
}


.btn-dl {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    font-weight: bold;
}

.price-tag {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: bold;
    margin-top: 10px;
}

.contact-section h2 {
    color: white;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.6rem;
    }
}