/* Custom Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 0.8s forwards 0.2s;
}

.animate-slide-up {
    transform: translateY(50px);
    animation: slideUp 0.8s forwards 0.3s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to { transform: translateY(0); }
}

/* Enhance Button Hover */
button:hover, a.inline-block:hover {
    transition: all 0.3s ease;
}

/* Ensure Mobile Nav Spacing */
#menu {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
}

/* Custom Font Adjustments (if needed) */
body {
    font-family: 'Arial', sans-serif; /* Replace with your preferred font if uploaded */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Responsive Image Max Height */
img {
    max-height: 300px; /* Adjust as needed to prevent overflow */
    object-fit: cover;
}