/* =====================================================
   CRITICAL LOADING STYLES - Prevent FOUC
   ===================================================== */

/* Hide content until styles load to prevent flash */
.featured-tours-section {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-tours-section.loaded {
    opacity: 1;
}

/* Loading skeleton for featured tours */
.featured-tours-loading {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    justify-content: center;
}

.skeleton-card {
    width: 320px;
    height: 240px;
    background: linear-gradient(90deg, var(--border-light) 25%, var(--border-color) 50%, var(--border-light) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 12px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Ensure header and hero load first */
.getyourguide-header,
.hero-section {
    position: relative;
    z-index: 1000;
}

/* Prevent layout shift */
.tour-card-skeleton {
    min-height: 350px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* Critical sections stay visible */
.getyourguide-header,
.hero-section,
.search-section {
    visibility: visible !important;
    opacity: 1 !important;
}