/* ============================================
   PRIVACY POLICY - STYLES
   Consistent with Our See Media design system
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --gold-base: #D4AF37;
    --gold-light: #d4af37;
    --gold-dark: #d4af37;
    --gold-color: var(--gold-base);
    --gold-rgb: 212, 175, 55;
    --black-bg: #0b0b0b;
    --black-card: #121212;
    --black-dark: #1a1a1a;
    --gray-900: #1f1f1f;
    --gray-800: #2a2a2a;
    --gray-700: #3a3a3a;
    --gray-600: #4a4a4a;
    --gray-500: #6a6a6a;
    --gray-400: #888888;
    --gray-300: #999999;
    --gray-200: #cfcfcf;
    --gray-100: #e0e0e0;
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'SF Pro Display', sans-serif;
    --font-body: 'SF Pro Text', sans-serif;
    
    /* Spacing */
    --section-padding: 80px;
    --section-padding-mobile: 50px;
    --container-max-width: 1400px;
    --container-width: 1100px;
    
    /* Borders */
    --border-radius-sm: 8px;
    --border-radius-md: 15px;
    --border-radius-lg: 30px;
    --border-radius-pill: 50px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-fixed: 1030;
}

/* ===== GLOBAL STYLES ===== */
body {
    background-color: var(--black-bg);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Container max-width */
.container {
    max-width: var(--container-width) !important;
}

/* Content container - narrower for text (700px max width) */
.content-container {
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    color: var(--gray-300);
    font-size: 0.95rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-breadcrumb {
    color: var(--gray-300);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    text-decoration: none !important;
    border-bottom: none !important;
}

.hero-breadcrumb:hover {
    color: var(--gold-color);
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Content Sections */
.content-section {
    padding: var(--section-padding) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--white);
}

.section-content {
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 1.25rem;
}

.subsection-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.content-list li {
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--gray-300);
}

.content-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
}

/* Contact Section */
.contact-info {
    background-color: var(--black-dark);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    margin-top: 2rem;
}

[data-theme="light"] .contact-info {
    background-color: whitesmoke;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: var(--white);
}

[data-theme="light"] .contact-info h3 {
    color: #000000;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-label {
    font-weight: 600;
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

[data-theme="light"] .contact-label {
    color: #000000;
}

.contact-value {
    color: var(--gray-300);
    font-size: 1rem;
}

[data-theme="light"] .contact-value {
    color: #333333;
}

.contact-value a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

[data-theme="light"] .contact-value a {
    color: #333333;
}

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

.contact-value a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold-color);
    transition: width 0.3s ease;
}

.contact-value a:hover::after {
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .content-section {
        padding: var(--section-padding-mobile) 0;
    }

    .contact-info {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 140px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .content-container {
        padding: 0 20px;
    }
}
