/* Privacy Policy Page Styles */

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0b0f14 0%, #1a1f2e 25%, #2d3748 50%, #1a1f2e 75%, #0b0f14 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glass Navigation */
.glass-nav {
    background: rgba(2, 6, 23, 0.8) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-nav .navbar-brand .gradient-text {
    background: linear-gradient(135deg, #7dd3fc, #0ea5e9, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.glass-nav .nav-link {
    color: #cbd5e1 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 8px 16px !important;
}

.glass-nav .nav-link:hover {
    background-color: rgba(125, 211, 252, 0.08);
    color: #7dd3fc !important;
    transform: translateY(-1px);
}

/* Responsive Navigation - Always use hamburger menu */
@media (min-width: 0px) {
    .navbar-nav.me-auto {
        display: none !important;
    }
    
    .navbar-nav:not(.me-auto) {
        display: none !important;
    }
    
    .navbar .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .navbar-brand {
        order: 1 !important;
        margin-right: auto !important;
        margin-left: 0 !important;
    }
    
    .navbar-toggler {
        display: block !important;
        border: 1px solid rgba(148, 163, 184, 0.3);
        border-radius: 8px;
        padding: 0.5rem 0.75rem;
        transition: all 0.3s ease;
        margin-left: auto !important;
        margin-right: 0 !important;
        order: 2 !important;
    }
    
    .navbar-toggler:hover {
        background-color: rgba(125, 211, 252, 0.1);
        border-color: rgba(125, 211, 252, 0.5);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.1);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

/* Page Header */
.page-header-card {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.page-icon {
    font-size: 3rem;
    color: #10b981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    font-weight: 400;
}

/* Privacy Content */
.privacy-content {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    margin-bottom: 2rem;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.privacy-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.privacy-meta {
    color: #94a3b8;
    font-size: 1rem;
}

.privacy-meta p {
    margin-bottom: 0.5rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #7dd3fc;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(125, 211, 252, 0.2);
}

.subsection-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-content p {
    color: #e6edf3;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.privacy-list {
    color: #e6edf3;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-list li {
    margin-bottom: 0.5rem;
}

.privacy-list strong {
    color: #7dd3fc;
    font-weight: 600;
}

.privacy-link {
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: #0ea5e9;
    text-decoration: underline;
}

.contact-info {
    background: rgba(2, 6, 23, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #e6edf3;
}

.contact-info strong {
    color: #7dd3fc;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem;
    }
    
    .privacy-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-icon {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .subsection-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .privacy-content {
        padding: 1.5rem;
    }
    
    .privacy-title {
        font-size: 1.6rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-icon {
        font-size: 2rem;
    }
    
    .privacy-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .privacy-section {
        margin-bottom: 2rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glass Effect */
.glass {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
