/* style.css - Version: Text-Schatten & Highlight Farbe */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f0f2f5;
}

main {
    flex: 1;
}

/* Navbar Optimierung */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}
.nav-btn-register {
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Hero Section (Startbereich) */
.hero-section {
    background: linear-gradient(135deg, #356cb5 0%, #002050 100%);
    color: white;
    padding: 100px 0;
    margin-bottom: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    
    position: relative; 
    overflow: hidden; 
    
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-section h1 {
    font-weight: 800;
    /* ÄNDERUNG: Viel stärkerer Schatten für bessere Lesbarkeit auf dem Bild */
    text-shadow: 0 5px 20px rgba(0,0,0,0.9);
}

/* Das Hintergrundbild im Header */
.hero-bg-img {
    position: absolute;
    top: 50%;
    left: 25%; 
    transform: translate(-50%, -50%) rotate(15deg);
    
    max-width: 650px;
    width: 55%; 
    height: auto;
    
    opacity: 0.35; 
    z-index: 0; 
    pointer-events: none; 
    
    mask-image: linear-gradient(to bottom, black 40%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 95%);
}

/* Container für den Text */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Grundlegende Karten-Stile */
.card {
    border: none;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Hover-Effekt NUR für Produkt-Karten (rechts) */
.product-a:hover, .product-b:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    z-index: 5;
}

.card-header {
    border-bottom: none;
    padding: 20px;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
}

/* Farben für die Produkte */
.product-a .card-header {
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
}

.product-b .card-header {
    background: linear-gradient(45deg, #43e97b 0%, #38f9d7 100%);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 20px 0;
}

/* Feature Liste */
.feature-list .list-group-item {
    font-size: 1.05rem;
    padding: 15px 20px;
    border-left: 5px solid transparent;
    transition: all 0.2s ease;
    display: flex; 
    align-items: center;
}

.feature-list .list-group-item:hover {
    background-color: #f8f9fa;
    border-left-color: #0d6efd;
}

/* Footer */
footer {
    background-color: #212529;
    color: #adb5bd;
    padding: 50px 0 30px 0;
    margin-top: 80px;
}
footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.2s;
}
footer a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

/* Mega Button */
.mega-btn {
    background: linear-gradient(45deg, #ff9966, #ff5e62);
    color: white !important;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 94, 98, 0.4);
    border: 4px solid white;
    animation: pulse 2s infinite;
    display: block;
    text-align: center;
    text-decoration: none;
    margin: -40px auto 40px auto; 
    position: relative;
    z-index: 10;
    max-width: 800px;
}
.mega-btn:hover { transform: scale(1.02); }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 94, 98, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 94, 98, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 94, 98, 0); }
}

/* NEU: Highlight Farbe für Überschrift */
.text-highlight {
    color: #ffca2c; /* Ein schönes Gold-Orange */
    text-shadow: 0 5px 20px rgba(0,0,0,1); /* Maximaler Kontrast */
}