/* privacy.css - Shared Theme for Privacy Policy Page */

/* Copying exact variables and essential styles from style.css */
:root {
    --primary-blue: #0B4EA2;
    --accent-amber: #F4B544;
    --bg-light: #F2F2F2;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --white: #ffffff;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: clip;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header Styles - Exact Copy from style.css */
.main-header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
    overflow: hidden;
}

.header-mesh-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.main-header.scrolled {
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    padding: 10px 20px;
    position: relative;
    z-index: 2;
}

.main-header.scrolled .navbar {
    background: rgba(255, 251, 235, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 100px;
    border: 1px solid rgba(244, 181, 68, 0.3);
    box-shadow: 0 15px 35px rgba(244, 181, 68, 0.15);
    padding: 10px 30px;
}

.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
    min-width: 150px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.slogan-container {
    position: relative;
    height: 18px;
    width: 140px;
    margin-top: -2px;
    display: block;
    overflow: hidden;
}

.logo-animate {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-amber);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    opacity: 0.9;
    transition: opacity 0.5s ease-in-out;
}

.nav-links {
    display: flex;
    background-color: var(--bg-light);
    padding: 5px;
    border-radius: 50px;
    gap: 5px;
}

.nav-links li a {
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-links li a:hover, .nav-links li a.active {
    background-color: var(--accent-amber);
    color: #000;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #0d5bc0;
}

/* Privacy Content Styles */
.privacy-hero {
    padding: 100px 0 60px;
    background-color: #fcfcfc;
    text-align: center;
}

.privacy-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-blue);
}

.privacy-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.policy-section p {
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 17px;
}

.policy-section ul {
    margin-left: 20px;
    list-style: disc;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.policy-section ul li {
    margin-bottom: 10px;
}

/* Footer Styles - Exact Copy from style.css */
.main-footer {
    background-color: #050505;
    color: #999;
    padding: 100px 0 0;
    font-size: 14px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 100px;
    padding-bottom: 80px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 30px;
}

.footer-nav-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col ul li a {
    color: #888;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    text-transform: uppercase;
}

.white-text { color: var(--white); font-weight: 700; }

#real-time-clock { color: var(--white); font-weight: 600; }

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    font-size: 24px;
}

/* Mobile Responsiveness for Privacy Page */
@media (max-width: 768px) {
    .main-header {
        background: rgba(255, 255, 255, 0.98);
        position: fixed;
        width: 100%;
        top: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-cta {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-nav-columns {
        grid-template-columns: 1fr;
    }
    
    .privacy-hero h1 {
        font-size: 32px;
    }
}
