/* Driven Nation Custom Styles */

/* Custom color variables */
:root {
    --driven-red: #dc3545;
    --driven-red-dark: #c82333;
    --driven-grey: #6c757d;
    --driven-grey-dark: #495057;
    --driven-grey-light: #f8f9fa;
}

/* Enhanced button hover effects */
.button.is-danger:hover {
    background-color: var(--driven-red-dark);
    border-color: var(--driven-red-dark);
}

/* Card hover effects */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero section enhancements */
.hero.is-dark {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

/* Navigation enhancements */
.navbar-brand .navbar-item:hover {
    background-color: rgba(220, 53, 69, 0.1) !important;
}

.navbar-item:hover {
    background-color: rgba(220, 53, 69, 0.1) !important;
}

/* Icon animations */
.icon.is-large i {
    transition: transform 0.3s ease-in-out;
}

.icon.is-large:hover i {
    transform: scale(1.1);
}

/* Custom section spacing */
.section {
    padding: 3rem 1.5rem;
}

/* Footer enhancements */
.footer {
    padding: 3rem 1.5rem 1.5rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a:hover {
    color: var(--driven-red) !important;
}

/* Social media buttons */
.footer .button:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}

/* Responsive text adjustments */
@media (max-width: 768px) {
    .title.is-1 {
        font-size: 2.5rem;
    }
    
    .subtitle.is-4 {
        font-size: 1.25rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom focus styles for accessibility */
.button:focus,
.navbar-item:focus {
    outline: 2px solid var(--driven-red);
    outline-offset: 2px;
}

/* Loading animation for icons */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease-out;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--driven-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--driven-red-dark);
} 