/* Activities Page Styles */

.activities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.activities-hero {
    position: relative;
    height: 200px;
    background: url('/images/about/volunteer-helping-elderly.webp') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activities-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 40, 58, 0.85), rgba(89, 169, 234, 0.7));
}

.activities-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.activities-hero-content h1 {
    font-family: 'Yeseva One', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.activities-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Intro Section */
.activities-intro {
    padding: 80px 0;
    background: rgb(237, 241, 245);
    position: relative;
    overflow: hidden;
}

.activities-intro .arc {
    position: absolute;
    top: -450px;
    left: -350px;
    width: 750px;
    height: 750px;
    border: 80px solid rgba(200, 215, 230, 0.4);
    border-radius: 50%;
    pointer-events: none;
}

.activities-intro .circle-1 {
    position: absolute;
    top: -100px;
    right: -150px;
    width: 500px;
    height: 500px;
    border: 80px solid rgba(200, 215, 230, 0.4);
    border-radius: 50%;
    pointer-events: none;
}

.intro-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.intro-video img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    margin-left: 5px;
}

.intro-text .subtitle {
    font-family: 'Yeseva One', serif;
    font-style: italic;
    color: #59A9EA;
    font-size: 1rem;
    margin-bottom: 10px;
}

.intro-text h2 {
    font-family: 'Yeseva One', serif;
    font-size: 2.2rem;
    color: #25283a;
    margin-bottom: 20px;
}

.intro-text p {
    color: #555;
    line-height: 1.8;
}

/* Image Gallery */
.activities-gallery {
    background: #25283a;
    padding: 50px 0;
}

.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-item {
    width: 140px;
    height: 180px;
    border-radius: 80px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Activity Blocks */
.activities-blocks {
    padding: 80px 0;
    background: rgb(237, 241, 245);
    position: relative;
    overflow: hidden;
}

.activities-blocks .arc {
    position: absolute;
    bottom: -400px;
    right: -300px;
    width: 700px;
    height: 700px;
    border: 80px solid rgba(200, 215, 230, 0.4);
    border-radius: 50%;
    pointer-events: none;
}

.activities-blocks .circle-1 {
    position: absolute;
    top: 50%;
    left: -200px;
    width: 400px;
    height: 400px;
    border: 60px solid rgba(200, 215, 230, 0.4);
    border-radius: 50%;
    pointer-events: none;
}

.activity-block {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.activity-block:last-child {
    margin-bottom: 0;
}

.activity-block.reverse {
    direction: rtl;
}

.activity-block.reverse > * {
    direction: ltr;
}

.activity-text .subtitle {
    font-family: 'Yeseva One', serif;
    font-style: italic;
    color: #59A9EA;
    font-size: 1rem;
    margin-bottom: 10px;
}

.activity-text h3 {
    font-family: 'Yeseva One', serif;
    font-size: 1.8rem;
    color: #25283a;
    margin-bottom: 20px;
}

.activity-text p {
    color: #555;
    line-height: 1.8;
}

.activity-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.activity-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Section */
.activities-cta {
    padding: 60px 0;
    background: #25283a;
    text-align: center;
}

.activities-cta h2 {
    font-family: 'Yeseva One', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.activities-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-donate {
    display: inline-block;
    background: #59A9EA;
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-donate:hover {
    background: #fff;
    color: #25283a;
}

/* Responsive */
@media (max-width: 992px) {
    .intro-content,
    .activity-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .activity-block.reverse {
        direction: ltr;
    }

    .intro-video {
        max-width: 500px;
        margin: 0 auto;
    }

    .gallery-item {
        width: 120px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .activities-hero-content h1 {
        font-size: 2rem;
    }

    .activities-intro,
    .activities-blocks {
        padding: 50px 0;
    }

    .intro-text h2 {
        font-size: 1.75rem;
    }

    .activity-text h3 {
        font-size: 1.5rem;
    }

    .gallery-grid {
        gap: 12px;
    }

    .gallery-item {
        width: 100px;
        height: 130px;
    }
}

@media (max-width: 480px) {
    .activities-hero {
        height: 150px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .gallery-item {
        width: 80px;
        height: 100px;
        border-radius: 40px;
    }

    .activities-cta h2 {
        font-size: 1.5rem;
    }
}
