/* 
 * Total Life Essentials 
 * Premium Optimized Privacy Stylesheet (privacy.css)
 * -------------------------------------------------------------
 * Designing modern layout scales, high-readability metrics, 
 * beautiful bento-inspired info boards, and high-trust accents.
 */

/* Global Reset & Base Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.62;
    color: #1a1a1a;
    background-color: #fbfbfb;
}

/* Navbar Logo Custom Styling */
.navbar-brand {
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo-icon {
    background-color: #f59e0b; /* Amber */
    color: #0f172a; /* Slate 900 */
    padding: 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    width: 40px;
    height: 40px;
}

.nav-itemsize {
    font-size: 15px;
    font-weight: 500;
}

/* Above the fold Modern Intro Hero Section */
.privacy-hero-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border-radius: 24px;
    padding: 48px 32px;
    margin-bottom: 40px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.privacy-hero-tag {
    font-size: 11px;
    font-weight: 800;
    color: #f59e0b; /* Golden Honey Amber */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: inline-block;
}

.privacy-hero-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.privacy-hero-subtitle {
    font-size: 14.5px;
    color: #cbd5e1;
    max-width: 720px;
}

/* Compliance Disclaimer Box */
.compliance-disclosure {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #f59e0b;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 11.5px;
    color: #94a3b8;
}

/* Rounded Policy Premium Card Container */
.privacy-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.065);
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

/* Section Styling */
.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
}

.section-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 1;
    margin: 12px 0 20px 0;
}

.content-text {
    font-size: 14.5px;
    color: #334155;
    line-height: 1.65;
}

/* Beautiful Bullet Stats Info Board */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-grid-item {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.035);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.info-grid-item:hover {
    transform: translateX(4px);
    border-color: rgba(245, 158, 11, 0.2);
}

.bullet-num {
    background: #0f172a;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

/* Custom Bullet Layout for Unordered Lists */
.custom-list {
    list-style: none;
    padding-left: 0;
    margin-top: 16px;
    margin-bottom: 0;
}

.custom-list li {
    font-size: 14.5px;
    color: #334155;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

/* Highlight FTC disclosure note blocks */
.compliance-highlight {
    background-color: #fffbeb; /* Golden light tint */
    border-left: 3px solid #f59e0b;
    border-radius: 12px;
    padding: 20px;
}

/* Contact box information */
.contact-box {
    background-color: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.2s ease;
}

.contact-box:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.02);
    border-color: rgba(245, 158, 11, 0.15) !important;
}

.hover-amber:hover {
    color: #d97706 !important;
}

/* Pulse Policy Status Indicator Badge */
.badge-status {
    background-color: rgba(16, 185, 129, 0.1);
    color: #047857;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-status .dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: beaconPulse 2s infinite ease-in-out;
}

@keyframes beaconPulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* Helpers and highlights */
.text-amber {
    color: #f59e0b !important;
}

.text-xs {
    font-size: 12px !important;
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
    .privacy-hero-box {
        padding: 32px 20px;
        border-radius: 16px;
    }
    .privacy-hero-title {
        font-size: 24px;
    }
    .privacy-card {
        padding: 32px 20px;
        border-radius: 16px;
    }
}

/* Footers Styles */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 40px 0 24px 0 !important;
}

footer h6 {
    color: #f8fafc;
    font-size: 14px;
    font-weight: 700;
}

footer a {
    color: #94a3b8 !important;
    text-decoration: none;
}

footer a:hover {
    color: #f59e0b !important;
}
