body {
    background-color: #F5F0EB;
    color: #5A3E1B;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

#navbar {
    transition: all 0.5s ease-in-out;
}

#navbar.scrolled {
    background-color: rgba(26, 46, 26, 0.98);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#navbar.scrolled .nav-link {
    font-weight: 400;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    background-color: rgba(0, 0, 0, 0.25);
}

.team-img {
    filter: grayscale(100%);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.team-card:hover .team-img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

#mobile-menu {
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.btn-custom {
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.4s ease-in-out;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #2F4F2F;
    transition: width 0.4s ease-in-out;
    z-index: -1;
}

.btn-custom:hover::before {
    width: 100%;
}

.btn-custom:hover {
    border-color: transparent;
}

#modal-body::-webkit-scrollbar {
    width: 6px;
}

#modal-body::-webkit-scrollbar-thumb {
    background-color: #D8C3A5;
    border-radius: 3px;
}