/* Legal Pages Styles */

/* Theme Variables */
:root {
    /* Dark Theme (default) */
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --header-bg: rgba(30, 30, 30, 0.98);
    --card-bg: rgba(40, 40, 40, 0.9);
    --border-color: #444;
    --input-bg: rgba(255, 255, 255, 0.1);
    --footer-bg: #111;
    
    /* Blue accent colors */
    --dark-blue: #1a237e;
    --medium-blue: #283593;
    --light-blue: #3f51b5;
    --glow-blue: #5c6bc0;
}



.legal-content {
    padding: 120px 0 80px;
    background: #1e1e1e;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 100;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px #1a7ce8, 0 0 40px #5c6bc0;
}

.legal-header p {
    color: #ffffff;
    opacity: 0.7;
    font-size: 1rem;
    font-weight: 300;
}

.legal-section {
    background: #222222;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333333;
    box-shadow: 0 0 10px rgba(26, 35, 126, 0.2);
}

.legal-section h2 {
    color: #5c6bc0;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 8px #1a7ce8;
    border-bottom: 1px solid #333333;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 1.5rem 0 1rem 0;
}

.legal-section p {
    color: #ffffff;
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
}

.legal-section ul {
    color: #ffffff;
    opacity: 0.8;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: #2d2d2d;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #5c6bc0;
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #dddddd;
}

.contact-info strong {
    color: #1a7ce8;
    text-shadow: 0 0 5px #1a7ce8;
}

.back-button {
    text-align: center;
    margin-top: 3rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: #1a7ce8;
    border: 1px solid #1a237e;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(26, 35, 126, 0.3);
    text-shadow: 0 0 5px #1a7ce8;
}

.btn-back:hover {
    background: #1a237e;
    color: #ffffff;
    border-color: #5c6bc0;
    box-shadow: 0 0 20px rgba(92, 107, 192, 0.6);
    text-shadow: 0 0 10px #1a7ce8;
    transform: translateY(-2px);
}

.btn-back i {
    font-size: 1rem;
}

/* Responsive Design für Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 1.7rem;
        letter-spacing: 1px;
    }
    
    .legal-section {
        padding: 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.2rem;
    }
    
    .btn-back {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Spezielle Hervorhebungen */
.legal-section p strong {
    color: var(--light-blue);
    text-shadow: 0 0 5px var(--glow-blue);
}

.legal-section .highlight {
    background: rgba(26, 35, 126, 0.2);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--light-blue);
    margin: 1rem 0;
}

.legal-section .warning {
    background: rgba(255, 152, 0, 0.1);
    border-left: 3px solid #ff9800;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.legal-section .warning p {
    color: #ffcc80;
}

/* Scroll-to-top für lange Seiten */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--dark-blue);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(26, 35, 126, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
}

.scroll-to-top:hover {
    background: var(--light-blue);
    box-shadow: 0 0 25px rgba(92, 107, 192, 0.5);
    transform: translateY(-3px);
}

.scroll-to-top i {
    font-size: 1.2rem;
}