/* Custom styles for AI Logbook Analysis Demo */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Animation for feature cards */
.bg-white {
    transition: transform 0.3s ease-in-out;
}

.bg-white:hover {
    transform: translateY(-5px);
}

/* Custom button styles */
button {
    transition: all 0.3s ease;
}

button:hover {
    transform: scale(1.05);
}

/* Code block styling */
pre {
    background-color: #1a1a1a;
    color: #f8f8f8;
    padding: 1rem;
    border-radius: 0.5rem;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.5;
}

/* Navigation link hover effect */
nav a {
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #4a5568;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-4xl {
        font-size: 2rem;
    }
    
    .text-3xl {
        font-size: 1.75rem;
    }
    
    .text-xl {
        font-size: 1.25rem;
    }
} 