/* Custom styles and overrides */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #580016;
}

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

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

/* Mobile menu animations */
#mobile-menu {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for cards */
.group:hover .group-hover\:rotate-2 {
    transform: rotate(2deg);
}

/* Gradient backgrounds */
.gradient-blush {
    background: linear-gradient(135deg, #FDF2F5 0%, #F5E0E6 100%);
}

/* Button focus states */
button:focus, a:focus, input:focus, select:focus, textarea:focus {
    outline: none;
}

/* Print styles */
@media print {
    nav, #mobile-menu-btn, #contactForm, button {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .bg-heartland-burgundy {
        background: #800020 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
