@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

/* Rugged Himalayan Expedition Design System */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
}

.font-heading {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(to right, #ff8c42, #ff7a2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-rugged {
    box-shadow: 0 4px 30px -5px rgba(255, 140, 66, 0.2);
}

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

::-webkit-scrollbar-track {
    background: #18191f;
}

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

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

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}
