@charset "utf-8";
/* Minimal Responsive CSS - Most responsive design handled by Tailwind classes */

/* Container max-width override for extra large screens */
@media (min-width: 1536px) {
    .container {
        max-width: 1350px !important;
    }
}

/* Prevent horizontal scroll */
body, html {
    overflow-x: hidden;
    max-width: 100%;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile menu animation */
.mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Prevent iOS zoom on input focus */
@media screen and (max-width: 767px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Ensure proper spacing for fixed header on mobile */
@media screen and (max-width: 767px) {
    section:first-of-type {
        margin-top: 80px;
    }
}
