 /* Custom Styles for things Tailwind is too verbose for */
 .hero-bg {
     background-image: linear-gradient(rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.7)), url('https://images.unsplash.com/photo-1518544469608-250325f617da?q=80&w=2070&auto=format&fit=crop');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
 }

 .fade-enter-active,
 .fade-leave-active {
     transition: opacity 0.3s ease;
 }

 .fade-enter-from,
 .fade-leave-to {
     opacity: 0;
 }

 .fade-enter-active .modal-content {
    animation: modal-in 0.3s ease-out forwards;
 }

 .fade-leave-active .modal-content {
    animation: modal-in 0.2s ease-in reverse forwards;
 }

 @keyframes modal-in {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
 }

/* Airport booking form input */
.airport-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    color: #1f2937;
    background-color: #f9fafb;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    outline: none;
}

.airport-input:focus {
    border-color: #FFB800;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.15);
}

.airport-input::placeholder {
    color: #9ca3af;
}