/* ===================================
   Workshop Specific Styles
   =================================== */

:root {
    --terminal-bg: #1e1e1e;
    --terminal-header: #333333;
    --terminal-accent: #facc15; /* Matching site gold */
    --workshop-primary: #facc15;
    --workshop-bg: #0a0e1a;
}

/* Terminal Hero Animation */
.terminal-window {
    background: var(--terminal-bg);
    border-radius: 12px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 0 18px 36px -18px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    font-family: 'Fira Code', 'Courier New', monospace;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-header {
    background: var(--terminal-header);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.terminal-title {
    color: #888;
    font-size: 0.8rem;
    margin-left: 10px;
}

.terminal-body {
    padding: 20px;
    color: #d4d4d4;
    font-size: 0.95rem;
    line-height: 1.5;
}

.command { color: #facc15; }
.parameter { color: #9cdcfe; }
.string { color: #ce9178; }
.comment { color: #6a9955; }

.cursor {
    display: inline-block;
    width: 8px;
    height: 1.2em;
    background: var(--terminal-accent);
    vertical-align: middle;
    margin-left: 4px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Vertical Timeline */
.workshop-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding-left: 30px;
}

.workshop-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, var(--workshop-primary), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--workshop-primary);
    box-shadow: 0 0 10px var(--workshop-primary);
}

.timeline-time {
    font-size: 0.8rem;
    color: var(--workshop-primary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.timeline-content p {
    color: var(--gray-400);
    font-size: 1rem;
}

/* Sticky Bottom Bar */
.sticky-register-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.9);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
}

.sticky-register-bar.visible {
    transform: translateY(0);
}

.bar-content {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.bar-timer {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.timer-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
}

.timer-dots {
    color: var(--workshop-primary);
    font-weight: 800;
}

/* Audience Cards */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.audience-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-10px);
    border-color: var(--workshop-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Pricing Section */
.workshop-pricing {
    background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 100%);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 60px auto;
}

.price-tag {
    font-size: 4rem;
    font-weight: 800;
    color: var(--workshop-primary);
    margin: 20px 0;
}

.strike-price {
    font-size: 1.5rem;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-right: 15px;
}

/* Registration Overrides */
.workshop-form-container {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .register-wrapper {
        grid-template-columns: 1fr;
    }
    
    .bar-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}
