/*
 * Velvet Noir Theme - Privacy Policy CSS
 */

/* 1. Hero Section */
.privacy-hero {
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

.privacy-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Vignette effect */
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(10,10,10,0.9) 100%);
    z-index: 1;
}

.privacy-hero-content {
    position: relative;
    z-index: 2;
    color: var(--vn-white);
}

.privacy-hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.privacy-hero .subtitle {
    font-size: 1rem;
    color: #c4a77d; /* Champagne Gold */
    letter-spacing: 2px;
}

/* 2. Content Layout */
.privacy-page-wrap {
    background-color: #0a0a0a;
    padding: 60px 0 100px;
    color: #d0d0d0;
}

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

.privacy-last-updated {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 30px;
}

.privacy-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: #a8a8a8;
    margin-bottom: 40px;
}

/* Decorative Separator */
.privacy-separator {
    display: flex;
    align-items: center;
    margin: 50px 0;
}

.privacy-separator::before,
.privacy-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #3b111a; /* Burgundy */
}

.privacy-separator svg {
    margin: 0 20px;
    opacity: 0.8;
}

/* 3. Policy Sections */
.privacy-section {
    padding: 30px 0;
    border-bottom: 1px solid #1a1a1a;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.privacy-section-title {
    font-family: var(--font-heading);
    color: #c4a77d;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 400;
}

.privacy-section-icon {
    color: #fff;
    opacity: 0.7;
}

.privacy-section-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #a8a8a8;
}

.privacy-section-content p {
    margin-bottom: 15px;
}

.privacy-section-content p:last-child {
    margin-bottom: 0;
}

/* Contact Link override inside content */
.privacy-section-content a {
    color: #c4a77d;
    text-decoration: none;
    transition: color 0.3s;
}

.privacy-section-content a:hover {
    color: #fff;
}

.privacy-contact-email {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.privacy-contact-email svg {
    stroke: var(--vn-burgundy);
}

.privacy-contact-email a {
    color: var(--vn-burgundy) !important;
    font-weight: 500;
}

.privacy-contact-email a:hover {
    color: #ff4d6d !important;
}
