/* Hero Section */
.hero-section {
    padding-top: 76px;
    background-color: #f8f9fa;
}

#judul {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.event-details {
    margin-top: 2rem;
}

.event-details p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.event-details i {
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
}

/* Timeline Schedule */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50px;
}

.timeline-item {
    padding: 20px 40px 20px 70px;
    position: relative;
    background-color: white;
    border-radius: 6px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.timeline-item .time {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    border-radius: 50%;
    left: 43.5px;
    top: 25px;
    z-index: 1;
}

.timeline-item .content {
    padding: 15px 0;
}

.timeline-item h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-item::before {
        left: 24.5px;
    }
}

.speaker-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-10px);
}

.speaker-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-info {
    padding: 20px;
    text-align: center;
}

.speaker-info h3 {
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.speaker-info .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.speaker-info .organization {
    color: #666;
    font-size: 0.9rem;
}