
/* Tailwind CSS Enhancements for Budde Consulting */

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Apply Inter font globally */
body {
    font-family: 'Inter', sans-serif;
}

/* Custom colors */
:root {
    --blue-accent: #3B82F6;
    --light-gray: #F5F7FA;
    --navy-gradient-start: #1E3A8A;
    --navy-gradient-end: #1E40AF;
}

/* Button hover effects */
button, a {
    transition: all 0.3s ease;
}

button:hover, a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Card hover effects */
.card {
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Section spacing */
section {
    padding: 5rem 0;
}

/* Footer styles */
footer {
    background: var(--navy-gradient-start);
    color: #E5E7EB;
}

footer a {
    color: #93C5FD;
}

footer a:hover {
    color: #BFDBFE;
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Fix hero text sizes */
    section h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    section h2 {
        font-size: 1.75rem !important;
    }
    
    section p {
        font-size: 1rem !important;
    }
    
    /* Fix button sizes */
    a.inline-block {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
}

/* Mobile menu styles */
#mobile-menu {
    background: white;
    border-top: 1px solid #e2e8f0;
}

#mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    color: #334155;
    font-weight: 500;
}

#mobile-menu a:hover {
    color: #2563eb;
}