/* ====================================
   IronOak Outreach LLC - Main Styles
   ==================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');
/* Smooth Scrolling */
html,body {
    scroll-behavior: smooth;
}

/* ====================================
   Custom Scrollbar Styles
   ==================================== */

/* For Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1e3a8a, #1d4ed8);
    border-radius: 10px;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1d4ed8, #2563eb);
    border: 2px solid #dbeafe;
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #1e40af, #1e3a8a);
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #1e3a8a #f1f5f9;
}

/* Custom Text Shadow Utility */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Section Gradient Overlay - Corporate Blue */
.hero-gradient {
    background: linear-gradient(rgba(30, 58, 138, 0.8));
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: all 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

#mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}

/* Form Input Styles */
.form-input {
    transition: all 0.2s;
}

.form-input:focus {
    transform: translateY(-1px);
}