/* Inherit main landing styles but add specific overrides if needed */

:root {
    --accent-color: #00d2ff;
    --accent-secondary: #3a7bd5;
    --bg-color: #0b0f19;
    /* Slightly bluer dark background */
}

.hero-section {
    background: radial-gradient(circle at 50% -20%, rgba(58, 123, 213, 0.2), transparent 70%);
}

.hero-section h1 {
    background: linear-gradient(135deg, #fff 0%, #7aaeff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Workshop Card Specifics */
.workshop-card {
    background: rgba(20, 30, 50, 0.6);
    border: 1px solid rgba(100, 150, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 24px;
    padding: 2rem;
}

.workshop-card:hover {
    border-color: rgba(100, 150, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 100, 255, 0.15);
    transform: translateY(-5px);
}

.workshop-card .event-status {
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    align-self: flex-start;
    margin-bottom: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 210, 255, 0.3);
}

.workshop-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1.3;
}

.workshop-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.workshop-meta {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.workshop-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00d2ff;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-link {
    display: block;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.workshop-card:hover .card-link {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
}

/* Detail Page specific */
.detail-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 4rem;
}

.detail-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.5rem 0;
    font-size: 1rem;
    color: var(--accent-color);
    background: rgba(0, 210, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.detail-content {
    background: rgba(20, 30, 40, 0.6);
    padding: 3rem;
    border-radius: 24px;
    line-height: 1.8;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-content h2 {
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    position: relative;
    padding-left: 1rem;
}

.detail-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}