/* Custom styles and animations */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #F9F7F0;
    color: #046B4B;
}

/* Hero Animations */
.hero-title {
    animation: slideUp 1s ease-out forwards;
}

.hero-fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.hero-image-fade-in {
    animation: fadeIn 1.2s ease-out forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Card Hover Effect */
.service-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navbar Scroll Effect */
.nav-scrolled {
    background-color: rgba(249, 247, 240, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(4, 107, 75, 0.1);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-scrolled a,
.nav-scrolled button {
    color: #046B4B !important;
}

/* Mobile Menu Transitions */
#mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

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

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

::-webkit-scrollbar-thumb {
    background: #046B4B;
    border-radius: 4px;
}

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

/* Selection Color */
::selection {
    background-color: #046B4B;
    color: #F9F7F0;
}
