/* ========================================
   PRIVACY POLICY - Specifieke styling
   Gebruikt de basis variabelen uit theme.css
   ======================================== */

/* Base wrapper - uniek voor privacy-policy */
.tty-privacy-wrapper {
    position: relative;
    overflow: hidden;
    font-family: inherit;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Decoratief patroon achtergrond */
.tty-privacy-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 9%;
    width: 40%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5v10m0 30v10m-20-25h10m30 0h10' stroke='%23005F5F' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='5' fill='%23005F5F'/%3E%3Ccircle cx='30' cy='15' r='2' fill='%23005F5F'/%3E%3Ccircle cx='30' cy='45' r='2' fill='%23005F5F'/%3E%3Ccircle cx='20' cy='30' r='2' fill='%23005F5F'/%3E%3Ccircle cx='40' cy='30' r='2' fill='%23005F5F'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Direct children boven patroon */
.tty-privacy-wrapper > * {
    position: relative;
    z-index: 1;
}

/* Banner sectie */
.tty-privacy-banner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    margin-top: 40px;
}


/* Header met download button */
.tty-privacy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}

.tty-privacy-header-content {
    flex: 1;
}

.tty-privacy-banner .tty-hero-title {
    margin: 0px 0px 10px 0px;
}

.tty-privacy-date {
    font-size: 18px;
    color: var(--tty-text-secondary);
    margin: 0px;
}

.tty-privacy-download-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--tty-primary) 0%, var(--tty-primary-light) 100%);
    color: var(--tty-text-light);
    text-decoration: none;
    border-radius: var(--tty-radius-lg);
    font-weight: 400;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(0, 95, 95, 0.3);
    transition: var(--tty-transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: fit-content;
}

.tty-privacy-download-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.tty-privacy-download-button:hover::before {
    left: 100%;
}

.tty-privacy-download-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--tty-shadow-lg);
    color: var(--tty-text-light);
}

/* Container layout */
.tty-privacy-container {
    display: flex;
    gap: 40px;
}

/* Sidebar navigatie */
.tty-privacy-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 150px;
    height: fit-content;
}

.tty-privacy-nav-block {
    background-color: var(--tty-bg-secondary);
    border-radius: 30px;
    padding: 20px;
    margin-bottom: 20px;
}

.tty-privacy-nav-block h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.tty-privacy-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tty-privacy-nav-list li {
    margin-bottom: 10px;
}

.tty-privacy-nav-list a {
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    transition: var(--tty-transition-normal);
}

.tty-privacy-nav-list a:hover,
.tty-privacy-nav-list a.active {
    background: var(--tty-bg-linear-graniet);
    color: var(--tty-text-light);
}

/* Main content area */
.tty-privacy-content-main {
    flex: 1;
}

.tty-privacy-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.tty-privacy-section:last-of-type {
    border-bottom: none;
    margin-bottom: 150px;
}

.tty-privacy-section h2 {
    color: var(--tty-primary);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 34px;
    line-height: 1.2;
}

.tty-privacy-block {
    background-color: var(--tty-bg-secondary);
    padding: 30px;
    border-radius: 30px;
}

.tty-privacy-block h3 {
    color: var(--tty-primary);
    margin-top: 24px;
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 600;
}

.tty-privacy-block p {
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Service blocks */
.tty-privacy-service-block {
    background-color: var(--tty-text-light);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.tty-privacy-service-block h3 {
    color: var(--tty-primary);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
}

/* Contact blocks */
.tty-privacy-contact-block {
    border-radius: 12px;
}

.tty-privacy-company-info {
    background: var(--tty-text-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.tty-privacy-company-info p {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Lists styling */
.tty-privacy-content-main ul {
    list-style: none;
    padding-left: 0;
}

.tty-privacy-content-main ul li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.tty-privacy-content-main ul li:before {
    content: "•";
    color: var(--tty-primary);
    position: absolute;
    left: 8px;
    font-weight: bold;
}

/* Links in content */
.tty-privacy-block a {
    color: var(--tty-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--tty-transition-normal);
}

.tty-privacy-block a:hover {
    color: var(--tty-primary-dark);
    text-decoration: underline;
}

/* Contact final section */
.tty-privacy-contact-final {
    gap: 0px;
}

.tty-privacy-contact-final p {
    margin-bottom: 10px;
}

.tty-privacy-contact-final p:last-child {
    margin-bottom: 0;
}

/* Dark theme aanpassingen */
[data-theme="dark"] .tty-privacy-wrapper::before {
    opacity: 0.03;
}

[data-theme="dark"] .tty-privacy-section {
    border-bottom-color: var(--tty-border-light);
}

[data-theme="dark"] .tty-privacy-service-block,
[data-theme="dark"] .tty-privacy-company-info {
    background-color: var(--tty-bg-tertiary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .tty-privacy-container {
        flex-direction: column;
    }
    
    .tty-privacy-sidebar {
        position: relative;
        top: 0;
    }
    
    .tty-privacy-banner {
        flex-direction: column;
    }
    
    .tty-privacy-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tty-privacy-contact-block {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .tty-privacy-wrapper::before {
        display: none;
    }
    
    /* Banner sectie */
    .tty-privacy-banner {
        margin-top: 20px;
    }
    
    .tty-privacy-section h2 {
        font-size: 28px;
        line-height: 32px;
    }
    
    .tty-privacy-block {
        padding: 20px 15px;
    }
    
    .tty-privacy-service-block {
        padding: 16px;
    }
}

@media (max-width: 576px) {
    .tty-privacy-section h2 {
        font-size: 26px;
    }
    
    .tty-privacy-content-main ul li {
        padding-left: 20px;
    }
}

/* Print styles */
@media print {
    .tty-privacy-sidebar {
        display: none;
    }
    
    .tty-privacy-content-main {
        width: 100%;
    }
    
    .tty-privacy-banner {
        background-color: transparent;
    }
}