/* Workshop Page Custom Styles */

/* Robot Logo Container */
.robot-logo-container {
    position: relative;
    display: inline-block;
}

.robot-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.3) 0%, rgba(255, 102, 0, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    transform: scale(1.2);
    animation: pulse-glow 3s infinite alternate;
    z-index: -1;
}

@keyframes pulse-glow {
    0% {
        opacity: 0.5;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.3);
    }
}

/* Schedule Section */
.schedule-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(40, 20, 0, 0.8) 100%);
    border: 1px solid rgba(255, 102, 0, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.schedule-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.05), transparent);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.day-header {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 50%, #ff9933 100%);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.day-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.day-header:hover::before {
    left: 100%;
}

.day-header:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.5);
}

/* Clean Timeline Styles */
.clean-timeline {
    position: relative;
    padding: 10px 0;
}

.clean-timeline-item {
    display: flex;
    position: relative;
}

.time-col {
    flex: 0 0 80px;
    text-align: right;
    padding-right: 20px;
    color: #ff6600;
    font-weight: bold;
    font-size: 1.1rem;
    padding-top: 0;
    line-height: 1.2;
}

.line-col {
    flex: 0 0 20px;
    position: relative;
    display: flex;
    justify-content: center;
}

.line-col .line {
    position: absolute;
    top: 12px;
    bottom: -12px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255, 102, 0, 0.5), rgba(255, 102, 0, 0.2));
}

.clean-timeline-item:last-child .line-col .line {
    display: none;
}

.line-col .dot {
    width: 12px;
    height: 12px;
    background: #ff6600;
    border-radius: 50%;
    z-index: 2;
    margin-top: 2px;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.content-col {
    flex: 1;
    padding-left: 20px;
    padding-bottom: 40px;
}

.content-col h5 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1.1rem;
    line-height: 1.2;
    margin-top: -2px; /* Align with time/dot */
}

.content-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsive Design for Clean Timeline */
@media (max-width: 576px) {
    .time-col {
        flex: 0 0 60px;
        font-size: 1rem;
        padding-right: 10px;
    }
    
    .content-col {
        padding-left: 15px;
    }
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-left: 30px;
    }
    
    .timeline-time {
        position: relative;
        left: 0;
        margin-bottom: 5px;
        width: auto;
    }
    
    .timeline-item::before {
        left: -5px;
    }
    
    .timeline::before {
        left: 5px;
    }
}

@media (max-width: 576px) {
    .day-header {
        padding: 15px !important;
    }
    
    .timeline-content {
        padding: 10px;
    }
    
    .timeline-content h5 {
        font-size: 1rem;
    }
}

/* Animation Classes */
.animate__animated.animate__fadeInUp {
    animation-duration: 1s;
}

.animate__animated.animate__fadeInUp.animate__delay-1s {
    animation-delay: 0.5s;
}

/* Additional Visual Enhancements */
.text-gradient {
    background: linear-gradient(90deg, #ff6600, #ff8533, #ff9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-dark-2 {
    background: rgba(20, 20, 40, 0.8) !important;
}

/* Schedule Section Specific Styles */
.schedule-day {
    margin-bottom: 40px;
}

.schedule-day:last-child {
    margin-bottom: 0;
}

/* Timeline Item Hover Effects */
.timeline-item:hover .timeline-time {
    color: #fff;
    background: rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
}

/* Icon Animations */
.iconify-icon {
    transition: transform 0.3s ease;
}

.day-header:hover .iconify-icon {
    transform: scale(1.1);
}

/* Additional Card Styling */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Registration Section */
.registration-section {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.05) 100%);
    border: 2px solid rgba(255, 102, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.registration-content {
    position: relative;
    z-index: 1;
}

.btn-register {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-register:hover::before {
    left: 100%;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.6);
    background: linear-gradient(135deg, #ff8533 0%, #ff9933 100%);
}

.registration-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.registration-feature {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 200px;
}

.registration-feature i {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 15px;
}

.registration-feature h5 {
    color: #ff6600;
    font-weight: bold;
    margin-bottom: 10px;
}

.registration-feature p {
    color: rgba(255, 255, 255, 0.8);
}

/* Schedule Detail Styles */
.timeline-content small {
    display: block;
    margin-top: 5px;
    padding-left: 15px;
    position: relative;
    font-size: 0.85rem;
}

.timeline-content small::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6600;
    font-weight: bold;
}

.text-warning {
    color: #ffaa33 !important;
}

.text-info {
    color: #ffcc66 !important;
}

.text-success {
    color: #66ff66 !important;
}

/* Enhanced Timeline Content */
.timeline-content {
    min-height: 120px;
}

.timeline-content h5 {
    margin-bottom: 10px;
}

.timeline-content p {
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Icon Fallbacks */
.iconify-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

/* Fallback for missing icons */
.iconify-icon:not(:defined) {
    background-color: #ff6600;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.iconify-icon:not(:defined)::before {
    content: '?';
    font-size: 0.8em;
}