/* main.css */

/* Grundlegende Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ccc;
    background-color: #121212;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: top 0.3s;
}

.navbar-brand img {
    height: 50px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #007bff;
}

.nav-link {
    color: white;
}


.nav-item .btn-primary {
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 25px;
}

.nav-item {
    margin: 10px;
}

/* Hero-Section mit Hintergrundbild */
#hero {
    position: relative;
    background: url('assets/img/background.webp') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 100px 20px;
}

/* Hintergrundbild bleibt sichtbar, aber dunkler für besseren Kontrast */
#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* 50% dunkler für bessere Lesbarkeit */
}

/* Hero-Inhalt über dem Hintergrund */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-text {
    font-size: 1.4rem;
    font-weight: 500;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

/* Features Section */
#features {
    background-color: #1a1a1a;
}

#features h2 {
    color: #fff;
}

#features p {
    color: #ccc;
}

#features .feature-icon {
    margin-bottom: 15px;
}

.feature-img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.5);
}

/* How it Works Section */
#how-it-works {
    background-color: #2a2a2a;
}

#how-it-works h2 {
    color: #fff;
}

#how-it-works p {
    color: #ddd;
}

#how-it-works .step {
    margin-bottom: 30px;
}

/* Technical Details Section */
#technical {
    background-color: #1a1a1a;
}

#technical h2 {
    color: #fff;
}

#technical p {
    color: #ccc;
}

/* About Section */
#about {
    background-color: #333;
}

#about h2,
#about p {
    color: #ddd;
}

/* FAQ Section */
#faq {
    background-color: #2a2a2a;
}

#faq h2 {
    color: #fff;
}

/* Contact Section */
#contact {
    background-color: #1a1a1a;
}

#contact h2 {
    color: #fff;
}

#contact form {
    background: #1f1f1f;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    color: #ccc;
}

#contact .form-control {
    background-color: #333;
    ;
    border: 1px solid #444;
    color: #fff;
}

#contact .form-control:focus {
    background-color: #444;
    border-color: #007bff;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ccc;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }

    #hero p.lead {
        font-size: 1.25rem;
    }
}