* { 
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   }

body { 
   font-family: 'Arial', sans-serif;
   line-height: 1.6; color: #333;
   }
.container { 
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      }

/* Header mit Bild */
header {
   background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('2026_images/index_hero_dresden01.jpg') center/cover; 
   height: 70vh;
   min-height: 500px;
   display: flex;
   align-items: center;
   color: white;
   text-align: center; }
         
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero p { font-size: 1.3rem; max-width: 600px; margin: 0 auto 2rem; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
.cta-button { background: #d4a574; color: white; padding: 1rem 2rem; font-size: 1.2rem; 
              border: none; border-radius: 5px; text-decoration: none; display: inline-block; 
              transition: background 0.3s, transform 0.3s; cursor: pointer; }
.cta-button:hover { background: #b5895e; transform: scale(1.05); }

/* Navigation */
nav { background: #660000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; }
nav ul { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; }
nav li { margin: 0 1rem; }
nav a { display: block; padding: 1rem 0; text-decoration: none; color: #E0E0E0; font-weight: bold; }
.burger { display: none; flex-direction: column; cursor: pointer; padding: 1rem; }
.burger span { width: 25px; height: 3px; background: #f8f8f8; margin: 3px 0; transition: 0.3s; }


/* Services */
.services { padding: 4rem 0; background: #f8f8f8; }
.services h2 { text-align: center; margin-bottom: 3rem; font-size: 2.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.service-card { background: white; padding: 2rem; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); 
                text-align: center; transition: transform 0.3s; }
.service-card:hover { transform: translateY(-10px); }
.service-card h3 { color: #d4a574; margin-bottom: 1rem; }

/* Kontakt */
.contact { padding: 4rem 0; background: white; text-align: center; }
.contact h2 { margin-bottom: 1rem; }
.contact p { margin-bottom: 2rem; font-size: 1.1rem; }
.contact form { max-width: 500px; margin: 2rem auto; display: grid; gap: 1rem; }
.contact input, .contact textarea, .contact select { padding: 1rem; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; }
.contact button { background: #d4a574; color: white; padding: 1rem; border: none; border-radius: 5px; font-size: 1.1rem; cursor: pointer; transition: background 0.3s; }
.contact button:hover { background: #b5895e; }
.contact-info { margin-top: 2rem; font-size: 1.1rem; }

.contact-form input:invalid, .contact-form select:invalid {
    border-color: #e74c3c;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 5px rgba(212, 165, 116, 0.3);
}

.privacy-notice {
    max-width: 500px; 
    margin: 1rem auto; 
    text-align: left; 
    font-size: 0.9rem; 
    color: #666;
}
.privacy-notice a {
    color: #d4a574;
}


/* Footer */
footer { background: #333; color: white; text-align: center; padding: 2rem 0; }
footer a { color: #ccc; text-decoration: none; }

.service-icon {
    width: 100px; 
    height: 100px; 
    margin: 0 auto 1.5rem; 
    display: block; 
    border-radius: 50%; 
    object-fit: cover; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.5;
}

.gallery-item {
    transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.gallery-item img {
    transition: transform 0.3s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
    .burger { display: flex; }
    nav ul { display: none; flex-direction: column; width: 100%; background: #660000; position: absolute; top: 100%; left: 0; right: 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
    nav ul.active { display: flex;}
    nav li { margin: 0; border-bottom: 1px solid #eee; width: 100%; text-align: center; }
    header { height: 60vh; min-height: 400px; }
}
