/* Summit SLP Website Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: white;
}

/* Navigation Hover Effects */
nav a:hover {
    color: #a8d5ff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Service Cards Hover */
div[style*="border-top: 5px solid"]:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

/* Button Hover Effects */
a[style*="background: white"][style*="color: #667eea"]:hover,
button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25) !important;
}

/* Form Focus Styles */
input:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav {
        padding-top: 0 !important;
    }
    
    nav ul:first-of-type {
        display: none !important;
    }
    
    #menuBtn {
        display: block !important;
    }
    
    section {
        padding: 50px 20px !important;
    }
    
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
    }
    
    h2 {
        font-size: 36px !important;
    }
    
    h3 {
        font-size: 32px !important;
    }
    
    h4 {
        font-size: 20px !important;
    }
    
    p {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 28px !important;
    }
    
    h3 {
        font-size: 24px !important;
    }
    
    section {
        padding: 40px 15px !important;
    }
    
    div[style*="padding: 40px"] {
        padding: 25px !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeInUp 0.6s ease-out;
}

/* Links */
a {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Accessibility */
:focus-visible {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

