/* Agenda Styles */
.agenda-schedule {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.agenda-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 184, 0.2);
    border-radius: 15px;
    margin-bottom: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.agenda-item:hover {
    background: rgba(255, 0, 184, 0.1);
    border-color: var(--neon-pink);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 184, 0.2);
}

.agenda-time {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neon-pink);
    min-width: 140px;
    text-align: center;
    background: rgba(255, 0, 184, 0.1);
    border-radius: 10px;
    padding: 10px;
    margin-right: 25px;
    border: 2px solid rgba(255, 0, 184, 0.3);
}

.agenda-item-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.agenda-speaker {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    margin: 0;
}

.agenda-topic {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.agenda-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--neon-pink);
    min-width: 30px;
    text-align: center;
}

/* Special styles for different types of agenda items */
.agenda-item.networking {
    background: rgba(255, 102, 0, 0.1);
    border-color: rgba(255, 102, 0, 0.3);
}

.agenda-item.networking:hover {
    background: rgba(255, 102, 0, 0.15);
    border-color: #FF6600;
}

.agenda-item.networking .agenda-time {
    background: rgba(255, 102, 0, 0.1);
    border-color: rgba(255, 102, 0, 0.3);
    color: #FF6600;
}

.agenda-item.networking .agenda-icon {
    color: #FF6600;
}

/* SEO speakers - Blue like SEO ribbon */
.agenda-item.seo {
    background: rgba(0, 184, 255, 0.1);
    border-color: rgba(0, 184, 255, 0.3);
}

.agenda-item.seo:hover {
    background: rgba(0, 184, 255, 0.15);
    border-color: #00B8FF;
}

.agenda-item.seo .agenda-time {
    background: rgba(0, 184, 255, 0.1);
    border-color: rgba(0, 184, 255, 0.3);
    color: #00B8FF;
}

.agenda-item.seo .agenda-icon {
    color: #00B8FF;
}

/* AI speakers - Purple like AI ribbon */
.agenda-item.ai {
    background: rgba(153, 0, 255, 0.1);
    border-color: rgba(153, 0, 255, 0.3);
}

.agenda-item.ai:hover {
    background: rgba(153, 0, 255, 0.15);
    border-color: #9900FF;
}

.agenda-item.ai .agenda-time {
    background: rgba(153, 0, 255, 0.1);
    border-color: rgba(153, 0, 255, 0.3);
    color: #9900FF;
}

.agenda-item.ai .agenda-icon {
    color: #9900FF;
}

/* Biznes speakers - Gold like Biznes ribbon */
.agenda-item.biznes {
    background: rgba(255, 184, 0, 0.1);
    border-color: rgba(255, 184, 0, 0.3);
}

.agenda-item.biznes:hover {
    background: rgba(255, 184, 0, 0.15);
    border-color: #FFB800;
}

.agenda-item.biznes .agenda-time {
    background: rgba(255, 184, 0, 0.1);
    border-color: rgba(255, 184, 0, 0.3);
    color: #FFB800;
}

.agenda-item.biznes .agenda-icon {
    color: #FFB800;
}

/* SEO Biznes speakers - Green like SEO Biznes ribbon */
.agenda-item.seo-biznes {
    background: rgba(0, 200, 81, 0.1);
    border-color: rgba(0, 200, 81, 0.3);
}

.agenda-item.seo-biznes:hover {
    background: rgba(0, 200, 81, 0.15);
    border-color: #00C851;
}

.agenda-item.seo-biznes .agenda-time {
    background: rgba(0, 200, 81, 0.1);
    border-color: rgba(0, 200, 81, 0.3);
    color: #00C851;
}

.agenda-item.seo-biznes .agenda-icon {
    color: #00C851;
}

/* Breaks - Orange like networking/pizza */
.agenda-item.break {
    background: rgba(255, 102, 0, 0.1);
    border-color: rgba(255, 102, 0, 0.3);
}

.agenda-item.break:hover {
    background: rgba(255, 102, 0, 0.15);
    border-color: #FF6600;
}

.agenda-item.break .agenda-time {
    background: rgba(255, 102, 0, 0.1);
    border-color: rgba(255, 102, 0, 0.3);
    color: #FF6600;
}

.agenda-item.break .agenda-icon {
    color: #FF6600;
}

/* Responsive design */
@media (max-width: 768px) {
    .agenda-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .agenda-time {
        margin-right: 0;
        margin-bottom: 15px;
        min-width: auto;
        width: 100%;
        font-size: 1rem;
    }
    
    .agenda-item-content {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .agenda-icon {
        font-size: 2rem;
        margin-right: 0;
        margin-bottom: 10px;
        min-width: auto;
        text-align: center;
    }
    
    .agenda-speaker {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 5px;
    }
    
    .agenda-topic {
        font-size: 0.85rem;
        text-align: center;
    }
}
