/* Kinetika Bold Font Face */
@font-face {
    font-family: 'Kinetika';
    src: url('../assets/fonts/Kinetika-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--bg-secondary);
    transition: background 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4 {
    font-family: 'Kinetika', serif;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient);
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(139, 95, 191, 0.5);
}

/* Page Sections */
.page-section {
    display: none;
}

.page-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Global Mobile Responsive Styles */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Ensure minimum touch target size */
    button, 
    .btn-primary, 
    .btn-secondary, 
    .action-button {
        min-height: 44px;
        min-width: 44px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
}