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

.hero-section {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(10, 10, 10, 1)), url('../img/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-footer-custom {
    background-image:
        linear-gradient(to bottom, rgba(24, 24, 27, 0.95) 0%, rgba(5, 5, 5, 0.98) 100%),
        url('../img/hero.jpeg');
    background-size: cover;
    background-position: center;
}

.btn-solid-orange {
    background-color: #FF5500;
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 1px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(255, 85, 0, 0.3);
}

.btn-solid-orange:hover {
    background-color: #ff6a00;
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 85, 0, 0.6);
}

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

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

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

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #18181b;
}

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

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

.nav-scrolled {
    background-color: rgba(24, 24, 27, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}