/* ===================================
   COLLEGE WORKSHOPS PAGE STYLES
   =================================== */

/* Workshop Stats Section */
.workshop-stats {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 78, 146, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--white);
    transition: transform 0.3s ease;
}

.stat-box:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-box p {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500;
}

/* Workshops Grid */
.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

/* Workshop Card */
.workshop-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 78, 146, 0.2);
    border-color: var(--secondary);
}

/* Workshop Header */
.workshop-header {
    padding: 25px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.college-badge {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 78, 146, 0.3);
}

.college-info {
    flex: 1;
}

.college-info h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1.3;
}

.location {
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}

.location i {
    color: var(--secondary);
}

.year-badge {
    background: var(--secondary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 186, 242, 0.3);
}

/* Workshop Content */
.workshop-content {
    padding: 25px;
}

.workshop-content h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.workshop-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Workshop Gallery Slider */
.workshop-gallery {
    position: relative;
    height: 280px;
    background: #f0f0f0;
    overflow: hidden;
}

.gallery-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.gallery-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    font-size: 60px;
}

.gallery-image-placeholder p {
    font-size: 1rem;
    margin-top: 15px;
    font-weight: 600;
    opacity: 0.9;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 15px;
}

.slider-nav.next {
    right: 15px;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--white);
    width: 30px;
    border-radius: 5px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Workshop Footer */
.workshop-footer {
    padding: 20px 25px;
    background: var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.photo-count,
.workshop-year {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
}

.photo-count i {
    color: var(--primary);
    font-size: 1.1rem;
}

.workshop-year i {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Workshop CTA Section */
.workshop-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.workshop-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--primary);
    justify-content: center;
    border: 2px solid;
}

.btn-lg:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 991px) {
    .workshops-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 30px;
    }

    .workshop-header {
        flex-wrap: wrap;
    }

    .year-badge {
        margin-left: auto;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .workshops-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-box {
        padding: 25px 15px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }

    .stat-box h3 {
        font-size: 2rem;
    }

    .workshop-gallery {
        height: 250px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .workshop-header {
        padding: 20px;
    }

    .college-badge {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .college-info h3 {
        font-size: 1.1rem;
    }

    .workshop-footer {
        flex-direction: column;
        gap: 15px;
    }
}