﻿/* activities.css - Complete Professional Styling for Activities Page */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: #ffffff;
}

.activities-wrapper {
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.activities-hero {
    position: relative;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 120px;
}

.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: moveBg 20s linear infinite;
}

@keyframes moveBg {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 100px);
    }
}

.hero-content-activities {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.hero-badge-activities {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

    .hero-badge-activities i {
        font-size: 14px;
    }

.hero-title-activities {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

    .hero-title-activities .highlight-orange {
        color: #ffd966;
        position: relative;
        display: inline-block;
    }

.hero-description-activities {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats-activities {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.stat-activities {
    text-align: center;
}

.stat-number-activities {
    font-size: 36px;
    font-weight: 800;
    color: #ffd966;
    display: block;
    margin-bottom: 8px;
}

.stat-label-activities {
    font-size: 14px;
    opacity: 0.9;
}

.hero-wave-activities {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Section Header */
.section-header-activities {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge-activities {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f97316;
    background: rgba(249, 115, 22, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header-activities h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.gradient-orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header-activities p {
    color: #64748b;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Age Group Tabs */
.age-group-section {
    padding: 80px 0;
    background: white;
}

.age-tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.age-tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #f8fafc;
    border: none;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .age-tab-btn i {
        font-size: 18px;
    }

    .age-tab-btn.active {
        background: linear-gradient(135deg, #f97316, #ea580c);
        color: white;
        border-color: transparent;
        box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    }

    .age-tab-btn:hover:not(.active) {
        background: #e2e8f0;
        transform: translateY(-2px);
    }

/* Age Activities Grid */
.age-activities-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

    .age-activities-grid.active {
        display: grid;
        animation: fadeInUp 0.5s ease;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.activity-card-age {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

    .activity-card-age:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        background: white;
        border-color: #f97316;
    }

.activity-icon-age {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(234, 88, 12, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .activity-icon-age i {
        font-size: 28px;
        color: #f97316;
    }

.activity-card-age h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.activity-card-age p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.activity-meta {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

    .activity-meta span {
        font-size: 12px;
        color: #f97316;
        display: flex;
        align-items: center;
        gap: 6px;
    }

/* Events Section */
.events-section {
    padding: 80px 0;
    background: #f8fafc;
}

.events-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.event-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .event-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #f97316, #ea580c);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .event-card:hover::before {
        transform: scaleX(1);
    }

    .event-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.event-month {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.event-icon {
    width: 70px;
    height: 70px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .event-icon i {
        font-size: 32px;
        color: #f97316;
    }

.event-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.event-card p {
    color: #64748b;
    font-size: 14px;
}

/* Clubs Section */
.clubs-section {
    padding: 80px 0;
    background: white;
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.club-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

    .club-card:hover {
        transform: translateY(-5px);
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.club-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .club-icon i {
        font-size: 32px;
        color: white;
    }

.club-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.club-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.club-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

    .club-details span {
        font-size: 12px;
        color: #f97316;
        display: flex;
        align-items: center;
        gap: 6px;
    }

/* Competitions Section */
.competitions-section {
    padding: 80px 0;
    background: #f8fafc;
}

.competitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.competition-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

    .competition-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.competition-icon {
    width: 70px;
    height: 70px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .competition-icon i {
        font-size: 32px;
        color: #f97316;
    }

.competition-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.competition-card p {
    color: #64748b;
    margin-bottom: 15px;
}

.competition-level {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5eb, #ffe6d5);
}

.benefits-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.benefits-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f97316;
    background: rgba(249, 115, 22, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.benefits-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.benefits-content p {
    color: #64748b;
    font-size: 18px;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .benefit-card i {
        font-size: 40px;
        color: #f97316;
        margin-bottom: 15px;
        display: block;
    }

    .benefit-card h3 {
        font-size: 20px;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 10px;
    }

    .benefit-card p {
        color: #64748b;
        font-size: 14px;
        line-height: 1.6;
    }

/* Upcoming Section */
.upcoming-section {
    padding: 80px 0;
    background: white;
}

.upcoming-wrapper {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    color: white;
}

.upcoming-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

    .upcoming-text h2 span {
        color: #ffd966;
    }

.upcoming-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.upcoming-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.upcoming-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.upcoming-date {
    text-align: center;
    min-width: 60px;
}

    .upcoming-date .date {
        font-size: 28px;
        font-weight: 800;
        display: block;
        line-height: 1;
    }

    .upcoming-date .month {
        font-size: 12px;
        text-transform: uppercase;
    }

.upcoming-info {
    text-align: left;
}

    .upcoming-info h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .upcoming-info p {
        font-size: 14px;
        opacity: 0.9;
        margin-bottom: 0;
    }

.register-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #f97316;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .register-btn:hover {
        transform: translateY(-2px);
        gap: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

/* CTA Section */
.activities-cta {
    padding: 80px 0;
    background: #1e293b;
}

.cta-activities-wrapper {
    text-align: center;
    color: white;
}

.cta-activities-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

    .cta-activities-content h2 span {
        color: #ffd966;
    }

.cta-activities-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-activities-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .cta-activities-btn:hover {
        transform: translateY(-3px);
        gap: 15px;
        box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title-activities {
        font-size: 44px;
    }

    .section-header-activities h2,
    .benefits-content h2,
    .cta-activities-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-title-activities {
        font-size: 32px;
    }

    .hero-stats-activities {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .age-tabs-container {
        flex-direction: column;
        align-items: center;
    }

    .age-tab-btn {
        width: 100%;
        justify-content: center;
    }

    .age-activities-grid {
        grid-template-columns: 1fr;
    }

    .events-timeline {
        grid-template-columns: 1fr;
    }

    .clubs-grid {
        grid-template-columns: 1fr;
    }

    .competitions-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .upcoming-item {
        flex-direction: column;
        text-align: center;
    }

    .upcoming-info {
        text-align: center;
    }

    .upcoming-wrapper {
        padding: 30px 20px;
    }

    .upcoming-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title-activities {
        font-size: 28px;
    }

    .section-header-activities h2,
    .benefits-content h2,
    .cta-activities-content h2 {
        font-size: 28px;
    }

    .activity-card-age {
        padding: 20px;
    }

    .club-card,
    .competition-card,
    .benefit-card {
        padding: 20px;
    }

    .register-btn,
    .cta-activities-btn {
        width: 100%;
        justify-content: center;
    }
}
