/* Airport Information Page Styles */

/* Airport marker on map */
.airport-marker {
    background: transparent;
    border: none;
}

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

#content > * {
    animation: slideInUp 0.6s ease-out;
}

/* Stagger animations for sections */
#content section:nth-child(1) { animation-delay: 0.1s; }
#content section:nth-child(2) { animation-delay: 0.2s; }
#content section:nth-child(3) { animation-delay: 0.3s; }
#content section:nth-child(4) { animation-delay: 0.4s; }

/* Map container */
#map {
    z-index: 1;
}

/* Frequency cards hover effect */
#frequencies-list > div {
    transition: all 0.3s ease;
}

#frequencies-list > div:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
    border-color: rgba(59, 130, 246, 0.5);
}

/* Runway cards hover */
#runways-list > div {
    transition: all 0.3s ease;
}

#runways-list > div:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

/* Coming soon section pulse */
#coming-soon-section {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

/* Responsive map */
@media (max-width: 768px) {
    #map {
        height: 300px !important;
    }
}
