@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');

:root {
    --primary-color: #000000;
    --secondary-color: #f5f5f5;
    --accent-color: #e5e5e5;
    --text-color: #1a1a1a;
    --light-text-color: #666666;
    --border-color: #e0e0e0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-family: 'Tajawal', sans-serif;
    scroll-behavior: smooth;
    color: var(--text-color);
    background-color: #fff;
}

.font-geist-mono {
    font-family: monospace; /* Fallback for Geist Mono */
}

/* Navigation */
.nav-btn {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    transition: all 0.2s;
    color: var(--light-text-color);
    background-color: transparent;
    border: 1px solid transparent;
}

.nav-btn:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.nav-btn.active {
    background-color: var(--primary-color);
    color: white;
}

/* Content Sections */
.content-section {
    display: none;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.content-section.active {
    display: block;
}

.section-header {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

/* Utility Classes */
.overflow-x-auto {
    overflow-x: auto;
}

/* Timeline Styles */
.timeline {
    position: relative;
}

/* Support Process */
.support-process {
    position: relative;
}

/* Organization Chart */
.organization-chart {
    position: relative;
}

/* Disable zoom */
html {
    touch-action: manipulation;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-btn {
        font-size: 0.75rem;
        padding: 0.375rem 0.5rem;
    }
    
    .content-section {
        padding: 1rem;
    }
}
