/* =====================================================
   ACTIVITIES PAGE - Specific Styles
   ===================================================== */

/* Page Header */
.activities-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Subsection Titles */
.subsection-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--gray-200);
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.detail-block h4 {
    margin-top: 0;
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
}

.detail-block p,
.detail-block ul {
    color: var(--gray-700);
    margin: 0;
}

.detail-block ul {
    padding-left: var(--space-lg);
}

.detail-block li {
    margin-bottom: var(--space-xs);
}

.detail-block a {
    color: var(--primary);
}

/* Activity Tags */
.activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.tag {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
}

.tag-adrenaline {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.tag-chill {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.tag-fun {
    background: #fefce8;
    color: #ca8a04;
    border: 1px solid #fef08a;
}

/* Rental Grid */
.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.rental-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-fast);
}

.rental-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.rental-card h4 {
    margin: 0 0 var(--space-xs) 0;
    color: var(--dark);
}

.rental-location {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.rental-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: var(--space-sm);
}

.rental-card ul {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.rental-card li {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: var(--space-xs);
}

.rental-card .btn {
    margin-top: var(--space-sm);
}

/* Tips Box Enhancements */
.tips-box h4 {
    margin-bottom: var(--space-md);
}

/* Multiple CTAs */
.cta-inline {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

/* Responsive */
@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
    }

    .rental-grid {
        grid-template-columns: 1fr;
    }

    .activity-tags {
        justify-content: center;
    }

    .cta-inline {
        flex-direction: column;
    }

    .cta-inline .btn {
        width: 100%;
        text-align: center;
    }
}
