/* Activity Page Styles */

.activity-page {
    min-height: 100vh;
}

.activity-hero {
    height: 700px;
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 3rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-weight: 300;
    line-height: 1.6;
}

/* Activity Content */
.activity-content {
    background: white;
}

.intro-section {
    padding: 1rem 3rem;
    margin-bottom: 0;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #93241F;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    text-align: center;
    display: block;
}

.section-title {
    font-weight: 500;
    font-size: 34px;
    line-height: 45px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: #93241F;
    margin: 20px auto 0;
    border-radius: 2px;
}

.intro-text {
    font-size: 1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.intro-text ul{
    list-style: none;
}

/* Activity Sections */
.activity-section {
    margin-bottom: 0;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.section-text {
    padding: 2rem 0;
}

.section-heading {
    font-size: 1.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 1rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #93241F;
    border-radius: 2px;
}

.section-description {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 1.5rem;
}

.section-image {
    position: relative;
    overflow: hidden;
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.section-image:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* CTA Section */
.sub-section {
    background: #93241F;
    color: white;
    padding: 4rem 3rem;
    text-align: center;
    margin: 4rem 0;
}

.sub-sctn-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.sub-sctn-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.sub-section .btn-primary {
    background: white;
    color: #93241F;
    border: none;
    padding: 12px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sub-section .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Related Activities Section */
.related-activities {
    background-color: #ffffff;
    padding: 5rem 0;
}

.activity-card {
    border: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.activity-card:hover .card-image img {
    transform: scale(1.1) rotate(1deg);
}

.card-body {
    padding: 2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.card-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.card-text {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.card-body .btn-outline-primary {
    align-self: flex-start;
    border-color: #93241F;
    color: #93241F;
    transition: all 0.3s ease;
}

.card-body .btn-outline-primary:hover {
    background: #93241F;
    border-color: #93241F;
    color: white;
    transform: translateX(5px);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

@media (max-width: 768px) {
    .activity-hero {
        height: 350px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-text {
        padding: 1.5rem 0;
    }

    .section-heading {
        font-size: 1.3rem;
    }

    .sub-section {
        padding: 2rem 1.5rem;
    }

    .sub-sctn-title {
        font-size: 1.8rem;
    }

    .sub-sctn-text {
        font-size: 1rem;
    }

    .intro-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .activity-hero {
        height: 280px;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .section-heading {
        font-size: 1.1rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .card-image {
        height: 200px;
    }
}

.faq{
    padding: 3em 0;
    background-color: #f5f5f5;
}
.faq .faq-content .btn-link{
    color: #93241F;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq .faq-content .btn-link:hover, .faq .faq-content .btn-link:focus {
    outline: none !important;
    border: none !important;
}
.faq .card-body strong{
    display: contents;
}
