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

body {
    font-family: 'Inter', sans-serif;
    background-color: #050507;
    color: #ffffff;
    overflow-x: hidden;
}

.orange-glow {
    text-shadow: 0 0 15px rgba(255, 126, 51, 0.4);
}

.card-gradient {
    background: linear-gradient(145deg, #16161a 0%, #0a0a0c 100%);
    border: 1px solid rgba(255, 126, 51, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary {
    background: linear-gradient(to right, #ff7e33, #e65c00);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(255, 126, 51, 0.5);
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

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

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.led-pulse {
    animation: led-glow 2s ease-in-out infinite alternate;
}

@keyframes led-glow {
    from {
        box-shadow: 0 0 15px rgba(255, 126, 51, 0.2);
    }

    to {
        box-shadow: 0 0 35px rgba(255, 126, 51, 0.5);
    }
}

/* Mobile specific font scale-down */
@media (max-width: 640px) {
    h1 {
        font-size: 2.25rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    .text-xl {
        font-size: 1rem !important;
    }

    .text-lg {
        font-size: 0.875rem !important;
    }

    .p-10 {
        padding: 1.5rem !important;
    }

    .p-12 {
        padding: 1.5rem !important;
    }
}

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

::-webkit-scrollbar-track {
    background: #0a0a0c;
}

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

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

/* Truck Logo Animation */
.truck-logo {
    animation: drive 3s ease-in-out infinite;
}

@keyframes drive {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(3px);
    }

    100% {
        transform: translateX(0);
    }
}