/* Minimalist CSS for KK Digital Solutions */

/* Base styles */
html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: -0.025em;
}

/* Smooth transitions */
* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

/* Mobile menu animations */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Button hover effects */
a[href^="mailto:"] {
    transition: all 0.2s ease;
}

a[href^="mailto:"]:hover {
    transform: translateY(-1px);
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Responsive typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .text-lg {
        font-size: 1rem;
    }
}

/* Performance optimizations */
img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Remove default margins for better spacing control */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}