/* Font Imports */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    background-color: #f5f5f5;
    color: #ffffff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header und Navigation */
header {
    background-color: #000000;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 11vw;
    padding-right: 11vw;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 100;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff; /* Standard: Weiß */
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #39ff14; /* Neon-Grün beim Hover */
}

/* Main Content */
main {
    flex: 1 0 auto;
    padding-top: 4rem; /* Entspricht der Höhe des fixierten Headers */
}

/* Hero Section */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100vw;
    left: 0;
    right: 0;
    margin-top: 0;
    background-color: #f5f5f5;  /* Heller Hintergrund */
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    position: relative;
    z-index: 2;  /* Über dem Hintergrundbild */
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;  /* Kein eigener Hintergrund */
}

.hero-image {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 140%;
    object-fit: cover;
    z-index: 1;  /* Unter dem Content */
    opacity: 0.6;  /* Nur das Bild transparent */
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    width: 100%;
    color: #000000;
    opacity: 1 !important;  /* Erzwinge volle Deckkraft */
    text-shadow: none;
    font-weight: 400;  /* Etwas kräftiger */
    position: relative;  /* Eigene Ebene */
    z-index: 3;  /* Über allem anderen */
}

.hero p {
    width: 100%;
    font-size: 1.5rem;
    color: #000000;
    opacity: 1 !important;  /* Erzwinge volle Deckkraft */
    text-shadow: none;
    font-weight: 400;  /* Etwas kräftiger */
    position: relative;  /* Eigene Ebene */
    z-index: 3;  /* Über allem anderen */
}

/* Service Cards */
.services {
    padding: 4rem 2rem;
    background-color: #f5f5f5;  /* Heller Hintergrund wie body */
}

.services .content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 100;
    color: #000000;  /* Schwarz */
}

.services .content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;  /* Schwarz */
    opacity: 1;
}

.content {   
    margin: 0 auto 3rem auto;
    text-align: left;
    width: 100%;
    padding-left: 11vw;
    padding-right: 11vw;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 100;
    color: #000000; /* Schwarz */
}

.content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000; /* Schwarz */
    opacity: 1; /* Volle Deckkraft */
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Maximal 3 Cards pro Zeile */
    gap: 2rem;
    max-width: 80%;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

/* Allgemeine Card Styles für alle Sektionen */
.card {
    background-color: #ffffff;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    transition: all 0.6s ease-out;
    height: 100%;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);  /* Leichter permanenter Schatten */
}

.card:hover {
    transform: translateY(-8px);
    border-color: #39ff14;
    border-width: 0.5px;
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);  /* Stärkerer Schatten beim Hover */
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 100;
    letter-spacing: 0.5px;
    color: #000000;  /* Schwarz */
    font-family: 'Roboto', sans-serif;
    line-height: 1.4;
}

.card p {
    color: #4a4a4a;  /* Dunkles Grau */
    line-height: 1.6;
}

.card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #39ff14;  /* Neon-Grün für Icons beibehalten */
    transition: all 0.6s ease-out;
}

.card:hover i {
    transform: scale(1.1);  /* Icon-Animation beibehalten */
}

/* Parallax Container */
.parallax-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #0a0a0a;
    width: 100%; /* Volle Breite des Containers */
    
}

.parallax-content {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding-left: 11vw;  /* Gleiche Padding wie content */
    padding-right: 11vw; /* Gleiche Padding wie content */
    margin: 0 auto;
}

.parallax-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 100;
    text-align: center;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transition: transform 0.1s ease-out;
    will-change: transform;
    white-space: nowrap; /* Verhindert Umbrüche */
}

.parallax-subtitle {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 100;
    text-align: center;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transition: transform 0.1s ease-out;
    will-change: transform;
    opacity: 0.8;
    white-space: nowrap; /* Verhindert Umbrüche */
}

.parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #ffffff; /* Weißer Hintergrund */
}

.parallax-img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    opacity: 0.9;
    transform: translateY(-25%);
    will-change: transform;
    transition: transform 0.1s ease-out;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .parallax-container {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .parallax-container {
        height: 300px;
    }
}

.eu-flag {
    height: 20px;
    width: auto;
    margin-left: 10px;
    vertical-align: middle;
}

/* Footer */
footer {
    background-color: #000000;
    padding: 2rem;
    flex-shrink: 0;
}

.footer-content {
    padding-left: 11vw;
    padding-right: 11vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left a {
    color: #ffffff;
    text-decoration: none;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-right i {
    font-size: 1.2rem;
    color: #ffffff;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    background-color: #0a0a0a;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3x2 Grid für 6 Cards */
    gap: 2rem;
    max-width: 80%;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

.feature-card {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.6s ease-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Initialer subtiler Rand */
}

.feature-card:hover {
    border-color: #39ff14; /* Neon Grün beim Hover */
    transform: translateY(-5px); /* Leichte Anhebung */
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 100;
    letter-spacing: 0.5px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
    line-height: 1.4;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover h3 {
    color: #39ff14; /* Neon Grün */
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.3); /* Neon Glow Effekt */
}

.feature-card li {
    color: #ffffff;
    opacity: 0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 100;
    position: relative;
    padding-left: 1.2rem;
    transform: translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #39ff14;
    transition: all 0.3s ease;
}

.feature-card:hover li:before {
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.5); /* Stärkerer Glow für Bullet Points */
}

/* Responsive Anpassungen */
@media (max-width: 1200px) {
    .feature-cards {
        grid-template-columns: repeat(2, 1fr); /* 2 Spalten auf mittleren Bildschirmen */
    }
}

@media (max-width: 768px) {
    .feature-cards {
        grid-template-columns: 1fr; /* 1 Spalte auf mobilen Geräten */
    }
}

/* Entferne mögliche Vererbung von Transparenz */
.hero * {
    opacity: 1;
}

.preise {
    background: #fff;   /* Weißer Hintergrund */
    padding: 4rem 2rem;
}

.preise-content {
    /* max-width: 1100px; */
    padding-left: 11vw;
    padding-right: 11vw;
    margin: 0 auto;
    text-align: left;
}

.preise-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #222;
}

.preise-content h3 {
    font-size: 1.4rem;
    color: #39b86b;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.preise-content p {
    color: #333;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
}

.preise-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.preis-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 2rem 1.5rem;
    min-width: 250px;
    max-width: 320px;
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e0ffe6;
    transition: transform 0.3s, box-shadow 0.3s;
}

.preis-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px rgba(57,255,20,0.10);
    border-color: #39ff14;
}

.preis-card h3 {
    color: #222;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    font-weight: 400;
}

.preis-card p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.preis-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
}

.preis-card li {
    color: #39b86b;
    font-size: 0.98rem;
    margin-bottom: 0.4rem;
}

.preis-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #222;
    margin-top: auto;
    background: #e0ffe6;
    border-radius: 6px;
    padding: 0.5rem 1.2rem;
    display: inline-block;
}
