#iaaug-workshops {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

#iaaug-workshops-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#iaaug-workshops-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

#iaaug-workshops-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
}

#iaaug-workshops-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

#iaaug-workshops-subtitle {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 500;
    margin-top: 2rem;
}

.iaaug-workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.iaaug-workshop-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.iaaug-workshop-image-wrap {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.iaaug-workshop-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.iaaug-workshop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.iaaug-overlay-content {
    color: white;
    text-align: center;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.iaaug-overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.iaaug-overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.iaaug-overlay-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.iaaug-workshop-date {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
}

.iaaug-workshop-info {
    padding: 2rem;
    background: white;
}

.iaaug-workshop-info h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.iaaug-workshop-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.iaaug-workshop-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.iaaug-workshop-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(149, 29, 93, 0.3);
}

/* Hover Effects */
.iaaug-workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.iaaug-workshop-card:hover .iaaug-workshop-image {
    transform: scale(1.1);
}

.iaaug-workshop-card:hover .iaaug-workshop-overlay {
    opacity: 1;
}

.iaaug-workshop-card:hover .iaaug-overlay-content {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    #iaaug-workshops {
        padding: 6rem 0;
    }
    
    #iaaug-workshops-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .iaaug-workshops-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    #iaaug-workshops {
        padding: 4rem 0;
    }
    
    #iaaug-workshops-title {
        font-size: 2rem;
    }
    
    #iaaug-workshops-subtitle {
        font-size: 1.2rem;
    }
    
    .iaaug-workshop-image-wrap {
        height: 200px;
    }
}

@media (max-width: 576px) {
    #iaaug-workshops-container {
        padding: 0 1.5rem;
    }
    
    .iaaug-workshops-grid {
        grid-template-columns: 1fr;
    }
    
    .iaaug-overlay-content h4 {
        font-size: 1.3rem;
    }
} 