/* Workshop Custom Styles */

/* Hero Section Enhancements */
.slider-content h1 {
    font-weight: 700;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem !important;
}

.slider-content h3 {
    font-weight: 400;
    font-size: 1.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem !important;
    line-height: 1.4;
}

.workshop-hero-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.program-day-card, 
.speaker-card, 
.info-card, 
.registration-form {
    transition: all 0.3s ease;
    border: none !important;
}

.program-day-card:hover, 
.speaker-card:hover, 
.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.program-schedule {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-schedule li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.4;
}

.program-schedule li.sub-item {
    padding-left: 20px;
    font-size: 13px;
    color: #666;
    border-bottom: none;
    padding-top: 4px;
    padding-bottom: 4px;
}

.program-schedule li.sub-item:before {
    content: "• ";
    font-weight: bold;
    color: #28a745;
    margin-right: 5px;
}

.program-schedule li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.program-schedule li:last-child {
    border-bottom: none;
}

.program-schedule li:before {
    content: "🕐";
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 16px;
}

.day-header {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
}

.speaker-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card i {
    display: block;
    margin: 0 auto 20px;
}

.registration-form {
    background: linear-gradient(135deg, #f8f9fa, #ffffff) !important;
}

.registration-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.registration-form .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(40, 167, 69, 0.3);
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 2px;
}

.workshop-content {
    font-size: 16px;
    line-height: 1.8;
}

.workshop-content .lead {
    font-size: 18px;
    font-weight: 400;
    color: #495057;
}

.workshop-info-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa) !important;
    border-left: 4px solid #28a745;
}

.workshop-info-card h4,
.workshop-info-card h5 {
    color: #495057;
}

.workshop-info-card i {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .program-day-card,
    .speaker-card,
    .info-card {
        margin-bottom: 20px;
    }
    
    .workshop-hero-badge .badge {
        font-size: 14px !important;
    }
    
    .slider-content h1 {
        font-size: 28px;
    }
    
    .slider-content h3 {
        font-size: 18px;
    }
}

/* Workshop specific animations */
.fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

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

.program-day-card {
    animation: fadeInUp 0.6s ease-out;
}

.program-day-card:nth-child(2) {
    animation-delay: 0.2s;
}

.program-day-card:nth-child(3) {
    animation-delay: 0.4s;
}

.speaker-card {
    animation: fadeInUp 0.6s ease-out;
}

.speaker-card:nth-child(even) {
    animation-delay: 0.2s;
}

/* Custom scrollbar for better UX */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e7e34;
}

/* Override slider-content animation to ensure all hero elements are visible */
.slider-content h1,
.slider-content h2,
.slider-content h3,
.slider-content p,
.slider-content .hero-extra,
.slider-content .hero-extra span,
.slider-content .hero-extra a,
.slider-content .btn,
.slider-content .btn-default,
.slider-content .slider-btn {
  opacity: 1 !important;
  transform: none !important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
}
