/* Hero Section */
.activity-detail-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Fallback gradient when no image */
.activity-detail-hero:not([style*="background-image"]) {
    background: linear-gradient(135deg, #63AB45 0%, #113D48 100%);
}

/* Gradient overlay for better text readability */
.activity-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 61, 72, 0.75) 0%, rgba(10, 31, 36, 0.85) 50%, rgba(99, 171, 69, 0.4) 100%);
    z-index: 1;
}

.activity-detail-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-detail-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.activity-detail-hero-content > div {
    width: 100%;
    max-width: 900px;
}

.activity-detail-hero h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .activity-detail-hero h1 {
        font-size: 36px;
    }
}

.activity-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.meta-item i {
    font-size: 18px;
}

/* Breadcrumb */
.breadcrumb-detail {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-list li {
    font-size: 15px;
    color: #687179;
}

.breadcrumb-list a {
    color: #63AB45;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-list a:hover {
    color: #113D48;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: #E1E4E5;
}

/* Main Content */
.activity-detail-content {
    padding: 80px 0;
    background: #F7F7F7;
}

.content-section {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .content-section {
        padding: 30px 20px;
    }
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0A1F24;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #63AB45;
    display: inline-block;
}

.description-text {
    font-size: 17px;
    line-height: 1.9;
    color: #687179;
    margin-bottom: 25px;
}

.additional-description {
    background: #F7F7F7;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #63AB45;
    margin-top: 30px;
}

/* Image Gallery */
.activity-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    padding-top: 75%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-image-item:hover img {
    transform: scale(1.05);
}

.gallery-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(99, 171, 69, 0.95);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.gallery-image-item:hover .gallery-zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #F7F7F7;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: #E1E4E5;
    transform: translateX(5px);
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #63AB45 0%, #113D48 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.feature-text {
    font-size: 16px;
    color: #687179;
    line-height: 1.6;
    flex: 1;
}

/* Municipality Points */
.municipality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.municipality-card {
    background: linear-gradient(135deg, #63AB45 0%, #113D48 100%);
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(99, 171, 69, 0.3);
    transition: all 0.3s ease;
}

.municipality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(99, 171, 69, 0.4);
}

.municipality-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.municipality-card p {
    font-size: 14px;
    opacity: 0.95;
    margin: 0;
}

/* Sidebar */
.activity-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 22px;
    font-weight: 700;
    color: #0A1F24;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #E1E4E5;
}

.booking-widget {
    background: linear-gradient(135deg, #63AB45 0%, #113D48 100%);
    color: #fff;
}

.booking-widget .widget-title {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.booking-info {
    margin-bottom: 25px;
}

.booking-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-info-item:last-child {
    border-bottom: none;
}

.booking-info-item i {
    font-size: 20px;
    width: 30px;
}

.booking-btn {
    display: block;
    background: #fff;
    color: #113D48;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #113D48;
}

.share-widget {
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.email { background: #ea4335; }

.share-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Related Activities */
.related-activities {
    padding: 80px 0;
    background: #fff;
}

.related-activities-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #0A1F24;
    margin-bottom: 50px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.related-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-card-image {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
}

.related-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-card:hover .related-card-image img {
    transform: scale(1.1);
}

.related-card-content {
    padding: 25px;
}

.related-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #0A1F24;
    margin-bottom: 10px;
}

.related-card-desc {
    font-size: 14px;
    color: #687179;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #63AB45;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.related-card-link:hover {
    gap: 12px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

