/* GRUNDSTIL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #eee;
    padding: 20px;
}

h1 {
    color: #f0b000;
    font-size: 32px;
    letter-spacing: 1px;
}

h2 {
    font-size: 20px;
    font-weight: normal;
    color: #bbb;
}

h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #f0b000;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

ul {
    list-style: square;
}


/* NAVIGATION */
nav {
    background: #000;
    padding: 10px;
    text-align: center;
}

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

nav a:hover {
    color: white;
}


/* CONTAINER */
.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}


/* HERO */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
}

.hero small {
    min-height: 40vh;
}

.hero-start {
    background-image: url("Bilder/hero-start.jpg");
}

.hero-leistungen {
    background-image: url("Bilder/hero-leistung.jpg");
}

.hero-kontakt {
    background-image: url("Bilder/hero-kontakt.jpg");
}

.hero-content {
    background: rgba(0,0,0,0.6);
    border: 2px solid #f0b000;
    max-width: 700px;
    padding: 30px 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero-content h2 {
    line-height: 1.4;
    letter-spacing: 0.5px;
}


/* BOXEN */
.box,
.kontakt,
.leistung {
    background: #1c1c1c;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #f0b000;
    border-radius: 6px;
}

.kontakt-box {
    background: #1c1c1c;
    padding: 25px;
    border-left: 4px solid #f0b000;
    max-width: 500px;
}

.kontakt-box a {
    color: #f0b000;
    text-decoration: none;
    font-size: 18px;
}

.kontakt-box a:hover {
    text-decoration: underline;
}


/* BUTTON */
.button {
    display: inline-block;
    margin: 10px 10px 0 0;
    padding: 12px 18px;
    background: #f0b000;
    color: #111;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
    background: #ffd24d;
    transform: scale(1.05);
}




/* GALERIE */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

/* Einzelnes Feld */
.gallery-item {
    overflow: hidden;
    border-radius: 6px;
    border: 2px solid #f0b000;
}

/* Bild */
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;  /*Bildkasten füllt komplett*/
    object-position: 50% 40%;
    display: block;
    transition: transform 0.3s ease;
}



/* Hover */
.gallery-item img:hover {
    transform: scale(1.03);
}



/* FOOTER */
footer {
    background: #000;
    color: #aaa;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer a {
    color: #f0b000;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}



/* REPONSIVE */
@media (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }

    .gallery-item {
        height: 220px;
    }

    .hero-content h2 {
        font-size: 16px;
    }
    
}





