/* ═══════════════════════════════════════════
   ACTIVITY LIST PAGE — activity-list.css
   ═══════════════════════════════════════════ */

.tour-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: #2d5a27 url('../img/tour.png') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -100px;
    /* Pull back up to go under transparent nav */
}

.tour-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.tour-hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3rem 5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-subtitle-top {
    font-size: 1.5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--tour-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-main-title {
    font-size: 3.5rem;
    margin: 0.5rem 0;
    color: #1a1a1a;
}

.activity-list-page {
    background: #fff;
    min-height: 100vh;
    padding-top: 100px;
}

/* ═══ BACK BUTTON ═══ */
.al-top-bar {
    padding: 2rem 3rem 1rem;
}

.al-back-btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border: 1px solid #333;
    font-size: 0.7rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.al-back-btn:hover {
    background: #333;
    color: #fff;
}

/* ═══ SECTION HEADING ═══ */
.al-section-heading {
    padding: 1.5rem 3rem 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    font-style: italic;
    color: #111;
    margin-bottom: 0;
}

/* ═══ ACTIVITY GRID ═══ */
.al-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 3rem 4rem;
    gap: 2rem 1.5rem;
}

/* ═══ ACTIVITY ITEM ═══ */
.al-product-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    padding-bottom: 20px;
    border-radius: 5px;
}

.al-product-item:hover {
    transform: translateY(-4px);
}

.al-product-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f0f0f0;
    margin-bottom: 0.8rem;
    border-radius: 4px;
}

.al-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.al-product-item:hover .al-product-img-wrap img {
    transform: scale(1.05);
}

.al-product-name {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: #222;
    text-decoration: none;
    margin-bottom: 0.15rem;
    line-height: 1.4;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 20px;
    text-decoration: none;
}

.al-product-name:hover {
    color: #000;
}

.al-product-price {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    color: #222;
    font-weight: 400;
    margin-left: 20px;
}

/* ═══ SECTION DIVIDER ═══ */
.al-section-divider {
    height: 2px;
    background: #e0e0e0;
    margin: 0 3rem 4rem;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
    .al-product-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.5rem 3rem;
    }

    .al-section-heading {
        padding: 1.5rem 1.5rem 1.5rem;
        font-size: 1.6rem;
    }

    .al-top-bar {
        padding: 1.5rem 1.5rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .al-product-grid {
        grid-template-columns: 1fr;
    }
}