/* AIKEY-SOFT - Privacy Policy CSS */

/* Sol taraf loş turuncu efekti */
body {
    background: linear-gradient(90deg, rgba(255, 165, 0, 0.05) 0%, rgba(255, 165, 0, 0.02) 30%, rgba(0, 0, 0, 0.95) 50%);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 30%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08) 0%, rgba(255, 200, 100, 0.03) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
    color: white;
    font-weight: 500;
}

/* Privacy Content */
.privacy-content {
    padding: 5rem 0;
    background: white;
}

.privacy-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

.privacy-sidebar {
    position: sticky;
    top: 100px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: fit-content;
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.privacy-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.privacy-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
    line-height: 1.4;
}

.privacy-nav-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.privacy-nav-link.active {
    background: var(--primary-color);
    color: white;
}

.privacy-main {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    padding-left: 1rem;
}

.privacy-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.privacy-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.privacy-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.privacy-text:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.privacy-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.6;
}

.privacy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-list li strong {
    color: var(--text-color);
    font-weight: 600;
}

.privacy-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.privacy-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.privacy-footer {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    text-align: center;
}

.privacy-update {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.privacy-update strong {
    color: var(--primary-color);
}

.privacy-note {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .privacy-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .privacy-sidebar {
        position: static;
        order: 2;
    }
    
    .privacy-main {
        order: 1;
    }
    
    .privacy-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .privacy-nav-link {
        flex: 1;
        min-width: 120px;
        text-align: center;
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .privacy-main {
        padding: 2rem;
    }
    
    .privacy-title {
        font-size: 1.5rem;
    }
    
    .privacy-subtitle {
        font-size: 1.2rem;
    }
    
    .privacy-nav {
        flex-direction: column;
    }
    
    .privacy-nav-link {
        flex: none;
        min-width: auto;
        text-align: left;
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .privacy-main {
        padding: 1.5rem;
    }
    
    .privacy-sidebar {
        padding: 1.5rem;
    }
    
    .privacy-title {
        font-size: 1.3rem;
        padding-left: 0.75rem;
    }
    
    .privacy-title::before {
        width: 3px;
        height: 20px;
    }
    
    .privacy-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .privacy-footer {
        padding: 1.5rem;
    }
}
