/* Custom CSS for AISEOTX */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

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

/* Custom button styles */
.btn-primary {
    @apply bg-aiseotx-red text-white px-6 py-3 rounded-lg font-semibold transition-all duration-200 hover:scale-105 hover:shadow-lg focus:outline-none focus:ring-2 focus:ring-aiseotx-red focus:ring-offset-2;
}

.btn-secondary {
    @apply bg-white text-aiseotx-red border-2 border-aiseotx-red px-6 py-3 rounded-lg font-semibold transition-all duration-200 hover:bg-aiseotx-red hover:text-white focus:outline-none focus:ring-2 focus:ring-aiseotx-red focus:ring-offset-2;
}

/* Card styles */
.card {
    @apply bg-white rounded-xl shadow-md hover:shadow-xl transition-all duration-300 hover:-translate-y-1 border border-cool-gray/10;
}

.card-header {
    @apply h-2 rounded-t-xl;
}

/* Custom animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

/* Section spacing */
section {
    @apply slide-up;
}

/* Typography utilities */
.headline {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

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

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

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

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

/* Focus styles for accessibility */
a:focus, button:focus {
    @apply outline-none ring-2 ring-aiseotx-red ring-offset-2;
}

/* Loading states */
.loading {
    @apply opacity-50 pointer-events-none;
}

/* Custom badge styles */
.badge {
    @apply inline-block px-2 py-1 text-xs font-semibold rounded;
}

.badge-red {
    @apply bg-aiseotx-red text-white;
}

/* Form styles */
.form-input {
    @apply w-full px-4 py-3 border border-cool-gray/30 rounded-lg focus:ring-2 focus:ring-aiseotx-red focus:border-transparent transition-all duration-200;
}

/* Mobile menu animation */
.mobile-menu-enter {
    transform: translateX(100%);
}

.mobile-menu-enter-active {
    transform: translateX(0);
    transition: transform 0.3s ease-out;
}

.mobile-menu-exit {
    transform: translateX(0);
}

.mobile-menu-exit-active {
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
}