/* Custom styles for North Star Custom Web Solutions */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Enhanced visual elements */
.gradient-box {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-icon-bg {
    background: linear-gradient(135deg, #1e2a4d 0%, #0f1729 100%);
    box-shadow: 0 4px 12px rgba(30, 42, 77, 0.15);
}

.section-divider {
    background: linear-gradient(90deg, transparent 0%, #1e2a4d 50%, transparent 100%);
    height: 1px;
    width: 100px;
    margin: 0 auto 2rem auto;
}

.card-shadow {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.button-primary {
    background: linear-gradient(135deg, #1e2a4d 0%, #0f1729 100%);
    box-shadow: 0 2px 8px rgba(30, 42, 77, 0.2);
}

.button-secondary {
    box-shadow: 0 2px 8px rgba(30, 42, 77, 0.1);
}

.trust-indicator-bg {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Enhanced typography */
.heading-primary {
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.heading-secondary {
    font-weight: 300;
    line-height: 1.3;
}

.text-enhanced {
    line-height: 1.7;
}

/* Simple form styling */
.form-focus:focus {
    border-color: #1e2a4d;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 42, 77, 0.1);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero-content {
        padding: 2rem 1rem;
    }
}