/* ==========================================================================
   VBA - Privacy Policy Styles (Matching code.html, DESIGN.md & screen.png)
   ========================================================================== */

/* Font Family Fallbacks matching Home Page / Index.html */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #fff8f5;
    color: #1e1b18;
}

h1, h2, h3, h4, h5, h6, .font-display, .font-headline-lg, .font-headline-md, .font-headline-sm {
    font-family: 'Outfit', sans-serif;
}

/* Material Symbols Icon Configuration */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* Privacy Content Section Scroll Offset */
.privacy-content section {
    scroll-margin-top: 110px;
}

/* Sticky TOC Sidebar Navigation Link Transitions */
.toc-link {
    transition: all 0.25s ease-in-out;
}

.toc-link.active {
    color: #9a460a !important;
    font-weight: 700 !important;
    padding-left: 0.5rem;
    border-left: 3px solid #9a460a;
}

/* Cards & Containers Hover Effects */
.privacy-card {
    background-color: #ffffff;
    border: 1px solid rgba(211, 196, 185, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(68, 42, 16, 0.08);
    border-color: rgba(154, 70, 10, 0.3);
}

/* Scroll Reveal Animation Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Photographed/Media Section Overlay */
.media-banner-overlay {
    background: linear-gradient(135deg, rgba(68, 42, 16, 0.92) 0%, rgba(68, 42, 16, 0.85) 100%);
}

/* Mobile Sidebar Horizontal Scroll indicator if needed */
@media (max-width: 768px) {
    .toc-mobile-container {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}
