/* RESET */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* ================= TOP BAR ================= */
.top-bar {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
    padding: 6px 0;
}

.top-text {
    color: #333;
}

.top-social a {
    color: #333;
    margin-left: 12px;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
}

.top-social a:hover {
    color: #198754; /* Bootstrap green */
}

/* ================= NAVBAR ================= */
.main-navbar {
    padding: 14px 0;
}

.navbar-brand {
    letter-spacing: 1px;
}

/* ================= HERO (optional, for testing) ================= */
.hero-section {
    height: 60vh;
    background: url("../images/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

/* ================= ACTIVITIES ================= */

.activities-section {
    background: #f8f9fa;
}

.activity-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-6px);
}

.activity-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.activity-content {
    padding: 20px;
}

.activity-content h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.activity-meta {
    font-size: 14px;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.activity-meta i {
    margin-right: 6px;
    color: #198754;
}

.hero-pages {
    height: 200px;
    background-image: url("../images/bar_bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.hero-pages .entry-header {
    width: 100%;
}
.activity-detail h3 {
    margin-top: 30px;
    font-weight: 600;
}

.activity-meta span {
    font-size: 0.95rem;
    color: #555;
}

.activity-detail ul {
    padding-left: 18px;
}
