/* Event Organizers Styles */
.organizers-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.organizer-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.organizer-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.organizer-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.organizer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.organizer-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.organizer-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.organizer-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #d4af37;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.organizer-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Theme variations */
.event-section.garden .organizer-title {
    color: #00ff88;
}

.event-section.beach .organizer-title {
    color: #00ccff;
}

.event-section.roof .organizer-title {
    color: #ff6b35;
}

/* Light theme adjustments */
[data-theme="light"] .organizer-item {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .organizer-item:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .organizer-image {
    background: rgba(0, 0, 0, 0.05);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .organizer-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .organizer-image {
        width: 60px;
        height: 60px;
    }
    
    .organizer-name {
        font-size: 1.1rem;
    }
    
    .organizer-title {
        font-size: 0.85rem;
    }
    
    .organizer-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .organizers-list {
        gap: 1rem;
    }
    
    .organizer-item {
        padding: 1rem;
    }
    
    .organizer-image {
        width: 50px;
        height: 50px;
    }
}