/* Custom styles for Zeus vs Hades landing page */

/* Font family setup */
body {
    font-family: 'Montserrat', sans-serif;
}

/* Custom utility classes */
.hero-gradient {
    background: linear-gradient(135deg, #1f2937 0%, #111827 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.cta-button-primary {
    background: linear-gradient(to right, #f59e0b, #dc2626);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.cta-button-secondary {
    background: linear-gradient(to right, #4f46e5, #7c3aed);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.cta-button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.cta-button-outline {
    background: transparent;
    color: #f59e0b;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid #f59e0b;
}

.cta-button-outline:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
}

/* Animation for stats */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(245, 158, 11, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(245, 158, 11, 0.8);
    }
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #f59e0b, #dc2626);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #eab308, #b91c1c);
}

/* Section animations */
section {
    animation: fadeIn 0.8s ease-out;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-gradient {
        padding: 2rem 1.5rem !important;
    }
    
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
}

/* Image hover effects */
img {
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

/* Card hover effects */
.bg-gradient-to-br {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-gradient-to-br:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}