/* Custom styles for landing page */

/* Dark mode support */
:root {
    --transition-speed: 200ms;
}

/* Kanban mockup styles */
.kanban-column {
    min-height: 300px;
}

.job-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.2s;
}

.dark .job-card {
    background: #1f2937;
    border-color: #374151;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.company-logo {
    width: 32px;
    height: 32px;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
    color: white;
}

.company-logo.google {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc04 100%);
}

.company-logo.microsoft {
    background: linear-gradient(135deg, #f25022 0%, #7fba00 50%, #00a4ef 100%);
}

.company-logo.amazon {
    background: linear-gradient(135deg, #ff9900 0%, #232f3e 100%);
}

.company-logo.apple {
    background: linear-gradient(135deg, #000000 0%, #666666 100%);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kanban-column {
    animation: fadeIn 0.6s ease-out;
}

.kanban-column:nth-child(2) {
    animation-delay: 0.1s;
}

.kanban-column:nth-child(3) {
    animation-delay: 0.2s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .kanban-column {
        min-height: 200px;
    }
}

/* Focus styles for accessibility */
button:focus-visible,
input:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Tally.io iframe styling */
#tally-form-container {
    min-height: 277px;
}

#tally-form-container iframe {
    border-radius: 0.5rem;
    background: transparent;
}

/* Ensure Tally form works in dark mode */
.dark #tally-form-container iframe {
    background: transparent;
}

/* Print styles */
@media print {
    .no-print {
        display: none;
    }
}

