/* Custom Styles for IMPVD Group */

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

/* Typography Adjustments */
body {
    font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f5f5f4; /* stone-100 */
}

::-webkit-scrollbar-thumb {
    background: #1c1917; /* stone-900 */
}

::-webkit-scrollbar-thumb:hover {
    background: #b45309; /* Amber-700 */
}

/* Animation Utilities */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delays for staggered animations */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Mobile Menu Transition */
#mobile-menu {
    transition: opacity 0.5s ease;
}

#mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

/* Form Focus States */
input:focus, select:focus, textarea:focus {
    border-bottom-color: #b45309;
    background-color: #fafaf9;
}

/* Image Hover Zoom Effect */
img {
    transition: transform 0.5s ease;
}

/* Asymmetric Grid Adjustments for Mobile */
@media (max-width: 1023px) {
    .lg\:col-span-5 {
        width: 100%;
    }
    .lg\:col-start-8 {
        grid-column-start: auto;
    }
}
