/* Custom CSS for Full Throttle Cycle & Machine */

:root {
    --navy-900: #0a1628;
    --navy-800: #111d35;
    --navy-700: #1a2744;
    --gold-400: #f59e0b;
    --gold-500: #d97706;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--navy-900);
    color: #fff;
    overflow-x: hidden;
}

.font-space-grotesk {
    font-family: 'Space Grotesk', sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

/* Gradient Backgrounds */
.bg-gradient-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.bg-gradient-card {
    background: linear-gradient(145deg, #111d35 0%, #0a1628 100%);
}

/* Gold Button */
.btn-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0a1628;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    border: 2px solid rgba(245, 158, 11, 0.5);
    color: #f59e0b;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    transform: translateY(-2px);
}

/* Shadows */
.shadow-gold {
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.shadow-blue {
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.shadow-green {
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.shadow-red {
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

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

::-webkit-scrollbar-track {
    background: var(--navy-900);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .font-space-grotesk {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2.5rem !important;
    }
    
    .bg-gradient-gold,
    .bg-gradient-card {
        background: var(--navy-800);
    }
}

/* Focus Styles for Accessibility */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

/* Selection Color */
::selection {
    background: rgba(245, 158, 11, 0.3);
    color: #fff;
}
