body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #212529;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dark-mode {
    background-color: #121212;
    color: #ffffff;
}

.hero-section {
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,1)), url('https://source.unsplash.com/1600x900/?technology,screen') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Einheitliches Button-Design */
.btn-custom {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    display: inline-block;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

/* Helles Design */
.btn-primary {
    background-color: #d90429;
    border: none;
    color: white;
    box-shadow: 0 4px 10px rgba(217, 4, 41, 0.3);
}

.btn-primary:hover {
    background-color: #a0001c;
    box-shadow: 0 6px 15px rgba(217, 4, 41, 0.5);
}

/* Dunkles Design */
.dark-mode .btn-primary {
    background-color: #ff4757;
}

.dark-mode .btn-primary:hover {
    background-color: #e84142;
}

/* CTA in der Mitte */
.large-cta {
    font-size: 2rem;
    padding: 20px 40px;
    width: 70%;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    text-align: center;
    animation: fadeInUp 1s ease-in-out;
}

/* Buttons mit Animationseffekt */
.btn-animate::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease-in-out;
}

.btn-animate:hover::before {
    left: 100%;
}

/* Animierte Funktionsliste */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    text-align: center;
    margin-top: 30px;
}

.feature-item {
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    background: rgba(217, 4, 41, 0.05);
}

.feature-item:hover {
    transform: scale(1.05);
}
.pricing-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.pricing-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.popular {
    border: 3px solid #d90429;
}

.dark-mode .pricing-box {
    background: #222;
    color: white;
}

.dark-mode .pricing-box:hover {
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
}

.pricing-list {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
}

.pricing-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-mode .pricing-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary, .btn-danger {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    display: block;
    text-align: center;
    margin-top: 20px;
}

.btn-primary:hover, .btn-danger:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.dark-mode .btn-primary, .dark-mode .btn-danger {
    background-color: #ff4757;
}

.dark-mode .btn-primary:hover, .dark-mode .btn-danger:hover {
    background-color: #e84142;
}








/* Hero-Sektion */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Owl Carousel Hintergrund-Slider */
.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Hintergrundbilder korrekt anzeigen */
.hero-slide {
    width: 100%;
    height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Overlay für bessere Lesbarkeit */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text & CTA über dem Slider */
.hero-content {
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 10;
}

/* Dark Mode Anpassungen */
.dark-mode .hero-overlay {
    background: rgba(0, 0, 0, 0.8);
}

/* Owl Carousel Navigation */
.owl-theme .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.owl-theme .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: white;
    border-radius: 50%;
    display: inline-block;
}

.owl-theme .owl-dot.active span {
    background: #d90429;
}








/* Animationen */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
