/* Custom CSS for Mary Knapp Team */

:root {
    --forest-dark: #1A4D2E;
    --forest-light: #2D6A4F;
    --off-white: #F8F7F4;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

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

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar Styles */
#navbar.scrolled {
    background-color: rgba(248, 247, 244, 0.98);
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(26, 77, 46, 0.1);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

/* Mobile Menu */
#mobile-menu.open {
    transform: translateX(0);
}

/* Form Styles */
input:focus,
select:focus,
textarea:focus {
    border-bottom-color: var(--forest-dark) !important;
}

/* Image Hover Effects */
.group:hover .group-hover\\:translate-x-1 {
    transform: translateX(4px);
}

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

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--forest-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--forest-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .font-serif {
        font-size: 2rem;
    }
}
