/* Privacy Policy Page Styles */

/* Override body background for privacy page */
body:has(.privacy-hero) {
    background: var(--color-white);
}

.privacy-hero {
    background: var(--color-white);
    padding: 140px 20px 50px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.privacy-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-bg);
    margin-bottom: 1rem;
}

.privacy-hero__subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-content {
    background: var(--color-white);
    padding: 60px 0 80px;
}

.privacy-content__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-updated {
    text-align: center;
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 3rem;
    font-style: italic;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-bg);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-gold);
}

.privacy-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-bg);
    margin: 1.5rem 0 0.75rem;
}

.privacy-section p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.privacy-section strong {
    color: var(--color-bg);
}

.privacy-contact {
    background: rgba(201, 169, 98, 0.1);
    border-left: 4px solid var(--color-gold);
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.privacy-contact p {
    margin: 0;
    color: #4a4a4a;
}

.privacy-contact a {
    color: var(--color-gold-dark);
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.2s;
}

.privacy-contact a:hover {
    color: var(--color-gold);
}

/* Header style override for white background pages */
body:has(.privacy-hero) .header {
    background: var(--color-bg);
}

/* Footer style for white background pages */
body:has(.privacy-hero) .footer {
    background: var(--color-bg);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 120px 20px 40px;
    }

    .privacy-content {
        padding: 40px 0 60px;
    }

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