.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

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

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #4be619;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-text {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-sub {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-btns {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-badge {
    animation: fadeIn 0.8s ease-out both;
}

.parallax-wrapper {
    perspective: 1000px;
}

.parallax-bg {
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.parallax-wrapper:hover .parallax-bg {
    transform: scale(1.08) translateY(-8px);
}

.tour-card:hover .tour-img {
    transform: scale(1.1);
}

.tour-img {
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
    background: #4be619;
    border-radius: 3px;
}

/* Mobile menu */
#mobile-menu {
    transition: all 0.3s ease;
}

.stats-counter {
    animation: fadeInUp 0.8s ease-out both;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
