/* ================================
   VIBRANT TOURS ARCHIVE PAGE
   Archive-specific overrides only
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

.tours-archive-container {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Bold Archive Hero */
.archive-hero {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.archive-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.archive-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.archive-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.archive-title {
    font-size: 4.5rem;
    color: white;
    margin: 0 0 20px 0;
    font-weight: 700;
    letter-spacing: -2px;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.archive-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* Archive Content */
.archive-content {
    padding: 80px 0 100px;
}

/* Container for archive page */
.tours-archive-container .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Colorful Category Filter Header */
.category-filter-header {
    margin-bottom: 60px;
    text-align: center;
    padding: 50px 60px;
    background: white;
    border-radius: 24px;
    border: 3px solid #2563eb;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
    position: relative;
    overflow: hidden;
}

.category-filter-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #2563eb);
}

.filtered-category-title {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    font-weight: 700;
    letter-spacing: -1px;
    font-family: 'Playfair Display', serif;
}

.category-description {
    font-size: 1.2rem;
    color: #6b7280;
    margin: 0 0 35px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.clear-filter,
.clear-filter-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.clear-filter:hover,
.clear-filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    text-decoration: none;
    color: white;
}

/* Vibrant No Tours Found */
.no-tours-found,
.no-tours-message {
    text-align: center;
    padding: 100px 40px;
    grid-column: 1 / -1;
    background: white;
    border-radius: 24px;
    border: 3px dashed #e5e7eb;
}

.no-tours-icon {
    width: 100px;
    height: 100px;
    stroke: #3b82f6;
    stroke-width: 2;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 15px rgba(59, 130, 246, 0.2));
}

.no-tours-found h3 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.no-tours-found p {
    font-size: 1.2rem;
    color: #6b7280;
    margin: 0 0 40px 0;
    font-family: 'Inter', sans-serif;
}

.btn-view-all {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(37, 99, 235, 0.4);
    text-decoration: none;
    color: white;
}

/* Archive Tour Cards Grid */
.all-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Archive Card Overrides */
.tours-archive-container .tour-card {
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
    height: 480px;
}

.tours-archive-container .tour-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.tours-archive-container .tour-card .card-image-wrapper {
    height: 240px;
}

.tours-archive-container .tour-card .card-content {
    padding: 25px;
}

.tours-archive-container .tour-card .card-category {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    padding: 6px 16px;
    font-family: 'Inter', sans-serif;
}

.tours-archive-container .tour-card .card-title {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.tours-archive-container .tour-card .meta-icon {
    stroke: #3b82f6;
}

.tours-archive-container .tour-card .price-amount {
    font-size: 1.8rem;
    color: #2563eb;
    font-family: 'Playfair Display', serif;
}

.tours-archive-container .tour-card .card-action {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    padding: 12px 28px;
    opacity: 0;
    transform: translateX(-10px);
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.tours-archive-container .tour-card:hover .card-action {
    opacity: 1;
    transform: translateX(0);
}

.tours-archive-container .tour-card .card-action:hover {
    transform: translateX(0) translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .tours-archive-container .container {
        padding: 0 30px;
    }

    .archive-hero {
        padding: 80px 0 60px;
    }

    .archive-title {
        font-size: 3rem;
    }

    .archive-description {
        font-size: 1.1rem;
    }

    .category-filter-header {
        padding: 40px 30px;
    }

    .filtered-category-title {
        font-size: 2.5rem;
    }

    .archive-content {
        padding: 60px 0 80px;
    }

    .all-tours-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .archive-title {
        font-size: 2.2rem;
    }

    .filtered-category-title {
        font-size: 2rem;
    }

    .category-filter-header {
        padding: 30px 20px;
    }

    .tours-archive-container .tour-card .card-title {
        font-size: 1.3rem;
    }
}