/* Activities Page Styles */

:root {
    --primary-green: #1B5E20;
    --secondary-green: #4CAF50;
    --light-green: #E8F5E9;
    --accent-orange: #FF9800;
    --accent-yellow: #FFC107;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.activities-hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 100px 20px 60px;
    overflow: hidden;
}

.activities-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='20' cy='20' r='2' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='80' cy='40' r='3' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='40' cy='80' r='2' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='90' cy='90' r='2' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(27, 94, 32, 0.8) 0%, rgba(76, 175, 80, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.badge-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-item i {
    margin-right: 8px;
    color: var(--accent-yellow);
}

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

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

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--secondary-green);
    font-size: 1.3rem;
    margin-right: 15px;
}

.image-showcase {
    position: relative;
}

.rounded-shadow {
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.rounded-shadow:hover {
    transform: scale(1.02);
}

.image-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.4);
}

.image-badge i {
    margin-right: 8px;
}

/* Highlights Section */
.highlights-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light-green) 0%, var(--white) 100%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.highlight-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
}

.highlight-card h4 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 15px;
}

.highlight-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Video Gallery Section */
.video-gallery-section {
    padding: 80px 0;
    background: var(--white);
}

.video-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding: 25px;
}

.video-info h5 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 10px;
}

.video-info h5 i {
    margin-right: 10px;
    color: var(--accent-orange);
}

.video-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.note-text {
    color: var(--text-light);
    font-style: italic;
    background: var(--light-green);
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-block;
}

.note-text i {
    color: var(--accent-orange);
    margin-right: 10px;
}

/* Fun Facts Section */
.fun-facts-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

.fun-facts-section .section-title {
    color: var(--white);
}

.fun-facts-image img {
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.fun-facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.fun-fact-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.fun-fact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.fun-fact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.fun-fact-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.fun-fact-content h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
}

.fun-fact-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* CTA Section */
.activities-cta {
    padding: 80px 0;
    background: var(--light-green);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-cta-activities {
    background: linear-gradient(135deg, var(--accent-orange), #FF5722);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.3);
}

.btn-cta-activities:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 152, 0, 0.4);
    color: var(--white);
}

.btn-cta-activities i {
    margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .highlight-card {
        padding: 30px 20px;
    }
    
    .highlight-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .fun-facts-grid {
        grid-template-columns: 1fr;
    }

    .image-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
    
    .intro-section .row {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .activities-hero {
        min-height: auto;
        padding: 100px 15px 60px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-badges {
        gap: 8px;
    }

    .badge-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .badge-item i {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .section-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .intro-section,
    .highlights-section,
    .video-gallery-section,
    .fun-facts-section,
    .activities-cta {
        padding: 40px 0;
    }
    
    .intro-section {
        text-align: center;
    }
    
    .features-list {
        text-align: left;
        display: inline-block;
    }
    
    .image-showcase {
        margin-top: 30px;
    }
    
    .image-showcase img {
        max-width: 100%;
        height: auto;
    }
    
    .highlight-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .highlight-card h4 {
        font-size: 1.2rem;
    }
    
    .highlight-card p {
        font-size: 0.9rem;
    }
    
    .video-wrapper {
        padding-top: 65%;
    }
    
    .video-info {
        padding: 15px;
    }
    
    .video-info h5 {
        font-size: 1.1rem;
    }
    
    .video-info p {
        font-size: 0.9rem;
    }
    
    .note-text {
        font-size: 0.9rem;
        padding: 12px 20px;
        border-radius: 30px;
    }
    
    .fun-facts-image {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .fun-facts-image img {
        max-width: 100%;
        height: auto;
    }
    
    .fun-facts-section .section-title {
        text-align: center;
    }
    
    .fun-facts-grid {
        gap: 15px;
    }
    
    .fun-fact-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .fun-fact-icon {
        margin: 0 auto;
    }
    
    .fun-fact-content h5 {
        font-size: 1.1rem;
    }
    
    .fun-fact-content p {
        font-size: 0.85rem;
        margin: 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn-cta-activities {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .activities-hero {
        padding: 90px 10px 50px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .badge-item {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .badge-item i {
        margin-right: 5px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-text {
        font-size: 0.95rem;
    }
    
    .feature-item {
        font-size: 0.95rem;
    }
    
    .highlight-card {
        padding: 20px 15px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .highlight-card h4 {
        font-size: 1.1rem;
    }
    
    .fun-fact-item {
        padding: 12px;
    }
    
    .fun-fact-icon {
        width: 40px;
        height: 40px;
    }
    
    .fun-fact-icon i {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.3rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
}

/* Scroll animations */
.highlight-card,
.video-card,
.fun-fact-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.highlight-card.visible,
.video-card.visible,
.fun-fact-item.visible {
    opacity: 1;
    transform: translateY(0);
}
