/* Legal Pages Styles */

/* Legal Content */
.legal-content {
    padding: 120px 0 80px;
    background: #ffffff;
    min-height: 100vh;
}

/* Mobile Navigation Fix */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
}

.navbar.scrolled .nav-link {
    color: #ffffff;
}

.navbar.scrolled .brand-logo {
    content: url('../logo-weiss.png');
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #d4af37;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.legal-header p {
    font-size: 1.3rem;
    color: #d4af37;
    font-weight: 500;
    margin: 0;
}

.legal-sections {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border: 2px solid #000000;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    transition: width 0.3s ease;
}

.legal-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.legal-section:hover::before {
    width: 12px;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    position: relative;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 2px;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin: 1.5rem 0 1rem;
}

.legal-info {
    color: #000000;
    line-height: 1.7;
}

.legal-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-info ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-info li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.legal-info a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.legal-info a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.legal-info strong {
    color: #000000;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-header p {
        font-size: 1.1rem;
    }
    
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-info p,
    .legal-info li {
        font-size: 0.95rem;
    }
    
    /* Mobile Navigation */
    .navbar .container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        margin: 1rem 0;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(212, 175, 55, 0.1);
        color: #d4af37;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger .bar {
        width: 25px;
        height: 3px;
        background: #000000;
        margin: 3px 0;
        transition: 0.3s;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 80px 0 40px;
    }
    
    .legal-header h1 {
        font-size: 1.8rem;
    }
    
    .legal-header p {
        font-size: 1rem;
    }
    
    .legal-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
    
    .legal-info p,
    .legal-info li {
        font-size: 0.9rem;
    }
    
    /* Mobile Navigation - Extra Small Screens */
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .nav-link {
        font-size: 1.1rem;
        margin: 0.8rem 0;
        padding: 0.4rem 0.8rem;
    }
    
    .hamburger .bar {
        width: 20px;
        height: 2px;
    }
    
    /* Mobile Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .aml-disclaimer p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .copyright p {
        font-size: 0.8rem;
    }
}
