/* Custom styles that complement Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F2E8D9;
}
::-webkit-scrollbar-thumb {
    background: #B85A38;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #8a4329;
}

/* Fade In Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image Aspect Ratios */
.img-aspect-4-5 {
    aspect-ratio: 4/5;
}

.img-aspect-16-9 {
    aspect-ratio: 16/9;
}

/* Print Styles */
@media print {
    nav, .mobile-menu-btn, #contactForm button {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
}
