/* Custom Typography - Montserrat + Open Sans */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');

/* Apply fonts globally */
body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #374151;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom color utilities (matching your palette) */
.bg-brand-primary {
    background-color: #1E3A8A; /* Deep Blue */
}

.bg-brand-secondary {
    background-color: #06B6D4; /* Bright Cyan */
}

.bg-brand-cta {
    background-color: #F97316; /* Warm Orange */
}

.text-brand-primary {
    color: #1E3A8A;
}

.text-brand-secondary {
    color: #06B6D4;
}

.text-brand-cta {
    color: #F97316;
}

/* Hover effects for service cards */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

/* Smooth animations for buttons */
.cta-button {
    transition: all 0.2s ease-in-out;
}

.cta-button:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, #1E3A8A 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive font sizes */
@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-section h1 {
        font-size: 2.25rem;
    }
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"] {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* Accessibility improvements */
a:focus, button:focus {
    outline: 2px solid #F97316;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
}
