/* Miami IT Custom Styles */

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.8s ease-out;
}

/* Button transitions */
button,
a.button,
.btn {
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

button:active,
a.button:active,
.btn:active {
    transform: scale(0.98);
}

/* Card hover effects */
.group:hover {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Focus styles for accessibility */
input:focus,
textarea:focus,
button:focus,
select:focus {
    outline: 2px solid #0891b2;
    outline-offset: 2px;
}

/* Navigation Menu Styles */
.primary-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    margin: 0;
}

.primary-menu a {
    color: #334155;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
    color: #0891b2;
}

/* Mobile Menu */
.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu a {
    color: #334155;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: #cbd5e1;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: #22d3ee;
}

/* Utility Classes */
.text-cyan-600 {
    color: #0891b2;
}

.bg-cyan-600 {
    background-color: #0891b2;
}

.bg-cyan-700 {
    background-color: #0e7490;
}

.text-slate-900 {
    color: #0f172a;
}

.bg-slate-900 {
    background-color: #0f172a;
}

.text-slate-600 {
    color: #475569;
}

.text-slate-300 {
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* WordPress Admin Bar Fix */
body.admin-bar header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar header {
        top: 46px;
    }
}

/* Content Spacing */
.site-content {
    padding-top: 0;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
}
