/* ============================================================
   ACTIVITIES - MapoYes Theme Styling
   ============================================================ */

/* === PAGE HEADER/HERO === */
.bg-holder {
    position: relative;
    min-height: 200px;
    margin-bottom: 0;
}

.bg-holder .bg-img {
    background-size: cover;
    background-position: center;
}

.bg-holder .bg-mask {
    background: linear-gradient(135deg, rgba(0, 140, 147, 0.85) 0%, rgba(199, 223, 77, 0.7) 100%);
}

.bg-holder .page-title {
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* === BREADCRUMBS === */
.breadcrumb,
.breadcrumb-line {
    background-color: #008C93;
    color: #fff;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 0;
}

.breadcrumb a,
.breadcrumb-line a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb-line a:hover {
    color: #bfde50;
}

.breadcrumb > .active,
.breadcrumb-line > .active {
    color: rgba(255,255,255,0.8);
}

.breadcrumb > li + li::before {
    color: rgba(255,255,255,0.6);
}

/* === SECTION TITLES === */
h3.mb20 {
    color: #055C61;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #bfde50;
}

/* === ACTIVITY CARDS (Popular Section) === */
.alert.alert-info {
    background-color: transparent;
    border: none;
    padding: 0;
}

.thumb.img-thumbnail {
    background: #fff !important;
    border: none !important;
    border-radius: 20px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.12);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.thumb.img-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 4px 4px 15px rgba(0,0,0,0.2);
}

.thumb-header {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.thumb-header img {
    width: 100%;
    height: 160px !important;
    min-height: 160px !important;
    max-height: 160px !important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumb.img-thumbnail:hover .thumb-header img {
    transform: scale(1.05);
}

.thumb-caption {
    padding: 15px !important;
    background: #fff;
}

/* Location text */
.thumb-caption small {
    color: #0B8C93;
    font-size: 12px;
}

.thumb-caption small i {
    color: #0B8C93;
}

/* Card title */
.thumb-title,
.thumb-caption h5,
.thumb-caption h6 {
    color: #055C61;
    font-weight: 600 !important;
    margin: 8px 0;
    line-height: 1.3;
}

.thumb-title a,
.thumb-caption h5 a,
.thumb-caption h6 a {
    color: #055C61;
    text-decoration: none;
}

.thumb-title a:hover,
.thumb-caption h5 a:hover,
.thumb-caption h6 a:hover {
    color: #0B8C93;
}

/* === ACTIVITY TYPE BADGES === */
.label.label-info {
    background-color: #0B8C93 !important;
    color: #fff !important;
    border-radius: 15px;
    padding: 5px 12px;
    font-weight: 500;
    font-size: 11px;
}

.label.label-info i {
    margin-right: 3px;
}

/* Duration text styling */
.thumb-caption p.text-small {
    color: #666;
    font-size: 13px;
}

.thumb-caption p.text-small i {
    color: #0B8C93;
}

/* === GRID ITEMS (All Activities Section) === */
.col-md-3 > .thumb.img-thumbnail {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.col-md-3 > .thumb.img-thumbnail .thumb-caption {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* === HOVER OVERLAY === */
.hover-img {
    display: block;
    position: relative;
    overflow: hidden;
}

.hover-title-bottom-right,
.hover-title-center {
    position: absolute;
    background: #0B8C93;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.hover-title-bottom-right {
    bottom: 10px;
    right: 10px;
}

/* === GAP SPACING === */
.gap {
    height: 30px;
}

.gap-small {
    height: 15px;
}

.gap-big {
    height: 50px;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 767px) {
    .bg-holder .page-title {
        font-size: 24px;
    }

    h3.mb20 {
        font-size: 20px;
    }

    .thumb.img-thumbnail {
        margin-bottom: 15px;
    }

    .thumb-header img {
        height: 140px !important;
        min-height: 140px !important;
        max-height: 140px !important;
    }
}
