/*
 * RepairVision - Coming Soon Page
 * Haupt-Stylesheet
 */

/* --- Variablen & Grundlegende Einstellungen --- */
:root {
    /* Farben */
    --primary-color: #00E5FF;   /* Blau */
    --secondary-color: #5E35B1; /* Lila */
    --accent-color: #eca62c;    /* Orange */
    
    /* Hintergründe */
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --card-bg: rgba(30, 30, 30, 0.7);
    --gradient-bg: linear-gradient(135deg, #121212 0%, #1E1E1E 100%);
    
    /* Texte */
    --light-text: #f0f0f0;
    
    /* Effekte */
    --neon-glow: 0 0 10px rgba(0, 229, 255, 0.8);
    --accent-glow: 0 0 10px rgba(236, 166, 44, 0.6);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

section {
    padding: 80px 0;
    position: relative;
}

/* --- Typografie --- */
h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-shadow: var(--neon-glow);
}

/* --- Komponenten --- */
button {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
    background: var(--accent-color);
}

/* --- Header & Logo --- */
header {
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo-img {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
}

/* --- Hero Section --- */
.hero {
    text-align: center;
    padding-top: 50px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #FFFFFF, var(--primary-color), var(--accent-color) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: glow 3s infinite alternate;
}

.hero .tagline {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

/* Dashboard Animation */
.dashboard-animation {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 300px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dashboard-mockup {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 30%, var(--card-bg), var(--darker-bg));
    position: relative;
    overflow: hidden;
}

.dashboard-mockup::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: scan 3s linear infinite;
}

.dashboard-mockup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(94, 53, 177, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.2) 0%, transparent 50%);
}

/* CTA Bereich */
.cta-primary {
    margin-top: 2rem;
}

.cta-primary h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.promo-text {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding: 8px 15px;
    border: 1px solid var(--primary-color);
    display: inline-block;
    border-radius: 5px;
    animation: pulse 2s infinite;
}

.promo-text strong {
    color: var(--accent-color);
}

/* Formular-Styles */
#signup-form,
#newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

#signup-form input,
#newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 30px 0 0 30px;
    border: 2px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    font-family: 'Poppins', sans-serif;
}

#signup-form button,
#newsletter-form button {
    border-radius: 0 30px 30px 0;
    padding: 12px 25px;
}

#signup-form button:hover,
#newsletter-form button:hover {
    background: var(--accent-color);
}

/* --- Features Section --- */
.features {
    text-align: center;
    background: var(--darker-bg);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(94, 53, 177, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(0, 229, 255, 0.1) 0%, transparent 30%);
    z-index: 0;
}

.features h2 {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    padding: 35px 25px;
    border-radius: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(94, 53, 177, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: var(--accent-color);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon i {
    font-size: 32px;
    z-index: 1;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.feature-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.feature-card p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Timeline Section --- */
.timeline {
    text-align: center;
    position: relative;
}

.status-badge {
    background: var(--dark-bg);
    display: inline-block;
    padding: 8px 15px;
    margin-bottom: 20px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--light-text);
    font-size: 0.9rem;
    box-shadow: 0 0 0 2px var(--accent-color);
}

.timeline p {
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.timeline-item {
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-point {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--dark-bg);
    border: 2px solid var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.timeline-item.active .timeline-point {
    background: var(--accent-color);
    box-shadow: var(--accent-glow);
}

.timeline-item.active h3 {
    color: var(--accent-color);
}

.timeline-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Erweiterungsmodule */
.upcoming-modules {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.upcoming-modules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 90%, rgba(0, 229, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(236, 166, 44, 0.1) 0%, transparent 40%);
    z-index: 0;
}

.upcoming-modules h3 {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.upcoming-modules p {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.module-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.module-list li {
    padding: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.module-list li:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--accent-color);
}

.module-list li:not(:last-child) {
    margin-bottom: 10px;
}

.module-list i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 1.1rem;
}

.module-list strong {
    font-weight: 600;
    margin-right: 5px;
}

/* --- Newsletter Section --- */
.newsletter {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(94, 53, 177, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(0, 229, 255, 0.1) 0%, transparent 40%);
    z-index: 0;
}

.newsletter h2,
.newsletter p {
    position: relative;
    z-index: 1;
}

.newsletter p {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

#newsletter-form {
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

/* --- Footer --- */
footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color), var(--accent-color));
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    color: var(--light-text);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.legal-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.legal-links a {
    margin: 0 15px;
    opacity: 0.7;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.legal-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    opacity: 0.5;
    font-size: 0.85rem;
}

/* --- Legal Pages (Impressum & Datenschutz) --- */
.legal-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.legal-content {
    flex-grow: 1;
    padding: 20px 0 80px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin: 0 0 40px;
    text-align: center;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.legal-content h4 {
    margin: 20px 0 10px;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    opacity: 0.9;
}

.legal-content ul,
.legal-content ol {
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    text-decoration: underline;
}

.legal-content strong {
    font-weight: 600;
    color: var(--primary-color);
}

.back-link {
    margin-top: 40px;
    text-align: center;
}

.back-link a {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.back-link a:hover {
    background: var(--accent-color);
    color: var(--dark-bg);
    border-color: var(--accent-color);
    text-shadow: none;
}

/* --- Notifications --- */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 350px;
    padding: 15px 20px;
    background: var(--dark-bg);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification.success {
    border-left: 4px solid var(--primary-color);
}

.notification.error {
    border-left: 4px solid red;
}

/* --- Animationen --- */
@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(0, 229, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 10px rgba(236, 166, 44, 0.6);
    }
    100% {
        text-shadow: 0 0 15px rgba(0, 229, 255, 0.8), 0 0 30px rgba(0, 229, 255, 0.6);
    }
}

@keyframes scan {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(236, 166, 44, 0.2);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
    }
}

/* --- Media Queries --- */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
    }
    
    .dashboard-animation {
        height: 250px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero .tagline {
        font-size: 1.1rem;
    }
    
    .dashboard-animation {
        height: 200px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    #signup-form,
    #newsletter-form {
        flex-direction: column;
    }
    
    #signup-form input,
    #newsletter-form input {
        border-radius: 30px;
        margin-bottom: 10px;
        width: 100%;
    }
    
    #signup-form button,
    #newsletter-form button {
        border-radius: 30px;
        width: 100%;
    }
} 