/* Naam Jap Counter - Privacy Policy Theme */

:root {
    /* Light Elegant Color Palette */
    --bg-main: #FDFBF7;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F9F7F2;
    
    --text-primary: #2D2926;
    --text-secondary: #5F5B57;
    --text-muted: #8E8677;
    
    --accent-gold: #B8860B;
    --accent-gold-light: #D4AF37;
    --accent-gold-soft: rgba(184, 134, 11, 0.1);
    
    --gradient-primary: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
    --gradient-glow: linear-gradient(135deg, rgba(184, 134, 11, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    
    --border-subtle: rgba(184, 134, 11, 0.15);
    --border-glow: rgba(212, 175, 55, 0.3);
    
    --container-max: 960px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    
    --shadow-soft: 0 10px 30px rgba(184, 134, 11, 0.08);
    --shadow-hover: 0 15px 40px rgba(184, 134, 11, 0.12);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(184, 134, 11, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #E5E1D8;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-light);
}

/* Structure */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero {
    padding: 60px 0 30px;
    text-align: center;
}

.hero-logo {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(184, 134, 11, 0.15);
    overflow: hidden;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.badge-update {
    color: var(--accent-gold);
    background: var(--accent-gold-soft);
    border-color: var(--accent-gold-soft);
}

/* Privacy policy main wrapper */
.policy-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-soft);
}

/* Policy Content Details */
.policy-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 36px 0 16px;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-card h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.policy-card h2:first-of-type {
    margin-top: 0;
}

.policy-card p {
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.policy-card p strong {
    color: var(--text-primary);
}

/* Highlight boxes */
.highlight-box {
    background: var(--accent-gold-soft);
    border-left: 4px solid var(--accent-gold);
    padding: 20px;
    border-radius: 4px var(--radius-md) var(--radius-md) 4px;
    margin: 28px 0;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 500;
}

/* Lists */
.policy-card ul {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 5px;
}

.policy-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.policy-card li::before {
    content: "\f058"; /* FontAwesome Circle Check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent-gold);
}

/* Interactive section grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
}

.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 24px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.feature-item:hover {
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--accent-gold-soft);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.feature-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Footer styling */
footer {
    padding: 50px 0;
    background-color: #F7F5F0;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    overflow: hidden;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .policy-card {
        padding: 30px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }

    .badge-container {
        flex-direction: column;
        align-items: center;
    }
}