/* Basis-Layout */
html {
    scroll-behavior: smooth;
}

body {
    background: url("background.jpg") no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    padding-top: 67px;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #1e1e1e; /* Hintergrund bleibt sichtbar */
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #bfa75c; /* Goldfarbener Trennstreifen */
}


nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #005bb5;
}

/* Hero-Bereich */
.hero {
	background: linear-gradient(135deg, #806e29, #a68f4e);
    color: white;
    padding: 100px 20px;
    text-align: center;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hero-button {
    display: inline-block;
    background-color: white;
    color: #2563eb;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background-color: #f1f5f9;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #806e29;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: background 0.3s, color 0.3s, border 0.3s;
}

.cta-button:hover {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1; /* Sanftes, dezentes Erscheinungsbild */
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) scale(1);
    }
    25% {
        transform: translateY(-15px) scale(1.02);
    }
    50% {
        transform: translateY(-30px) scale(1.03);
    }
    75% {
        transform: translateY(-15px) scale(1.02);
    }
    100% {
        transform: translateY(0px) scale(1);
    }
}


/* Hauptbereiche */
section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

/* Leistungen */
.leistungen-container a {
    display: block;
    text-decoration: none;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    color: #4d4732;
    border: 1px solid transparent;
    margin-bottom: 10px;
}

.leistungen-container a:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
    border-color: #0073e6;
}

.leistungen-container a h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.25em;
    color: #806e29;
}

.leistungen-container a p {
    margin: 0;
    color: #444;
}


/* Kontaktformular */
form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.07);
}

form label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1em;
    resize: vertical;
}

form button {
    margin-top: 25px;
    padding: 12px 24px;
    background-color: #806e29; /* Gold-Braun */
    color: white; /* Weißer Text */
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.form-button:hover {
    background-color: white;
    color: #806e29;
    border: 2px solid #806e29; /* Rahmen bleibt gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.status {
    margin-top: 15px;
    font-style: italic;
}

/* Footer */
footer {
    background: #1e1e1e;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    font-size: 0.95em;
}
.back-button {
    display: inline-block;
    margin: 10px 0 20px 20px;
    padding: 8px 16px;
    background: #806e29;       /* Gold-Braun */
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    border: 2px solid #806e29; /* Rahmen in Gold */
    transition: all 0.3s ease;
}

.back-button:hover {
    background: white;         /* Weißer Hintergrund beim Hover */
    color: #806e29;            /* Gold-Braune Schrift */
    border: 2px solid #806e29; /* Rahmen bleibt Gold */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.content-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 60px auto;
}
.blue-button {
  display: inline-block;
  background-color: #806e29; 
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.blue-button:hover {
  background-color: #1c54b2;
  cursor: pointer;
}