/* Custom Styles for Dr. Solsky Website */

/* Base Typography */
body {
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, blockquote {
    font-family: 'Lora', serif;
}

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

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

::-webkit-scrollbar-track {
    background: #F7F3E8;
}

::-webkit-scrollbar-thumb {
    background: #A64A2F;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #863C29;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

#mobile-menu.open {
    transform: translateX(0);
}

#mobile-menu.closed {
    transform: translateX(100%);
}

/* Hover Effects */
.group:hover .group-hover\:bg-terra-50 {
    background-color: #FDF8F6;
}

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

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

/* Print Styles */
@media print {
    nav, #contact-form, button {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .bg-terra-900, .bg-stone-850 {
        background: #fff !important;
        color: #000 !important;
        border: 1px solid #ccc;
    }
}
