/**
 * Privacy CSS - Adatvédelmi szabályzat oldal stílusai
 * Eternal Illusion - 2025. október 26.
 */

/* BASIC RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0c1445 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

/* HEADER STYLING */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(12, 20, 69, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.header-logo a {
    color: #ffd700;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.header-nav a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-nav a:hover {
    color: #ffd700;
}

.header-user .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-user .user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.header-user .username {
    color: #00d4ff;
    font-weight: 500;
}

.header-user .logout-btn, .header-user .login-btn {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.header-user .logout-btn:hover, .header-user .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .header-content {
        padding: 0 15px;
    }
}

.main-content {
    background: linear-gradient(135deg, #0c1445 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    padding: 120px 0 50px 0;
    color: #ffffff;
    position: relative;
    z-index: 1;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

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

/* HEADER */
.privacy-header {
    text-align: center !important;
    margin-bottom: 50px !important;
    display: block !important;
    visibility: visible !important;
}

.privacy-icon {
    font-size: 4rem !important;
    color: #ffd700 !important;
    margin-bottom: 20px !important;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3) !important;
    display: block !important;
}

.privacy-header h1 {
    font-size: 3rem !important;
    color: #ffd700 !important;
    margin-bottom: 15px !important;
    display: block !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5) !important;
}

.privacy-header .subtitle {
    font-size: 1.3rem !important;
    color: #b0b0b0 !important;
    font-weight: 300 !important;
    display: block !important;
}

/* CONTENT */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section h2 {
    font-size: 2rem !important;
    color: #ffd700 !important;
    margin-bottom: 25px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.privacy-section h2 i {
    font-size: 1.5rem;
}

/* CARDS */
.privacy-card {
    background: rgba(42, 42, 42, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.2);
}

.privacy-card h3 {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-card h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.privacy-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 10px;
}

.privacy-card ul {
    color: #b0b0b0;
    margin-left: 20px;
    line-height: 1.8;
}

.privacy-card li {
    margin-bottom: 8px;
}

.privacy-card li strong {
    color: #ffd700;
}

/* GRID LAYOUTS */
.usage-grid, .rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.usage-item, .right-item {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.usage-item i, .right-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    display: block;
}

.usage-item h4, .right-item h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.security-item i {
    font-size: 2rem;
    color: #00ff88;
    margin-top: 5px;
}

/* CONTACT SECTION */
.contact-card {
    border-left: 5px solid #00d4ff;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.contact-method i {
    font-size: 2rem;
    color: #00d4ff;
}

.contact-method h4 {
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-method p {
    color: #b0b0b0;
    margin: 0;
}

.contact-method a {
    color: #00d4ff;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.response-time {
    background: rgba(0, 212, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #00d4ff;
    color: #b0b0b0;
}

.response-time i {
    color: #00d4ff;
    margin-right: 10px;
}

.response-time strong {
    color: #ffffff;
}

/* HIGHLIGHT SECTION */
.highlight-section {
    margin-top: 60px;
}

.highlight-card {
    border-left: 5px solid #00ff88;
    background: rgba(0, 255, 136, 0.05);
}

.highlight-content h3 {
    font-size: 1.8rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.highlight-list {
    list-style: none;
    margin-left: 0;
}

.highlight-list li {
    font-size: 1.1rem;
    padding: 8px 0;
    color: #ffffff;
}

.highlight-list li strong {
    color: #00ff88;
}

/* FOOTER */
.privacy-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.privacy-footer p {
    color: #888;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.privacy-footer i {
    color: #ffd700;
    margin-right: 8px;
}

.privacy-footer strong {
    color: #ffffff;
}

/* FOOTER OVERRIDE */
.main-footer {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(12, 20, 69, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    padding: 40px 0 20px 0;
    backdrop-filter: blur(10px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-center {
    text-align: center;
}

.footer-center h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-center p {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-copyright {
    color: #888;
    font-size: 1rem;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover, .footer-links a.active {
    color: #ffd700;
    transform: translateY(-2px);
}

.footer-links .separator {
    color: #666;
    font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 2.2rem;
    }
    
    .privacy-header .subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
    }
    
    .usage-grid, .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-center h3 {
        font-size: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links .separator {
        display: none;
    }
    
    .main-footer {
        margin-top: 40px;
        padding: 30px 0 15px 0;
    }
}