/* Cultural Events Page - Modern & Colorful Design */
/* Theme Color: #26c976 */

.spk-events-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.spk-events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Page Title */
.spk-events-title {
    text-align: center;
    margin-bottom: 60px;
}

.spk-events-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.spk-events-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #26c976, #FF8C5A);
    border-radius: 2px;
}

/* Event Cards Grid */
.spk-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* Event Card */
.spk-event-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.5s ease;
    border-top: 6px solid #26c976;
}

.spk-event-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

/* Card Header with Gradient - No Image */
.spk-event-header {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #9C27B0, #AB47BC);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spk-event-card:nth-child(2) .spk-event-header {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
}

.spk-event-icon {
    font-size: 80px;
    color: white;
    transition: all 0.4s ease;
}

.spk-event-card:hover .spk-event-icon {
    transform: scale(1.15) rotate(360deg);
}

/* Decorative circles in header */
.spk-event-header::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.spk-event-header::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
}

/* Card Body */
.spk-event-body {
    padding: 35px;
}

.spk-event-body h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.spk-event-body p {
    font-size: 16px;
    color: #666666;
    line-height: 1.9;
    margin: 0;
}

/* Color Variations */
.spk-event-card:nth-child(1) .spk-event-overlay {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.8), rgba(171, 71, 188, 0.8));
}

.spk-event-card:nth-child(1) h3 {
    color: #9C27B0;
}

.spk-event-card:nth-child(2) .spk-event-overlay {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.8), rgba(66, 165, 245, 0.8));
}

.spk-event-card:nth-child(2) h3 {
    color: #2196F3;
}

/* Decorative Elements */
.spk-event-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(241, 97, 38, 0.1), transparent);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.spk-event-card:hover::before {
    top: -30%;
    right: -30%;
}

/* Background Decorative Elements */
.spk-events-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.05), rgba(171, 71, 188, 0.05));
    border-radius: 50%;
    top: 15%;
    left: -100px;
    z-index: 0;
}

.spk-events-section::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05), rgba(66, 165, 245, 0.05));
    border-radius: 50%;
    bottom: 20%;
    right: -80px;
    z-index: 0;
}

/* Floating Shapes */
.spk-shape-1 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(241, 97, 38, 0.1), rgba(255, 140, 90, 0.1));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    right: 10%;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.spk-shape-2 {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1), rgba(171, 71, 188, 0.1));
    border-radius: 50%;
    bottom: 15%;
    left: 8%;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .spk-events-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .spk-events-section {
        padding: 60px 0;
    }

    .spk-events-title {
        margin-bottom: 40px;
    }

    .spk-events-title h2 {
        font-size: 2.2rem;
    }

    .spk-events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .spk-event-header {
        height: 150px;
    }

    .spk-event-icon {
        font-size: 60px;
    }

    .spk-event-body {
        padding: 30px 25px;
    }

    .spk-event-body h3 {
        font-size: 1.6rem;
    }

    .spk-event-icon {
        font-size: 50px;
    }
}

/* Animation Classes */
.spk-fade-in {
    opacity: 0;
    transform: translateY(40px);
}

.spk-scale-in {
    opacity: 0;
    transform: scale(0.9);
}