/* Privacy Policy Page Styles
   Built on the cyberpunk theme for legal documentation
-------------------------------------------------------------- */

@import '../variables/_variables.css';
@import '../mixins/_grid.css';

/* Main Container */
.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 1rem 2rem;
    color: var(--cyber-text);
}

/* Header Section */
.privacy-header {
    @extend .gradient-border;
    @extend .hover-effect;
    
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(21, 72, 255, 0.1), rgba(26, 26, 46, 0.6));
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.privacy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue), var(--neon-blue));
    animation: shimmer 3s infinite;
}

.privacy-header h1 {
    color: var(--brand-blue);
    text-shadow: var(--text-glow);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-secondary);
}

.privacy-header p {
    color: var(--cyber-text);
    font-size: 1.1rem;
    margin: 0;
}

.privacy-header strong {
    color: var(--light-blue);
    font-weight: 600;
}

/* Privacy Sections */
.privacy-section {
    margin-bottom: 2rem;
    background: rgba(10, 10, 20, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(21, 72, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-blue), var(--neon-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.privacy-section:hover {
    border-color: rgba(21, 72, 255, 0.4);
    background: rgba(10, 10, 20, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(21, 72, 255, 0.2);
}

.privacy-section:hover::before {
    transform: scaleX(1);
}

.privacy-section h2 {
    color: var(--brand-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(21, 72, 255, 0.5);
    font-weight: 600;
    font-family: var(--font-secondary);
}

.privacy-section p {
    color: var(--cyber-text);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

/* Lists */
.privacy-section ul {
    list-style-type: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    position: relative;
    line-height: 1.6;
    color: var(--cyber-text);
    font-size: 1.05rem;
}

.privacy-section li::before {
    content: '•';
    color: var(--brand-blue);
    position: absolute;
    left: -1.5rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-section li:last-child {
    margin-bottom: 0;
}

/* Strong/Bold Text */
.privacy-section strong {
    color: var(--light-blue);
    font-weight: 600;
}

/* Links */
.privacy-section a {
    color: var(--light-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.privacy-section a:hover {
    color: var(--brand-blue);
    text-shadow: 0 0 10px rgba(21, 72, 255, 0.5);
    border-bottom-color: var(--brand-blue);
}

/* Contact Section Special Styling */
.contact-section {
    background: linear-gradient(135deg, rgba(21, 72, 255, 0.15), rgba(26, 26, 46, 0.8));
    border: 2px solid rgba(21, 72, 255, 0.4);
    position: relative;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.contact-section .contact-email {
    margin-top: 0.75rem;
}

.contact-section .contact-email p {
    margin: 0;
    text-align: center;
    color: var(--light-blue);
    font-weight: 500;
}

.contact-section .contact-email p a {
    color: inherit;
    text-decoration: none;
}

.contact-section h2 {
    color: var(--white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(21, 72, 255, 0.1), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-container {
        padding: 80px 1rem 2rem;
    }
    
    .privacy-header {
        padding: 1.5rem;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section {
        padding: 1rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 70px 0.75rem 2rem;
    }
    
    .privacy-header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-section {
        padding: 0.75rem;
    }
    
    .privacy-section h2 {
        font-size: 1.2rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 1rem;
    }
}

/* Animation for scroll reveal */
.privacy-section {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease forwards;
}

.privacy-section:nth-child(2) { animation-delay: 0.1s; }
.privacy-section:nth-child(3) { animation-delay: 0.2s; }
.privacy-section:nth-child(4) { animation-delay: 0.3s; }
.privacy-section:nth-child(5) { animation-delay: 0.4s; }
.privacy-section:nth-child(6) { animation-delay: 0.5s; }
.privacy-section:nth-child(7) { animation-delay: 0.6s; }
.privacy-section:nth-child(8) { animation-delay: 0.7s; }
.privacy-section:nth-child(9) { animation-delay: 0.8s; }
.privacy-section:nth-child(10) { animation-delay: 0.9s; }
.privacy-section:nth-child(11) { animation-delay: 1.0s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll behavior for smooth navigation */
html {
    scroll-behavior: smooth;
}

.privacy-hero::before {
    background: linear-gradient(135deg, rgba(21, 72, 255, 0.1), rgba(26, 26, 46, 0.6));
}

.privacy-cta {
    background: linear-gradient(135deg, rgba(21, 72, 255, 0.15), rgba(26, 26, 46, 0.8));
    border: 2px solid rgba(21, 72, 255, 0.4);
}

.privacy-cta::before {
    background: radial-gradient(circle at center, rgba(21, 72, 255, 0.1), transparent 70%);
}
