/* =============================================================================
   LatviaTravel.lv — Travel Section Styles
   Vibrant: greens, blues, nature feel. Large imagery.
   ============================================================================= */

.travel-section {
    --section-primary: #0d6efd;
    --section-accent: #198754;
    --section-light: #e8f4fd;
    --section-card-bg: #f0fdf4;
    --section-card-border: #bbf7d0;
    --section-hero-gradient: linear-gradient(135deg, #0d6efd 0%, #059669 100%);
    --section-link-color: #059669;
}

/* ─── Hero ─────────────────────────────────────────── */
.travel-section .hero-travel {
    background: var(--section-hero-gradient);
    min-height: 55vh;
    display: flex;
    align-items: center;
}
.travel-section .hero-travel h1 {
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.travel-section .hero-travel .lead {
    text-shadow: 0 1px 5px rgba(0,0,0,0.15);
}

/* ─── Category Cards ───────────────────────────────── */
.travel-cat-card {
    background: var(--section-card-bg);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.travel-cat-card:hover {
    border-color: var(--section-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,100,0,0.12);
    background: #dcfce7;
}
.travel-cat-card .card-body {
    color: #14532d;
    padding: 2rem 1rem;
}
.travel-cat-card .bi {
    color: var(--section-accent);
    transition: transform 0.3s ease;
}
.travel-cat-card:hover .bi {
    transform: scale(1.15);
}

/* ─── Subcategory Grid ─────────────────────────────── */
.travel-subcat-card {
    background: #fff;
    border: 1px solid #d1fae5;
    border-radius: 10px;
    transition: all 0.25s ease;
}
.travel-subcat-card:hover {
    border-color: var(--section-accent);
    background: #f0fdf4;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(5,150,105,0.12);
}

/* ─── Listing Cards ────────────────────────────────── */
.travel-listing-card {
    border: 2px solid #d1fae5;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    margin-bottom: 1.5rem;
}
.travel-listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,100,0,0.15);
    border-color: var(--section-accent);
}
.travel-listing-card .card-img-top {
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid var(--section-accent);
}
.travel-listing-card .card-body {
    padding: 1.25rem;
}
.travel-listing-card .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #14532d;
}
.travel-listing-card .card-text {
    color: #4a7c5f;
    line-height: 1.5;
}
.travel-listing-card .listing-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
}
.travel-listing-card .badge-travel {
    background: var(--section-accent);
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
}
.travel-listing-card .verified-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(5,150,105,0.9);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* ─── Listing Card List Layout ─────────────────────── */
.travel-listing-list .travel-listing-card {
    display: flex;
    flex-direction: row;
}
.travel-listing-list .travel-listing-card .card-img-top {
    width: 280px;
    min-width: 280px;
    height: auto;
    min-height: 200px;
}
.travel-listing-list .travel-listing-card .card-body {
    flex: 1;
}
@media (max-width: 767.98px) {
    .travel-listing-list .travel-listing-card {
        flex-direction: column;
    }
    .travel-listing-list .travel-listing-card .card-img-top {
        width: 100%;
        min-width: auto;
        height: 200px;
    }
}

/* ─── Breadcrumb ────────────────────────────────────── */
.travel-section .breadcrumb-travel {
    background: #f0fdf4;
    border-bottom: 2px solid #d1fae5;
}

/* ─── Featured Labels ───────────────────────────────── */
.travel-featured-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}