/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #2c3e50;
  line-height: 1.6;
  overflow-x: hidden;
}


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

/* Header bleibt dunkel */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
    text-decoration: none;
    cursor: pointer;
}

.shield-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    fill: #d4af37;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: #d4af37;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    background-image: url('Bilder/hero.jpg');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #e6c200, #b28b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #b48c00);
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #e6c200, #c19c00);
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.35);
}

/* Hero Small für Unterseiten */
.hero-small {
    height: 40vh; 
}

/* Features Section - jetzt heller */
.features {
    padding: 100px 0;
    background: rgba(248, 249, 250, 0.7);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #c19c00;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.feature-card {
    background: rgba(26, 26, 46, 0.95);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(35, 35, 77, 0.95);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: #d4af37;
}

.feature-card h3 {
    color: #c19c00;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.feature-card p {
    color: #ffffff;
}

/* Services Section - heller */
.services {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.5);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #c19c00;
    font-weight: 700;
}

.service-package {
    background: rgba(26, 26, 46, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 5px solid #d4af37;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-package:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    background: rgba(35, 35, 77, 0.95);
}

.service-package h3 {
    color: #c19c00;
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.service-package .price {
    margin-left: auto;
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4af37;
}

.service-list {
    list-style: none;
    margin: 20px 0;
}

.service-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #eaedef;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.service-description {
    margin-top: 20px;
    opacity: 0.8;
    font-style: italic;
    color: #fcfcfc;
}

/* Contact Section - heller */
.contact {
    padding: 100px 0;
    background: rgba(248, 249, 250, 0.7);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #c19c00;
    font-weight: 700;
}

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

.contact-info {
   background: rgba(26, 26, 46, 0.95);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-info:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
    display: block;
}

.contact-info h3 {
    color: #c19c00;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info p {
    color: #c4cdd5;
}

.contact-info a {
    color: #cdd3da;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-info a:hover {
    color: #d4af37;
}

/* Footer bleibt dunkel */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    background-color: #1a1a2e;
    color: #ffffff;

}

footer a {
    color: #d4af37;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

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

/* Hero Section für Unterseiten */
.hero-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
}

.hero-section h1 {
    font-size: 2.8rem;
    color: #c19c00;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-section .subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    color: #6c757d;
}

/* Mission & Values - heller */
.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.mission-values > div {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mission-values h2 {
    color: #c19c00;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-values p {
    color: #495057;
}

.values ul {
    list-style: none;
    padding-left: 0;
}

.values li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    color: #495057;
}

.values li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Services Overview - heller */
.services-overview {
    margin-bottom: 80px;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #c19c00;
    font-weight: 700;
}

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

.service-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #d4af37;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-item h3 {
    color: #c19c00;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-item p {
    color: #495057;
}

/* Contact CTA - heller */
.contact-cta {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    margin-bottom: 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-cta h2 {
    color: #c19c00;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-cta p {
    color: #495057;
}

/* Anfrageformular - heller */
#anfrage form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #d4af37;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#anfrage form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #c19c00;
    margin-top: 20px;
}

#anfrage form input,
#anfrage form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 10px;
    transition: border 0.3s ease;
}

#anfrage form input:focus,
#anfrage form textarea:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

#anfrage .cta-button {
    margin-top: 20px;
}

/* Menü-Button für Mobilgeräte */
.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #d4af37;
    cursor: pointer;
    margin-right: 20px;
    z-index: 1001;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background-color: rgba(26, 26, 46, 0.95);
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        border-top: 1px solid #d4af37;
        padding: 20px;
        z-index: 1000;
        animation: slideDown 0.3s ease forwards;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-toggle {
        display: block;
    }

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

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

    .service-package h3 {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-package .price {
        margin-left: 0;
        margin-top: 10px;
    }
}
.legal {
  background-color: #f9f9f9;
  padding: 60px 20px;
  border-radius: 12px;
  color: #2c3e50;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-top: 60px;
  margin-bottom: 60px;
}
