/**
 * Taxonomy Archive Styles
 * Styles for travel_cities and travel_topics taxonomy pages
 * 
 * @package Daily_Travel_Fix
 * @since 1.0.1
 */

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.object-fit-cover {
    object-fit: cover;
}

.city-card-hover:hover img {
    transform: scale(1.05);
}

/* Destination Hero */
.destination-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}

.destination-hero-content {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Breadcrumbs */
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Pagination */
.pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    border-radius: 4px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
}

.pagination .page-numbers.current {
    background: #ff6b6b;
    color: #fff;
}

/* Filter Bar */
.destination-filters {
    border-radius: 12px;
}

.filter-btn {
    transition: all 0.2s ease;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Card Styles */
.city-card {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.city-card-img {
    height: 200px;
    overflow: hidden;
}

.city-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* Article Cards */
.article-card {
    border-radius: 12px;
    overflow: hidden;
}

.article-card-img {
    height: 220px;
    width: 100%;
}

.article-card-badge {
    background-color: #ff6b6b !important;
}

/* Sidebar Widgets */
.sidebar-widget {
    border-radius: 12px;
}

.widget-newsletter {
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.widget-icon-circle {
    color: rgba(255, 107, 107, 0.1) !important;
}

.widget-icon-primary {
    color: #ff6b6b !important;
}

.ad-placeholder {
    height: 250px;
    border-radius: 12px;
    border: 2px dashed #e9ecef;
}

.booking-widget {
    background-color: #2d3436 !important;
    border-radius: 12px;
}

/* Curated Sections */
.curated-section {
    margin-bottom: 3rem;
}

.curated-card {
    height: 160px;
    width: 100%;
}

/* Primary Color Override */
.text-primary-dtf {
    color: #ff6b6b !important;
}

.bg-primary-dtf {
    background-color: #ff6b6b !important;
}

.border-primary-dtf {
    border-color: #ff6b6b !important;
}

.btn-primary-dtf {
    background-color: #ff6b6b;
    border-color: #ff6b6b;
    color: white;
}

.btn-primary-dtf:hover {
    background-color: #ff5252;
    border-color: #ff5252;
}

.btn-outline-primary-dtf {
    color: #ff6b6b;
    border-color: #ff6b6b;
}

.btn-outline-primary-dtf:hover {
    background-color: #ff6b6b;
    border-color: #ff6b6b;
    color: white;
}

/* Related Topics Tags */
.topic-badge {
    transition: all 0.2s ease;
}

.topic-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .destination-hero {
        height: 350px;
    }
    
    .filter-btn {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }
    
    .article-card-img,
    .curated-card {
        height: 180px;
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
}

.empty-state-icon {
    font-size: 4rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}
