/* Privacy Policy Page Styles */

/* Privacy Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, #1a1d24 0%, #2d3748 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(197, 165, 114, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(197, 165, 114, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.privacy-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.privacy-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.privacy-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.privacy-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.meta-item i {
    color: #C5A572;
    font-size: 1rem;
}

/* Privacy Content Section */
.privacy-content {
    background-image: url('../assets/parallax_privacy.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 4rem 0;
}

.privacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.1);
    z-index: 1;
}

.privacy-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.privacy-section {
    padding: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

.privacy-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-left: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 2rem;
    background: linear-gradient(135deg, #C5A572, #b49059);
    border-radius: 2px;
}

.privacy-subsection {
    margin-bottom: 2rem;
}

.privacy-subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-size: 1.5rem;
    color: #C5A572;
    margin-bottom: 1rem;
    font-weight: 600;
}

.privacy-section p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.privacy-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.6;
}

.privacy-list li i {
    color: #C5A572;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.privacy-link {
    color: #C5A572;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.privacy-link:hover {
    color: #b49059;
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.05), rgba(197, 165, 114, 0.02));
}

.contact-info {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #C5A572;
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.contact-item div {
    color: #4b5563;
}

.contact-item strong {
    color: #1f2937;
    font-weight: 600;
}

.complaint-info {
    background: rgba(197, 165, 114, 0.1);
    border-left: 4px solid #C5A572;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
}

.complaint-info p {
    margin: 0;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-content {
        background-attachment: scroll;
    }
    
    .privacy-hero {
        padding: 4rem 0 3rem;
    }
    
    .privacy-hero h1 {
        font-size: 2.5rem;
    }
    
    .privacy-subtitle {
        font-size: 1.125rem;
    }
    
    .privacy-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .privacy-section {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .subsection-title {
        font-size: 1.25rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-item i {
        margin-bottom: 0.25rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .privacy-section {
        padding: 1.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .privacy-list li {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .privacy-list li i {
        margin-top: 0;
    }
}

/* Print Styles */
@media print {
    .privacy-hero {
        background: white !important;
        color: black !important;
    }
    
    .privacy-hero h1 {
        color: black !important;
    }
    
    .privacy-subtitle {
        color: black !important;
    }
    
    .privacy-content {
        background: white !important;
    }
    
    .privacy-wrapper {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
    
    .section-title::before {
        background: black !important;
    }
    
    .privacy-link {
        color: black !important;
        text-decoration: underline !important;
    }
}
