/* ===============================
   GLOBAL RESET & BASIS
================================ */

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

html {
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
    background-color: #f9fafb;
    color: #1f2937;
    line-height: 1.6;
}

/* ===============================
   HERO SECTION
================================ */

.wood-hero {
    position: relative;
    min-height: 75vh;

    /* NEUTRALES AUFHELLEN – KEIN BRAUNSTICH */
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.20),
            rgba(0, 0, 0, 0.35)
        ),
        url("images/holzmeister-hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Inhalt im Hero sichtbar halten */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

/* Braune Schriftfarben über dem Bild */
/* Schwarze Umrandung für Text im Hero */
.wood-hero h1,
.wood-hero p {
    color: #F8F4EC; /* helles Weiß/Creme für gute Lesbarkeit */

    text-shadow:
        -1px -1px 0 #000,
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000,
         0px  3px 6px rgba(0,0,0,0.4);
}




/* leichte Textkontur für Lesbarkeit */
.hero-content {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

/* ===============================
   BUTTON DESIGN
================================ */

.btn-wood {
    background: linear-gradient(to right, #a16207, #854d0e);
    color: white;
    border-radius: 0.75rem;
    text-decoration: none;
}

.btn-wood:hover {
    filter: brightness(1.1);
}

/* ===============================
   FORMULAR
================================ */

.form-input {
    background-color: white;
    border: 1px solid #cbd5e1;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    border-color: #a16207;
    box-shadow: 0 0 0 2px rgba(161, 98, 7, 0.4);
}

/* ===============================
   GALERIE HOVERS
================================ */

.group:hover img {
    transform: scale(1.05);
}

/* ===============================
   FOOTER
================================ */

footer {
    background-color: #1f2937;
    color: #e5e7eb;
}

footer a {
    color: #e5e7eb;
    text-decoration: none;
}

footer a:hover {
    color: #fbbf24;
}

/* ===============================
   ANIMATIONEN
================================ */

.animate-fade {
    animation: fadeIn 0.8s ease-in;
}

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

/* ===============================
   RESPONSIVE KLEINIGKEITEN
================================ */

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

    .wood-hero h1 {
        font-size: 2.5rem;
    }

    .wood-hero p {
        font-size: 1.1rem;
    }
}

