/*
==================================
  VALUEX INNOVATIONS - WORKSHOPS PAGE STYLES
==================================
*/

/* Redefine variables or import from a central file */
:root {
    --primary-navy: #0f172a;
    --primary-blue: #1e3a8a;
    --accent-cyan: #06b6d4;
    --accent-orange: #fb923c;
    --text-gradient: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-cyan) 100%);
}

body {
    background-color: #f8f9fa;
}

/* Hero Section */
.workshops-hero-section {
    background: var(--primary-navy);
    padding: 8rem 0;
    color: white;
    text-align: center;
}

.workshops-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
}

.text-gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.workshops-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.workshops-hero-meta {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

/* Main Content */
.workshops-main-content {
    padding: 5rem 0;
    margin-top: -4rem;
    background: white;
    position: relative;
    border-radius: 1.5rem 1.5rem 0 0;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    background: #e9ecef;
    border-radius: 25px;
    padding: 0.5rem;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.filter-tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #495057;
    font-weight: 500;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.filter-tab-btn.active {
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Workshop Card */
.workshop-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.workshop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.workshop-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.workshop-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.mode-badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}
.mode-badge.hybrid { background-color: #dbeafe; color: #1e40af; }
.mode-badge.online { background-color: #d1fae5; color: #065f46; }
.mode-badge.in-person { background-color: #fee2e2; color: #991b1b; }

.workshop-details h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.learn-list {
    list-style: none;
    padding: 0;
    font-size: 0.95rem;
    color: #495057;
}

.learn-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.learn-list i {
    color: var(--accent-cyan);
}

.btn-register {
    background: var(--accent-cyan);
    color: white;
    border-radius: 20px;
    padding: 0.6rem 1.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: var(--primary-blue);
    transform: scale(1.05);
}

/* Why Choose Us Section */
.why-choose-workshops-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.why-workshop-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    height: 100%;
}

.why-icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.why-workshop-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-workshop-card p {
    color: #6c757d;
}

/* CTA Section */
.workshops-cta-section {
    background: var(--primary-navy);
    padding: 5rem 0;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}

.btn-cta-white {
    background: white;
    color: var(--primary-blue);
    padding: 0.75rem 2rem;
    border-radius: 20px;
    font-weight: 600;
}
